技能 Usage
- 作者仓库星标 551
- 作者仓库 a-evolve
Skill Usage Guide
Skills are modular instruction packages placed in the container to help you solve tasks. Using them effectively is the single most important factor for success.
Skill locations
Skills are copied to multiple well-known paths inside the container:
/root/.agents/skills//root/.claude/skills//root/.codex/skills/
All paths contain the same skills. Use whichever is available.
Skill structure
Each skill is a folder:
skill-name/
├── SKILL.md # Main instructions (YAML frontmatter + markdown body)
├── scripts/ # Optional helper scripts (Python, Bash)
└── references/ # Optional reference documentation
How to use skills
- Always list skills first — call
list_skillsat the start of every task - Load relevant skills — if a skill name matches the task domain, call
load_skillwith the skill name - Follow skill instructions — skills contain domain-specific procedures, parameter values, or code patterns that are essential
- Run helper scripts — if the skill has
scripts/, execute them (they often automate tedious steps) - Consult references — check
references/for API docs or formula sheets
Common skill patterns
- Data format skills (e.g., xlsx, csv): Teach how to read/write specific formats
- Domain skills (e.g., pid-control, seismic): Contain domain formulas and constants
- Tool skills (e.g., libreoffice, ffmpeg): Show correct CLI flags and workflows
- Framework skills (e.g., react, spring-boot): Guide migration or debugging patterns
Anti-patterns
- Do NOT ignore skills — they exist specifically for the task at hand
- Do NOT reinvent what a skill script already automates
- Do NOT skip reading the full SKILL.md — summaries miss critical details
- 流狐分类
- 通用
- 作者声明 Agent
- 未找到明确声明;不据此推断已兼容或已测试
- 静态检查
- 88 / 100 · 启发式扫描,不代表运行安全
- 作者 / 版本 / 许可
- @A-EVO-Lab · 未声明 license
- 流狐 Token 估算
- 低消耗
- 流狐接入估算
- 需简单配置
- 是否需要外部 API Key
- 未发现要求
- 检测到的系统要求
- 未声明
- 底层运行要求
- Python
- 检测到的文件与系统行为
-
- 只读
- 允许写入 / 修改
- Shell 执行
- 检测到的网络行为
- 仅限本地
- 安装命令数
- 无(仅作为资料)
档案由构建时根据 SKILL.md 与安装命令自动衍生,可能与作者实际意图存在差异。
需要注意: 未限定 allowed-tools,默认拥有全部工具权限。
作者没有在当前 SKILL.md 中定义固定输出样例。 Skills are copied to multiple well-known paths inside the container: /root/.agents/skills/ /root/.claude/skills/
Each skill is a folder:
Always list skills first — call listskills at the start of every task Load relevant skills — if a skill name matches the task domain, call loadskill with the skill name Follow skill instructions — skills contain domain-specific procedures, parameter values, or…
Data format skills (e.g., xlsx, csv): Teach how to read/write specific formats Domain skills (e.g., pid-control, seismic): Contain domain formulas and constants Tool skills (e.g., libreoffice, ffmpeg): Show correct CLI flags and workflows
Do NOT ignore skills — they exist specifically for the task at hand Do NOT reinvent what a skill script already automates Do NOT skip reading the full SKILL.md — summaries miss critical details
# Skill Usage Guide
Skills are modular instruction packages placed in the container to help you solve tasks. Using them effectively is the single most important factor for success.
## Skill locations
Skills are copied to multiple well-known paths inside the container:
- `/root/.agents/skills/`
- `/root/.claude/skills/`
- `/root/.codex/skills/`
All paths contain the same skills. Use whichever is available.
## Skill structure
Each skill is a folder:
```
skill-name/
├── SKILL.md # Main instructions (YAML frontmatter + markdown body)
├── scripts/ # Optional helper scripts (Python, Bash)
└── references/ # Optional reference documentation
```
## How to use skills
1. **Always list skills first** — call `list_skills` at the start of every task
2. **Load relevant skills** — if a skill name matches the task domain, call `load_skill` with the skill name
3. **Follow skill instructions** — skills contain domain-specific procedures, parameter values, or code patterns that are essential
4. **Run helper scripts** — if the skill has `scripts/`, execute them (they often automate tedious steps)
5. **Consult references** — check `references/` for API docs or formula sheets
## Common skill patterns
- **Data format skills** (e.g., xlsx, csv): Teach how to read/write specific formats
- **Domain skills** (e.g., pid-control, seismic): Contain domain formulas and constants
- **Tool skills** (e.g., libreoffice, ffmpeg): Show correct CLI flags and workflows
- **Framework skills** (e.g., react, spring-boot): Guide migration or debugging patterns
## Anti-patterns
- Do NOT ignore skills — they exist specifically for the task at hand
- Do NOT reinvent what a skill script already automates
- Do NOT skip reading the full SKILL.md — summaries miss critical details 作者原文负责流程事实;流狐只索引当前章节、要点、文件与命令。
章节 -> Skill locations → Skill structure → How to use skills → Common skill patterns → Anti-patterns
要点 -> Always list skills first · Load relevant skills · Follow skill instructions · Run helper scripts · Consult references · Data format skills · Domain skills · Tool skills
文件/命令 -> /root/.agents/skills/ · /root/.claude/skills/ · /root/.codex/skills/ · listskills · loadskill · scripts/ · references/
内容 SHA-256 -> df67a3446ce3
原文结构
适用与边界
原文中的明确线索
/root/.agents/skills/、/root/.claude/skills/、/root/.codex/skills/、listskills、loadskill、scripts/、references/