skill-push
仓库创建 2026年2月23日最近提交 14 小时前SkillHot 收录 5 小时前
▸ 精选理由
能把常用操作自动保存为技能,提升团队复用与自动化水平。
▸ 风险提示
会将草稿/指令上传到 SkillNote 服务,可能包含敏感或可执行内容。
这个 Skill 做什么
在 Codex 中将重复指令打包为可复用 SkillNote 技能并推送到注册表。
当在 Codex 里频繁重复同一类操作或你说“保存为技能”时,把该流程抽成可复用的 SkillNote 技能并推到注册表。它会引导你草拟技能内容、走审查流程、选择调用集合并发布,让其他 agent 能重用这些模式。适合把常见工作流标准化,减少重复劳动并便于共享。
▸ 展开 SKILL.md 英文原文
Create and push reusable skills to SkillNote from Codex when repeated instructions are detected or the user says "create a skill", "save this pattern", "push a skill". Guides drafting, review, collection selection, and publishing.
56
Stars
10
Forks
10
仓库内 Skill
+1
7 日增星
安装 / 使用
给你的 Agent 一句话(通用)
帮我安装这个 skill:https://raw.githubusercontent.com/luna-prompts/skillnote/master/plugin-codex/skills/skill-push/SKILL.md或 curl 直取 SKILL.md
curl -fsSL "https://raw.githubusercontent.com/luna-prompts/skillnote/master/plugin-codex/skills/skill-push/SKILL.md"SKILL.MD 节选查看完整文件 ↗
# Skill Push
Create and push reusable skills to the SkillNote registry so every connected agent learns from repeated patterns.
## Resolve the host
```bash
HOST=$(cat ~/.skillnote/host 2>/dev/null | tr -d '[:space:]'); HOST=${HOST:-localhost}
API="http://${HOST}:8082"
```
(In Python: `host = (open(os.path.expanduser('~/.skillnote/host')).read().strip() if os.path.exists(os.path.expanduser('~/.skillnote/host')) else 'localhost')`.)
## When to Act
- The user gave the same instruction or convention 2+ times this session.
- The user explicitly asks to create, save, or push a skill.
- Session retrospective — review for saveable patterns before wrapping up.
Only suggest for PERSISTENT conventvia SKILL·HOT · 数据来自 GitHub 公开信息 · 原文版权归作者所有