Install
$ agentstack add skill-ht426-skillseed-skillseed ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
skillseed
帮你从零创建符合规范的 Agent Skills (Claude Code / Codex / Cursor 通用): 脚手架 + 写作教练 + 合规自检 (含客观校验) + 跨工具安装。
何时使用本 skill
当用户想: 创建新 skill、脚手架 SKILL.md、打磨触发描述、选模板、做格式自检、或把 skill 安装到 Claude Code / Codex / Cursor 等工具的 skills 目录时。
交互风格
最少对话 + 生成初稿 + 迭代: 先问 2-3 个关键问题定方向, 然后直接生成完整骨架和内容初稿, 再按反馈迭代。
如果调用时带了参数 (/skillseed ""), 跳过提问, 直接进入步骤 3。
经验库 (进化机制)
本 skill 维护两个经验文件:
references/lessons.md—— 当前精简经验。调用本 skill 时先读它参考过往经验。references/lessons-archive.md—— 原始全量档案 (归纳时归档, 只追加不删)。
步骤 8 往 lessons.md 追加新经验; 超阈值时自动归纳 (合并重复 + 提炼模式, 原始归档到 archive)。
工作流
1. 澄清意图
问 2-3 个问题 (若参数已给出答案则跳过):
- 这个 skill 做什么? (一句话)
- 谁在什么场景下会触发它? (用户会说的关键词)
- (可选) 它接收什么输入、产出什么?
2. 选类型
在 workflow / reference / tool / hybrid 中选一个。现在加载 references/templates.md 选对应骨架。 判据: workflow=分步流程; reference=知识库查阅; tool=包装一个脚本/工具。
3. 打磨 description (最重要的一步, 多花一轮)
现在加载 references/description-guide.md。按公式写: 第三人称 + WHAT it does + WHEN to use it + 关键词前置 (中文)。
然后做触发校验 (本 skill 区别于原生生成的核心价值):
- 写 3 个 should-trigger 输入 (应当触发本 skill 的用户请求)
- 写 3 个 should-not-trigger 输入 (相近但不应触发的请求)
- 逐个推理: "给定此 description, agent 会不会触发?" 据此修正 description
4. 生成骨架
在 skills// 下创建目录 + SKILL.md + 所需 references/。 如对任何 frontmatter 字段或格式规则不确定, 加载 references/skill-anatomy.md。 用步骤 3 定稿的 description 填入 frontmatter。
5. 填充初稿
写 SKILL.md 正文 (中文) 和 references。遵守:
- SKILL.md
机械项 (name 正则/长度、description 字符数、SKILL.md 行数、frontmatter、references 一层深度、>100 行 TOC、反斜杠、引用文件存在) 由脚本客观判定, 不靠估算。不合格的当场修, 直到脚本 PASS (exit 0)。
### 7. (可选) 安装
用安装脚本把 skill 部署到目标工具:
bash scripts/install-skill.sh --tool --project # --project=项目级, --user=全局
**首次安装新 skill 到某工具需重启该工具才能被发现**; 之后对已存在 SKILL.md 的编辑会被实时检测。
### 8. 记录经验 + 自动归纳 (进化)
创建完 skill 后, 反思本次过程。若学到**通用**经验 (非本次特例):
1. **追加**一条到 `references/lessons.md` 末尾 (格式: `## ` + 场景 + 经验 + 可选"建议改规范")
2. **归纳** —— 当 lessons.md 超过 **20 条**时:
- 把 lessons.md 现有全部条目**追加**到 `references/lessons-archive.md` (保全原始)
- 归纳: 合并重复/相似条目, 提炼 2-3 条共通模式
- **重写** lessons.md: 头部说明 (不变) + 归纳后的精简条目 (≤10 条) + 顶部标注"最近归纳: N 条 → M 条"
护栏:
- archive 只追加不删; lessons.md 仅在归纳时整体重写
- 经验要具体可操作; 与已有条目重复则不追加
- **不改其他 reference** (checklist / templates / etc 不动); 建议改规范只记"建议", 不自动执行
## References 索引
按需加载, 不要一开始就全读:
| 文件 | 内容 | 何时加载 |
|------|------|----------|
| `references/lessons.md` | 经验库 (当前精简版, 越用越丰富) | 调用开头读; 步骤 8 追加/归纳 |
| `references/lessons-archive.md` | 经验原始全量档案 (归纳时归档) | 步骤 8 归纳时写 (不常读) |
| `references/templates.md` | 3 种 skill 骨架 (workflow / reference / tool) | 步骤 2 |
| `references/description-guide.md` | 触发描述写作指南 + 好坏示例 | 步骤 3 |
| `references/skill-anatomy.md` | 完整格式规范: frontmatter 字段、name 规则、discovery (多工具路径)、progressive disclosure | 步骤 4-5 按需 (字段/规则不确定时) |
| `references/checklist.md` | 发布前自检清单 (语义项) | 步骤 6 |
## 重要约束
- description 用**中文**, 第三人称; 正文用**中文**
- references **不得互相指示加载** (一层深度)
- 路径用**正斜杠**
- SKILL.md ** 注: `context: fork` 有意不设 —— 需在主对话中与用户迭代, 不能 fork 到子代理。
## Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- **Author:** [ht426](https://github.com/ht426)
- **Source:** [ht426/skillseed](https://github.com/ht426/skillseed)
- **License:** MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.