技能
- 作者仓库星标 216
- 作者仓库 kagenti
flowchart TD
START(["/skills"]) --> NEED{"What do you need?"}
NEED -->|New skill| WORKTREE["git:worktree"]:::git
NEED -->|Edit skill| WORKTREE
NEED -->|Audit all| SCAN["skills:scan"]:::skills
NEED -->|Session review| RETRO["skills:retrospective"]:::skills
WORKTREE --> WRITE["skills:write"]:::skills
WRITE --> VALIDATE["skills:validate"]:::skills
VALIDATE -->|Issues| WRITE
VALIDATE -->|Pass| PR["Create PR"]:::git
SCAN -->|Gaps found| WORKTREE
RETRO -->|Improvements| WORKTREE
classDef skills fill:#607D8B,stroke:#333,color:white
classDef git fill:#FF9800,stroke:#333,color:white
Follow this diagram as the workflow.
Skills Management
Skills for managing the skill system itself. All skill development starts in a worktree — never edit skills directly on main.
Worktree-First Gate
Before creating or editing any skill, create a worktree:
git fetch upstream main
git worktree add .worktrees/skills-<topic> -b docs/skills-<topic> upstream/main
Then work in the worktree, validate, and create a PR.
Available Skills
| Skill | Purpose |
|---|---|
skills:write |
Create new skills or edit existing ones following the standard template |
skills:validate |
Validate skill format, naming, and structure |
skills:scan |
Audit repository skills — gaps, quality, connections, diagrams |
skills:retrospective |
End-of-session review to identify skill gaps and improvements |
Related Skills
git:worktree- Create worktrees for skill developmenttdd:ci- TDD workflow that uses skill patternsrca:ci- RCA workflow that uses skill patternsmeta:write-docs- Documentation writing guidelines
Developer Guide
See docs/developer/claude-code-skills.md for the full guide on why skills exist, how the system works, and best practices.
- 流狐分类
- 工程开发
- 作者声明 Agent
- 未找到明确声明;不据此推断已兼容或已测试
- 静态检查
- 88 / 100 · 启发式扫描,不代表运行安全
- 作者 / 版本 / 许可
- @kagenti · 未声明 license
- 流狐 Token 估算
- 低消耗
- 流狐接入估算
- 即装即用
- 是否需要外部 API Key
- 未发现要求
- 检测到的系统要求
- 未声明
- 底层运行要求
- 未声明
- 检测到的文件与系统行为
-
- 只读
- 允许写入 / 修改
- 检测到的网络行为
- 允许外网请求
- 安装命令数
- 无(仅作为资料)
档案由构建时根据 SKILL.md 与安装命令自动衍生,可能与作者实际意图存在差异。
需要注意: 未限定 allowed-tools,默认拥有全部工具权限。
作者没有在当前 SKILL.md 中定义固定输出样例。 Before creating or editing any skill, create a worktree: Then work in the worktree, validate, and create a PR.
Skill · Purpose skills:write · Create new skills or edit existing ones following the standard template skills:validate · Validate skill format, naming, and structure
git:worktree - Create worktrees for skill development tdd:ci - TDD workflow that uses skill patterns rca:ci - RCA workflow that uses skill patterns
See docs/developer/claude-code-skills.md for the full guide on why skills exist, how the system works, and best practices.
```mermaid
flowchart TD
START(["/skills"]) --> NEED{"What do you need?"}
NEED -->|New skill| WORKTREE["git:worktree"]:::git
NEED -->|Edit skill| WORKTREE
NEED -->|Audit all| SCAN["skills:scan"]:::skills
NEED -->|Session review| RETRO["skills:retrospective"]:::skills
WORKTREE --> WRITE["skills:write"]:::skills
WRITE --> VALIDATE["skills:validate"]:::skills
VALIDATE -->|Issues| WRITE
VALIDATE -->|Pass| PR["Create PR"]:::git
SCAN -->|Gaps found| WORKTREE
RETRO -->|Improvements| WORKTREE
classDef skills fill:#607D8B,stroke:#333,color:white
classDef git fill:#FF9800,stroke:#333,color:white
```
> Follow this diagram as the workflow.
# Skills Management
Skills for managing the skill system itself. **All skill development starts in a worktree** — never edit skills directly on main.
## Worktree-First Gate
Before creating or editing any skill, create a worktree:
```bash
git fetch upstream main
```
```bash
git worktree add .worktrees/skills-<topic> -b docs/skills-<topic> upstream/main
```
Then work in the worktree, validate, and create a PR.
## Available Skills
| Skill | Purpose |
|-------|---------|
| `skills:write` | Create new skills or edit existing ones following the standard template |
| `skills:validate` | Validate skill format, naming, and structure |
| `skills:scan` | Audit repository skills — gaps, quality, connections, diagrams |
| `skills:retrospective` | End-of-session review to identify skill gaps and improvements |
## Related Skills
- `git:worktree` - Create worktrees for skill development
- `tdd:ci` - TDD workflow that uses skill patterns
- `rca:ci` - RCA workflow that uses skill patterns
- `meta:write-docs` - Documentation writing guidelines
## Developer Guide
… 作者原文负责流程事实;流狐只索引当前章节、要点、文件与命令。
章节 -> Worktree-First Gate → Available Skills → Related Skills → Developer Guide
要点 -> All skill development starts in a worktree · > Follow this diagram as the workflow. · Skills for managing the skill system itself. · Then work in the worktree, validate, and create a PR.
文件/命令 -> skills:write · skills:validate · skills:scan · skills:retrospective · git:worktree · tdd:ci · rca:ci · meta:write-docs
内容 SHA-256 -> 51ef90e14431
原文结构
适用与边界
原文中的明确线索
skills:write、skills:validate、skills:scan、skills:retrospective、git:worktree、tdd:ci、rca:ci、meta:write-docs