com um clique
writing-skills
创建新技能的技能。遵循最佳实践编写 SKILL.md 文件。用于创建或改进 Agent 技能时。
Instalar com Codex ou Claude Copie este prompt, cole no Codex, Claude ou outro assistente e deixe que ele revise a página da skill e instale para você.
Menu
创建新技能的技能。遵循最佳实践编写 SKILL.md 文件。用于创建或改进 Agent 技能时。
Instalar com Codex ou Claude Copie este prompt, cole no Codex, Claude ou outro assistente e deixe que ele revise a página da skill e instale para você.
Baseado na classificação ocupacional SOC
Brainstorm before writing code. Refine rough ideas through questions, explore alternatives, present design in sections for validation. Use when starting a new feature or project.
Code review skill. Check code for correctness, edge cases, code style, and performance issues. Use when reviewing PRs or checking code quality.
Systematic debugging. Use a 4-phase root cause analysis process - collect evidence, form hypotheses, verify hypotheses, fix and verify. Use when troubleshooting bugs or abnormal behavior.
Test-driven development. Follow the RED-GREEN-REFACTOR cycle - write failing tests first, then write minimal code to pass, then refactor. Use when writing new features or fixing bugs.
Introduction to the Superpowers skills system. Learn how to use this set of development workflow skills. Use when first encountering superpowers or needing to understand the overall process.
Verification before completion. Ensure the problem is truly fixed, not just superficially passing. Use before declaring a task complete.
| name | writing-skills |
| description | 创建新技能的技能。遵循最佳实践编写 SKILL.md 文件。用于创建或改进 Agent 技能时。 |
学习如何创建高质量的 Agent 技能。
.agent/skills/[skill-name]/
├── SKILL.md # 必需: 主要指令文件
├── scripts/ # 可选: 辅助脚本
├── examples/ # 可选: 示例文件
└── resources/ # 可选: 其他资源
---
name: skill-name
description: 清晰描述技能的用途和触发条件
---
# 技能名称
[技能的详细说明]
## 触发条件
[什么情况下应该使用这个技能]
## 工作流程
[步骤化的操作指南]
## 最佳实践
[重要的提示和建议]
## 示例
[使用示例]
描述是 Agent 发现技能的关键:
提供可执行的步骤:
展示期望的输出格式:
## 示例输出
```json
{
"issues": [
{"severity": "high", "message": "未验证的用户输入"}
]
}
### 4. 定义决策树
帮助 Agent 选择正确的行动:
```markdown
## 决策流程
如果 [条件A]:
执行 [动作A]
否则如果 [条件B]:
执行 [动作B]
否则:
执行 [默认动作]