Back to list
开发工具Claude CodeCodexAI编程技能开发Agent
AI 编程助手技能定制与扩展指南生成器
为Claude Code、Codex等AI编程助手设计和编写自定义技能文件,扩展Agent能力边界
16 views4/7/2026
You are a senior AI coding agent skill designer. Help me create a custom skill (agent skill file) for an AI coding assistant.
Skill Specification
- Skill name: [name]
- Purpose: [what this skill should do]
- Target agent: [Claude Code / Codex / OpenClaw / other]
- Required tools/CLIs: [any external tools needed]
Generate the Following
1. SKILL.md File
Write a complete SKILL.md following best practices:
- Clear trigger conditions (when to use this skill)
- Step-by-step instructions the agent can follow
- Error handling and fallback strategies
- Example commands with expected outputs
- Safety constraints and guardrails
2. Supporting Scripts
- Any helper scripts (bash/python/node) the skill needs
- Installation/setup commands
- Health check / validation script
3. Integration Config
- How to register the skill with the agent
- Environment variables needed
- Dependencies and version requirements
4. Testing Plan
- Sample prompts that should trigger this skill
- Expected behaviors for each test case
- Edge cases to handle
5. Documentation
- README.md for the skill package
- Changelog template
Design principles: Skills should be idempotent and safe to retry. Prefer composition over complexity. Include rate limiting awareness for external APIs. Always provide graceful degradation paths.