SkillSpace/meta-skills/create-qoder-skill/prompt.md
sinohqb 4fe53197c4 Initial commit: SkillSpace project structure
- 5 agent frameworks: Qoder, Claude Code, Codex, OpenClaw, Hermes Agent
- 9 lifecycle skills: lifecycle router, discover, create, test, audit, debug, update, publish, retire
- 5 framework-specific meta-skills with specs and guides
- OpenClaw meta-skill enriched with ClawHub official ecosystem data
- Per-framework directories with skills/, versions/, publish/, docs/
2026-07-01 19:23:58 +08:00

22 lines
896 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# 如何创建 Qoder 技能
本技能指导你为 Qoder CLI 框架创建符合规范的技能Skill
## 创建流程
1. **了解 Qoder 技能规范**:阅读 `spec.md`,了解技能文件的格式和字段要求
2. **参考官方示例**:查看 `examples/` 目录中的参考实现
3. **创建技能目录**:在 `qoder/skills/<skill-name>/` 下新建目录
4. **编写技能文件**
- `skill.json`:技能元信息
- `prompt.md`:技能的核心 Prompt 定义
- 按需添加工具定义(`tools/`)和测试用例(`tests/`
5. **验证技能**:在 Qoder CLI 中加载并测试技能行为
6. **发布技能**:更新版本号,归档到 `versions/`
## 注意事项
- Qoder 技能的核心是 `prompt.md`,它定义了技能的触发条件和执行行为
- 技能可以通过 MCP 服务器扩展工具能力
- 参考 `examples/` 中的示例快速上手