cc-dev-template 0.1.6 → 0.1.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/skills/create-agent-skills/SKILL.md +24 -68
- package/src/skills/create-agent-skills/references/audit.md +55 -296
- package/src/skills/create-agent-skills/references/create.md +78 -321
- package/src/skills/create-agent-skills/references/modify.md +56 -331
- package/src/skills/create-agent-skills/references/principles.md +103 -390
- package/src/skills/create-agent-skills/templates/router-skill.md +73 -0
- package/src/skills/create-agent-skills/templates/simple-skill.md +33 -0
- package/src/skills/create-agent-skills/workflows/audit-skill.md +3 -0
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: {{SKILL_NAME}}
|
|
3
|
+
description: {{What it does}} Use when {{trigger conditions}}.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
<objective>
|
|
7
|
+
{{Clear statement of what this skill accomplishes}}
|
|
8
|
+
</objective>
|
|
9
|
+
|
|
10
|
+
<quick_start>
|
|
11
|
+
{{Immediate actionable guidance - what Claude should do first}}
|
|
12
|
+
</quick_start>
|
|
13
|
+
|
|
14
|
+
<process>
|
|
15
|
+
## Step 1: {{First action}}
|
|
16
|
+
|
|
17
|
+
{{Instructions for step 1}}
|
|
18
|
+
|
|
19
|
+
## Step 2: {{Second action}}
|
|
20
|
+
|
|
21
|
+
{{Instructions for step 2}}
|
|
22
|
+
|
|
23
|
+
## Step 3: {{Third action}}
|
|
24
|
+
|
|
25
|
+
{{Instructions for step 3}}
|
|
26
|
+
</process>
|
|
27
|
+
|
|
28
|
+
<success_criteria>
|
|
29
|
+
{{Skill name}} is complete when:
|
|
30
|
+
- [ ] {{First success criterion}}
|
|
31
|
+
- [ ] {{Second success criterion}}
|
|
32
|
+
- [ ] {{Third success criterion}}
|
|
33
|
+
</success_criteria>
|