@ia-ccun/code-agent-cli 0.0.14 → 0.0.16

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.
Files changed (74) hide show
  1. package/bin/cli.js +153 -84
  2. package/config/agent/extensions/working-msg.ts +33 -15
  3. package/config/agent/models.json +41 -11
  4. package/config/agent/prompts/code-simplifier.md +52 -0
  5. package/config/agent/skills/brainstorming/SKILL.md +165 -0
  6. package/config/agent/skills/brainstorming/scripts/frame-template.html +214 -0
  7. package/config/agent/skills/brainstorming/scripts/helper.js +88 -0
  8. package/config/agent/skills/brainstorming/scripts/server.cjs +338 -0
  9. package/config/agent/skills/brainstorming/scripts/start-server.sh +153 -0
  10. package/config/agent/skills/brainstorming/scripts/stop-server.sh +55 -0
  11. package/config/agent/skills/brainstorming/spec-document-reviewer-prompt.md +49 -0
  12. package/config/agent/skills/brainstorming/visual-companion.md +286 -0
  13. package/config/agent/skills/dispatching-parallel-agents/SKILL.md +183 -0
  14. package/config/agent/skills/executing-plans/SKILL.md +71 -0
  15. package/config/agent/skills/finishing-a-development-branch/SKILL.md +201 -0
  16. package/config/agent/skills/owasp-security/SKILL.md +537 -0
  17. package/config/agent/skills/receiving-code-review/SKILL.md +214 -0
  18. package/config/agent/skills/requesting-code-review/SKILL.md +106 -0
  19. package/config/agent/skills/requesting-code-review/code-reviewer.md +146 -0
  20. package/config/agent/skills/skill-creator/SKILL.md +337 -213
  21. package/config/agent/skills/skill-creator/agents/analyzer.md +274 -0
  22. package/config/agent/skills/skill-creator/agents/comparator.md +202 -0
  23. package/config/agent/skills/skill-creator/agents/grader.md +223 -0
  24. package/config/agent/skills/skill-creator/assets/eval_review.html +146 -0
  25. package/config/agent/skills/skill-creator/eval-viewer/generate_review.py +471 -0
  26. package/config/agent/skills/skill-creator/eval-viewer/viewer.html +1325 -0
  27. package/config/agent/skills/skill-creator/references/schemas.md +430 -0
  28. package/config/agent/skills/skill-creator/scripts/__init__.py +0 -0
  29. package/config/agent/skills/skill-creator/scripts/aggregate_benchmark.py +401 -0
  30. package/config/agent/skills/skill-creator/scripts/generate_report.py +326 -0
  31. package/config/agent/skills/skill-creator/scripts/improve_description.py +248 -0
  32. package/config/agent/skills/skill-creator/scripts/package_skill.py +33 -7
  33. package/config/agent/skills/skill-creator/scripts/quick_validate.py +11 -3
  34. package/config/agent/skills/skill-creator/scripts/run_eval.py +310 -0
  35. package/config/agent/skills/skill-creator/scripts/run_loop.py +332 -0
  36. package/config/agent/skills/skill-creator/scripts/utils.py +47 -0
  37. package/config/agent/skills/subagent-driven-development/SKILL.md +278 -0
  38. package/config/agent/skills/subagent-driven-development/code-quality-reviewer-prompt.md +26 -0
  39. package/config/agent/skills/subagent-driven-development/implementer-prompt.md +113 -0
  40. package/config/agent/skills/subagent-driven-development/spec-reviewer-prompt.md +61 -0
  41. package/config/agent/skills/systematic-debugging/CREATION-LOG.md +119 -0
  42. package/config/agent/skills/systematic-debugging/SKILL.md +297 -0
  43. package/config/agent/skills/systematic-debugging/condition-based-waiting-example.ts +158 -0
  44. package/config/agent/skills/systematic-debugging/condition-based-waiting.md +115 -0
  45. package/config/agent/skills/systematic-debugging/defense-in-depth.md +122 -0
  46. package/config/agent/skills/systematic-debugging/find-polluter.sh +63 -0
  47. package/config/agent/skills/systematic-debugging/root-cause-tracing.md +169 -0
  48. package/config/agent/skills/systematic-debugging/test-academic.md +14 -0
  49. package/config/agent/skills/systematic-debugging/test-pressure-1.md +58 -0
  50. package/config/agent/skills/systematic-debugging/test-pressure-2.md +68 -0
  51. package/config/agent/skills/systematic-debugging/test-pressure-3.md +69 -0
  52. package/config/agent/skills/test-driven-development/SKILL.md +372 -0
  53. package/config/agent/skills/test-driven-development/testing-anti-patterns.md +299 -0
  54. package/config/agent/skills/using-git-worktrees/SKILL.md +219 -0
  55. package/config/agent/skills/using-superpowers/SKILL.md +116 -0
  56. package/config/agent/skills/using-superpowers/references/codex-tools.md +25 -0
  57. package/config/agent/skills/using-superpowers/references/gemini-tools.md +33 -0
  58. package/config/agent/skills/verification-before-completion/SKILL.md +140 -0
  59. package/config/agent/skills/writing-plans/SKILL.md +146 -0
  60. package/config/agent/skills/writing-plans/plan-document-reviewer-prompt.md +49 -0
  61. package/config/agent/skills/writing-skills/SKILL.md +667 -0
  62. package/config/agent/skills/writing-skills/anthropic-best-practices.md +1150 -0
  63. package/config/agent/skills/writing-skills/examples/CLAUDE_MD_TESTING.md +189 -0
  64. package/config/agent/skills/writing-skills/graphviz-conventions.dot +172 -0
  65. package/config/agent/skills/writing-skills/persuasion-principles.md +187 -0
  66. package/config/agent/skills/writing-skills/render-graphs.js +168 -0
  67. package/config/agent/skills/writing-skills/testing-skills-with-subagents.md +384 -0
  68. package/package.json +14 -7
  69. package/config/agent/skills/github/SKILL.md +0 -47
  70. package/config/agent/skills/owasp/SKILL.md +0 -169
  71. package/config/agent/skills/pua/SKILL.md +0 -364
  72. package/config/agent/skills/skill-creator/references/output-patterns.md +0 -82
  73. package/config/agent/skills/skill-creator/references/workflows.md +0 -28
  74. package/config/agent/skills/skill-creator/scripts/init_skill.py +0 -303
@@ -1,356 +1,480 @@
1
1
  ---
2
2
  name: skill-creator
3
- description: Guide for creating effective skills. This skill should be used when users want to create a new skill (or update an existing skill) that extends Claude's capabilities with specialized knowledge, workflows, or tool integrations.
4
- license: Complete terms in LICENSE.txt
3
+ author: xujianjiang
4
+ description: Create new skills, modify and improve existing skills, and measure skill performance. Use when users want to create a skill from scratch, update or optimize an existing skill, run evals to test a skill, benchmark skill performance with variance analysis, or optimize a skill's description for better triggering accuracy.
5
5
  ---
6
6
 
7
7
  # Skill Creator
8
8
 
9
- This skill provides guidance for creating effective skills.
9
+ A skill for creating new skills and iteratively improving them.
10
10
 
11
- ## About Skills
11
+ At a high level, the process of creating a skill goes like this:
12
12
 
13
- Skills are modular, self-contained packages that extend Claude's capabilities by providing
14
- specialized knowledge, workflows, and tools. Think of them as "onboarding guides" for specific
15
- domains or tasks—they transform Claude from a general-purpose agent into a specialized agent
16
- equipped with procedural knowledge that no model can fully possess.
13
+ - Decide what you want the skill to do and roughly how it should do it
14
+ - Write a draft of the skill
15
+ - Create a few test prompts and run claude-with-access-to-the-skill on them
16
+ - Help the user evaluate the results both qualitatively and quantitatively
17
+ - While the runs happen in the background, draft some quantitative evals if there aren't any (if there are some, you can either use as is or modify if you feel something needs to change about them). Then explain them to the user (or if they already existed, explain the ones that already exist)
18
+ - Use the `eval-viewer/generate_review.py` script to show the user the results for them to look at, and also let them look at the quantitative metrics
19
+ - Rewrite the skill based on feedback from the user's evaluation of the results (and also if there are any glaring flaws that become apparent from the quantitative benchmarks)
20
+ - Repeat until you're satisfied
21
+ - Expand the test set and try again at larger scale
17
22
 
18
- ### What Skills Provide
23
+ Your job when using this skill is to figure out where the user is in this process and then jump in and help them progress through these stages. So for instance, maybe they're like "I want to make a skill for X". You can help narrow down what they mean, write a draft, write the test cases, figure out how they want to evaluate, run all the prompts, and repeat.
19
24
 
20
- 1. Specialized workflows - Multi-step procedures for specific domains
21
- 2. Tool integrations - Instructions for working with specific file formats or APIs
22
- 3. Domain expertise - Company-specific knowledge, schemas, business logic
23
- 4. Bundled resources - Scripts, references, and assets for complex and repetitive tasks
25
+ On the other hand, maybe they already have a draft of the skill. In this case you can go straight to the eval/iterate part of the loop.
24
26
 
25
- ## Core Principles
27
+ Of course, you should always be flexible and if the user is like "I don't need to run a bunch of evaluations, just vibe with me", you can do that instead.
26
28
 
27
- ### Concise is Key
29
+ Then after the skill is done (but again, the order is flexible), you can also run the skill description improver, which we have a whole separate script for, to optimize the triggering of the skill.
28
30
 
29
- The context window is a public good. Skills share the context window with everything else Claude needs: system prompt, conversation history, other Skills' metadata, and the actual user request.
31
+ Cool? Cool.
30
32
 
31
- **Default assumption: Claude is already very smart.** Only add context Claude doesn't already have. Challenge each piece of information: "Does Claude really need this explanation?" and "Does this paragraph justify its token cost?"
33
+ ## Communicating with the user
32
34
 
33
- Prefer concise examples over verbose explanations.
35
+ The skill creator is liable to be used by people across a wide range of familiarity with coding jargon. If you haven't heard (and how could you, it's only very recently that it started), there's a trend now where the power of Claude is inspiring plumbers to open up their terminals, parents and grandparents to google "how to install npm". On the other hand, the bulk of users are probably fairly computer-literate.
34
36
 
35
- ### Set Appropriate Degrees of Freedom
37
+ So please pay attention to context cues to understand how to phrase your communication! In the default case, just to give you some idea:
36
38
 
37
- Match the level of specificity to the task's fragility and variability:
39
+ - "evaluation" and "benchmark" are borderline, but OK
40
+ - for "JSON" and "assertion" you want to see serious cues from the user that they know what those things are before using them without explaining them
38
41
 
39
- **High freedom (text-based instructions)**: Use when multiple approaches are valid, decisions depend on context, or heuristics guide the approach.
42
+ It's OK to briefly explain terms if you're in doubt, and feel free to clarify terms with a short definition if you're unsure if the user will get it.
40
43
 
41
- **Medium freedom (pseudocode or scripts with parameters)**: Use when a preferred pattern exists, some variation is acceptable, or configuration affects behavior.
44
+ ---
45
+
46
+ ## Creating a skill
47
+
48
+ ### Capture Intent
49
+
50
+ Start by understanding the user's intent. The current conversation might already contain a workflow the user wants to capture (e.g., they say "turn this into a skill"). If so, extract answers from the conversation history first — the tools used, the sequence of steps, corrections the user made, input/output formats observed. The user may need to fill the gaps, and should confirm before proceeding to the next step.
51
+
52
+ 1. What should this skill enable Claude to do?
53
+ 2. When should this skill trigger? (what user phrases/contexts)
54
+ 3. What's the expected output format?
55
+ 4. Should we set up test cases to verify the skill works? Skills with objectively verifiable outputs (file transforms, data extraction, code generation, fixed workflow steps) benefit from test cases. Skills with subjective outputs (writing style, art) often don't need them. Suggest the appropriate default based on the skill type, but let the user decide.
56
+
57
+ ### Interview and Research
58
+
59
+ Proactively ask questions about edge cases, input/output formats, example files, success criteria, and dependencies. Wait to write test prompts until you've got this part ironed out.
60
+
61
+ Check available MCPs - if useful for research (searching docs, finding similar skills, looking up best practices), research in parallel via subagents if available, otherwise inline. Come prepared with context to reduce burden on the user.
62
+
63
+ ### Write the SKILL.md
42
64
 
43
- **Low freedom (specific scripts, few parameters)**: Use when operations are fragile and error-prone, consistency is critical, or a specific sequence must be followed.
65
+ Based on the user interview, fill in these components:
44
66
 
45
- Think of Claude as exploring a path: a narrow bridge with cliffs needs specific guardrails (low freedom), while an open field allows many routes (high freedom).
67
+ - **name**: Skill identifier
68
+ - **description**: When to trigger, what it does. This is the primary triggering mechanism - include both what the skill does AND specific contexts for when to use it. All "when to use" info goes here, not in the body. Note: currently Claude has a tendency to "undertrigger" skills -- to not use them when they'd be useful. To combat this, please make the skill descriptions a little bit "pushy". So for instance, instead of "How to build a simple fast dashboard to display internal Anthropic data.", you might write "How to build a simple fast dashboard to display internal Anthropic data. Make sure to use this skill whenever the user mentions dashboards, data visualization, internal metrics, or wants to display any kind of company data, even if they don't explicitly ask for a 'dashboard.'"
69
+ - **compatibility**: Required tools, dependencies (optional, rarely needed)
70
+ - **the rest of the skill :)**
46
71
 
47
- ### Anatomy of a Skill
72
+ ### Skill Writing Guide
48
73
 
49
- Every skill consists of a required SKILL.md file and optional bundled resources:
74
+ #### Anatomy of a Skill
50
75
 
51
76
  ```
52
77
  skill-name/
53
78
  ├── SKILL.md (required)
54
- │ ├── YAML frontmatter metadata (required)
55
- │ ├── name: (required)
56
- │ │ └── description: (required)
57
- │ └── Markdown instructions (required)
79
+ │ ├── YAML frontmatter (name, description required)
80
+ └── Markdown instructions
58
81
  └── Bundled Resources (optional)
59
- ├── scripts/ - Executable code (Python/Bash/etc.)
60
- ├── references/ - Documentation intended to be loaded into context as needed
61
- └── assets/ - Files used in output (templates, icons, fonts, etc.)
82
+ ├── scripts/ - Executable code for deterministic/repetitive tasks
83
+ ├── references/ - Docs loaded into context as needed
84
+ └── assets/ - Files used in output (templates, icons, fonts)
62
85
  ```
63
86
 
64
- #### SKILL.md (required)
87
+ #### Progressive Disclosure
65
88
 
66
- Every SKILL.md consists of:
89
+ Skills use a three-level loading system:
90
+ 1. **Metadata** (name + description) - Always in context (~100 words)
91
+ 2. **SKILL.md body** - In context whenever skill triggers (<500 lines ideal)
92
+ 3. **Bundled resources** - As needed (unlimited, scripts can execute without loading)
67
93
 
68
- - **Frontmatter** (YAML): Contains `name` and `description` fields. These are the only fields that Claude reads to determine when the skill gets used, thus it is very important to be clear and comprehensive in describing what the skill is, and when it should be used.
69
- - **Body** (Markdown): Instructions and guidance for using the skill. Only loaded AFTER the skill triggers (if at all).
94
+ These word counts are approximate and you can feel free to go longer if needed.
70
95
 
71
- #### Bundled Resources (optional)
96
+ **Key patterns:**
97
+ - Keep SKILL.md under 500 lines; if you're approaching this limit, add an additional layer of hierarchy along with clear pointers about where the model using the skill should go next to follow up.
98
+ - Reference files clearly from SKILL.md with guidance on when to read them
99
+ - For large reference files (>300 lines), include a table of contents
72
100
 
73
- ##### Scripts (`scripts/`)
74
-
75
- Executable code (Python/Bash/etc.) for tasks that require deterministic reliability or are repeatedly rewritten.
101
+ **Domain organization**: When a skill supports multiple domains/frameworks, organize by variant:
102
+ ```
103
+ cloud-deploy/
104
+ ├── SKILL.md (workflow + selection)
105
+ └── references/
106
+ ├── aws.md
107
+ ├── gcp.md
108
+ └── azure.md
109
+ ```
110
+ Claude reads only the relevant reference file.
76
111
 
77
- - **When to include**: When the same code is being rewritten repeatedly or deterministic reliability is needed
78
- - **Example**: `scripts/rotate_pdf.py` for PDF rotation tasks
79
- - **Benefits**: Token efficient, deterministic, may be executed without loading into context
80
- - **Note**: Scripts may still need to be read by Claude for patching or environment-specific adjustments
112
+ #### Principle of Lack of Surprise
81
113
 
82
- ##### References (`references/`)
114
+ This goes without saying, but skills must not contain malware, exploit code, or any content that could compromise system security. A skill's contents should not surprise the user in their intent if described. Don't go along with requests to create misleading skills or skills designed to facilitate unauthorized access, data exfiltration, or other malicious activities. Things like a "roleplay as an XYZ" are OK though.
83
115
 
84
- Documentation and reference material intended to be loaded as needed into context to inform Claude's process and thinking.
116
+ #### Writing Patterns
85
117
 
86
- - **When to include**: For documentation that Claude should reference while working
87
- - **Examples**: `references/finance.md` for financial schemas, `references/mnda.md` for company NDA template, `references/policies.md` for company policies, `references/api_docs.md` for API specifications
88
- - **Use cases**: Database schemas, API documentation, domain knowledge, company policies, detailed workflow guides
89
- - **Benefits**: Keeps SKILL.md lean, loaded only when Claude determines it's needed
90
- - **Best practice**: If files are large (>10k words), include grep search patterns in SKILL.md
91
- - **Avoid duplication**: Information should live in either SKILL.md or references files, not both. Prefer references files for detailed information unless it's truly core to the skill—this keeps SKILL.md lean while making information discoverable without hogging the context window. Keep only essential procedural instructions and workflow guidance in SKILL.md; move detailed reference material, schemas, and examples to references files.
118
+ Prefer using the imperative form in instructions.
92
119
 
93
- ##### Assets (`assets/`)
120
+ **Defining output formats** - You can do it like this:
121
+ ```markdown
122
+ ## Report structure
123
+ ALWAYS use this exact template:
124
+ # [Title]
125
+ ## Executive summary
126
+ ## Key findings
127
+ ## Recommendations
128
+ ```
94
129
 
95
- Files not intended to be loaded into context, but rather used within the output Claude produces.
130
+ **Examples pattern** - It's useful to include examples. You can format them like this (but if "Input" and "Output" are in the examples you might want to deviate a little):
131
+ ```markdown
132
+ ## Commit message format
133
+ **Example 1:**
134
+ Input: Added user authentication with JWT tokens
135
+ Output: feat(auth): implement JWT-based authentication
136
+ ```
96
137
 
97
- - **When to include**: When the skill needs files that will be used in the final output
98
- - **Examples**: `assets/logo.png` for brand assets, `assets/slides.pptx` for PowerPoint templates, `assets/frontend-template/` for HTML/React boilerplate, `assets/font.ttf` for typography
99
- - **Use cases**: Templates, images, icons, boilerplate code, fonts, sample documents that get copied or modified
100
- - **Benefits**: Separates output resources from documentation, enables Claude to use files without loading them into context
138
+ ### Writing Style
101
139
 
102
- #### What to Not Include in a Skill
140
+ Try to explain to the model why things are important in lieu of heavy-handed musty MUSTs. Use theory of mind and try to make the skill general and not super-narrow to specific examples. Start by writing a draft and then look at it with fresh eyes and improve it.
103
141
 
104
- A skill should only contain essential files that directly support its functionality. Do NOT create extraneous documentation or auxiliary files, including:
142
+ ### Test Cases
105
143
 
106
- - README.md
107
- - INSTALLATION_GUIDE.md
108
- - QUICK_REFERENCE.md
109
- - CHANGELOG.md
110
- - etc.
144
+ After writing the skill draft, come up with 2-3 realistic test prompts — the kind of thing a real user would actually say. Share them with the user: [you don't have to use this exact language] "Here are a few test cases I'd like to try. Do these look right, or do you want to add more?" Then run them.
111
145
 
112
- The skill should only contain the information needed for an AI agent to do the job at hand. It should not contain auxilary context about the process that went into creating it, setup and testing procedures, user-facing documentation, etc. Creating additional documentation files just adds clutter and confusion.
146
+ Save test cases to `evals/evals.json`. Don't write assertions yet just the prompts. You'll draft assertions in the next step while the runs are in progress.
113
147
 
114
- ### Progressive Disclosure Design Principle
148
+ ```json
149
+ {
150
+ "skill_name": "example-skill",
151
+ "evals": [
152
+ {
153
+ "id": 1,
154
+ "prompt": "User's task prompt",
155
+ "expected_output": "Description of expected result",
156
+ "files": []
157
+ }
158
+ ]
159
+ }
160
+ ```
115
161
 
116
- Skills use a three-level loading system to manage context efficiently:
162
+ See `references/schemas.md` for the full schema (including the `assertions` field, which you'll add later).
117
163
 
118
- 1. **Metadata (name + description)** - Always in context (~100 words)
119
- 2. **SKILL.md body** - When skill triggers (<5k words)
120
- 3. **Bundled resources** - As needed by Claude (Unlimited because scripts can be executed without reading into context window)
164
+ ## Running and evaluating test cases
121
165
 
122
- #### Progressive Disclosure Patterns
166
+ This section is one continuous sequence — don't stop partway through. Do NOT use `/skill-test` or any other testing skill.
123
167
 
124
- Keep SKILL.md body to the essentials and under 500 lines to minimize context bloat. Split content into separate files when approaching this limit. When splitting out content into other files, it is very important to reference them from SKILL.md and describe clearly when to read them, to ensure the reader of the skill knows they exist and when to use them.
168
+ Put results in `<skill-name>-workspace/` as a sibling to the skill directory. Within the workspace, organize results by iteration (`iteration-1/`, `iteration-2/`, etc.) and within that, each test case gets a directory (`eval-0/`, `eval-1/`, etc.). Don't create all of this upfront just create directories as you go.
125
169
 
126
- **Key principle:** When a skill supports multiple variations, frameworks, or options, keep only the core workflow and selection guidance in SKILL.md. Move variant-specific details (patterns, examples, configuration) into separate reference files.
170
+ ### Step 1: Spawn all runs (with-skill AND baseline) in the same turn
127
171
 
128
- **Pattern 1: High-level guide with references**
172
+ For each test case, spawn two subagents in the same turn — one with the skill, one without. This is important: don't spawn the with-skill runs first and then come back for baselines later. Launch everything at once so it all finishes around the same time.
129
173
 
130
- ```markdown
131
- # PDF Processing
174
+ **With-skill run:**
132
175
 
133
- ## Quick start
176
+ ```
177
+ Execute this task:
178
+ - Skill path: <path-to-skill>
179
+ - Task: <eval prompt>
180
+ - Input files: <eval files if any, or "none">
181
+ - Save outputs to: <workspace>/iteration-<N>/eval-<ID>/with_skill/outputs/
182
+ - Outputs to save: <what the user cares about — e.g., "the .docx file", "the final CSV">
183
+ ```
134
184
 
135
- Extract text with pdfplumber:
136
- [code example]
185
+ **Baseline run** (same prompt, but the baseline depends on context):
186
+ - **Creating a new skill**: no skill at all. Same prompt, no skill path, save to `without_skill/outputs/`.
187
+ - **Improving an existing skill**: the old version. Before editing, snapshot the skill (`cp -r <skill-path> <workspace>/skill-snapshot/`), then point the baseline subagent at the snapshot. Save to `old_skill/outputs/`.
137
188
 
138
- ## Advanced features
189
+ Write an `eval_metadata.json` for each test case (assertions can be empty for now). Give each eval a descriptive name based on what it's testing — not just "eval-0". Use this name for the directory too. If this iteration uses new or modified eval prompts, create these files for each new eval directory — don't assume they carry over from previous iterations.
139
190
 
140
- - **Form filling**: See [FORMS.md](FORMS.md) for complete guide
141
- - **API reference**: See [REFERENCE.md](REFERENCE.md) for all methods
142
- - **Examples**: See [EXAMPLES.md](EXAMPLES.md) for common patterns
191
+ ```json
192
+ {
193
+ "eval_id": 0,
194
+ "eval_name": "descriptive-name-here",
195
+ "prompt": "The user's task prompt",
196
+ "assertions": []
197
+ }
143
198
  ```
144
199
 
145
- Claude loads FORMS.md, REFERENCE.md, or EXAMPLES.md only when needed.
200
+ ### Step 2: While runs are in progress, draft assertions
146
201
 
147
- **Pattern 2: Domain-specific organization**
202
+ Don't just wait for the runs to finish — you can use this time productively. Draft quantitative assertions for each test case and explain them to the user. If assertions already exist in `evals/evals.json`, review them and explain what they check.
148
203
 
149
- For Skills with multiple domains, organize content by domain to avoid loading irrelevant context:
204
+ Good assertions are objectively verifiable and have descriptive names — they should read clearly in the benchmark viewer so someone glancing at the results immediately understands what each one checks. Subjective skills (writing style, design quality) are better evaluated qualitatively don't force assertions onto things that need human judgment.
150
205
 
151
- ```
152
- bigquery-skill/
153
- ├── SKILL.md (overview and navigation)
154
- └── reference/
155
- ├── finance.md (revenue, billing metrics)
156
- ├── sales.md (opportunities, pipeline)
157
- ├── product.md (API usage, features)
158
- └── marketing.md (campaigns, attribution)
159
- ```
206
+ Update the `eval_metadata.json` files and `evals/evals.json` with the assertions once drafted. Also explain to the user what they'll see in the viewer — both the qualitative outputs and the quantitative benchmark.
160
207
 
161
- When a user asks about sales metrics, Claude only reads sales.md.
208
+ ### Step 3: As runs complete, capture timing data
162
209
 
163
- Similarly, for skills supporting multiple frameworks or variants, organize by variant:
210
+ When each subagent task completes, you receive a notification containing `total_tokens` and `duration_ms`. Save this data immediately to `timing.json` in the run directory:
164
211
 
165
- ```
166
- cloud-deploy/
167
- ├── SKILL.md (workflow + provider selection)
168
- └── references/
169
- ├── aws.md (AWS deployment patterns)
170
- ├── gcp.md (GCP deployment patterns)
171
- └── azure.md (Azure deployment patterns)
212
+ ```json
213
+ {
214
+ "total_tokens": 84852,
215
+ "duration_ms": 23332,
216
+ "total_duration_seconds": 23.3
217
+ }
172
218
  ```
173
219
 
174
- When the user chooses AWS, Claude only reads aws.md.
220
+ This is the only opportunity to capture this data — it comes through the task notification and isn't persisted elsewhere. Process each notification as it arrives rather than trying to batch them.
175
221
 
176
- **Pattern 3: Conditional details**
222
+ ### Step 4: Grade, aggregate, and launch the viewer
177
223
 
178
- Show basic content, link to advanced content:
224
+ Once all runs are done:
179
225
 
180
- ```markdown
181
- # DOCX Processing
226
+ 1. **Grade each run** — spawn a grader subagent (or grade inline) that reads `agents/grader.md` and evaluates each assertion against the outputs. Save results to `grading.json` in each run directory. The grading.json expectations array must use the fields `text`, `passed`, and `evidence` (not `name`/`met`/`details` or other variants) — the viewer depends on these exact field names. For assertions that can be checked programmatically, write and run a script rather than eyeballing it — scripts are faster, more reliable, and can be reused across iterations.
182
227
 
183
- ## Creating documents
228
+ 2. **Aggregate into benchmark** — run the aggregation script from the skill-creator directory:
229
+ ```bash
230
+ python -m scripts.aggregate_benchmark <workspace>/iteration-N --skill-name <name>
231
+ ```
232
+ This produces `benchmark.json` and `benchmark.md` with pass_rate, time, and tokens for each configuration, with mean ± stddev and the delta. If generating benchmark.json manually, see `references/schemas.md` for the exact schema the viewer expects.
233
+ Put each with_skill version before its baseline counterpart.
184
234
 
185
- Use docx-js for new documents. See [DOCX-JS.md](DOCX-JS.md).
235
+ 3. **Do an analyst pass** — read the benchmark data and surface patterns the aggregate stats might hide. See `agents/analyzer.md` (the "Analyzing Benchmark Results" section) for what to look for — things like assertions that always pass regardless of skill (non-discriminating), high-variance evals (possibly flaky), and time/token tradeoffs.
186
236
 
187
- ## Editing documents
237
+ 4. **Launch the viewer** with both qualitative outputs and quantitative data:
238
+ ```bash
239
+ nohup python <skill-creator-path>/eval-viewer/generate_review.py \
240
+ <workspace>/iteration-N \
241
+ --skill-name "my-skill" \
242
+ --benchmark <workspace>/iteration-N/benchmark.json \
243
+ > /dev/null 2>&1 &
244
+ VIEWER_PID=$!
245
+ ```
246
+ For iteration 2+, also pass `--previous-workspace <workspace>/iteration-<N-1>`.
188
247
 
189
- For simple edits, modify the XML directly.
248
+ **Cowork / headless environments:** If `webbrowser.open()` is not available or the environment has no display, use `--static <output_path>` to write a standalone HTML file instead of starting a server. Feedback will be downloaded as a `feedback.json` file when the user clicks "Submit All Reviews". After download, copy `feedback.json` into the workspace directory for the next iteration to pick up.
190
249
 
191
- **For tracked changes**: See [REDLINING.md](REDLINING.md)
192
- **For OOXML details**: See [OOXML.md](OOXML.md)
193
- ```
250
+ Note: please use generate_review.py to create the viewer; there's no need to write custom HTML.
194
251
 
195
- Claude reads REDLINING.md or OOXML.md only when the user needs those features.
252
+ 5. **Tell the user** something like: "I've opened the results in your browser. There are two tabs — 'Outputs' lets you click through each test case and leave feedback, 'Benchmark' shows the quantitative comparison. When you're done, come back here and let me know."
196
253
 
197
- **Important guidelines:**
254
+ ### What the user sees in the viewer
198
255
 
199
- - **Avoid deeply nested references** - Keep references one level deep from SKILL.md. All reference files should link directly from SKILL.md.
200
- - **Structure longer reference files** - For files longer than 100 lines, include a table of contents at the top so Claude can see the full scope when previewing.
256
+ The "Outputs" tab shows one test case at a time:
257
+ - **Prompt**: the task that was given
258
+ - **Output**: the files the skill produced, rendered inline where possible
259
+ - **Previous Output** (iteration 2+): collapsed section showing last iteration's output
260
+ - **Formal Grades** (if grading was run): collapsed section showing assertion pass/fail
261
+ - **Feedback**: a textbox that auto-saves as they type
262
+ - **Previous Feedback** (iteration 2+): their comments from last time, shown below the textbox
201
263
 
202
- ## Skill Creation Process
264
+ The "Benchmark" tab shows the stats summary: pass rates, timing, and token usage for each configuration, with per-eval breakdowns and analyst observations.
203
265
 
204
- Skill creation involves these steps:
266
+ Navigation is via prev/next buttons or arrow keys. When done, they click "Submit All Reviews" which saves all feedback to `feedback.json`.
205
267
 
206
- 1. Understand the skill with concrete examples
207
- 2. Plan reusable skill contents (scripts, references, assets)
208
- 3. Initialize the skill (run init_skill.py)
209
- 4. Edit the skill (implement resources and write SKILL.md)
210
- 5. Package the skill (run package_skill.py)
211
- 6. Iterate based on real usage
268
+ ### Step 5: Read the feedback
212
269
 
213
- Follow these steps in order, skipping only if there is a clear reason why they are not applicable.
270
+ When the user tells you they're done, read `feedback.json`:
214
271
 
215
- ### Step 1: Understanding the Skill with Concrete Examples
272
+ ```json
273
+ {
274
+ "reviews": [
275
+ {"run_id": "eval-0-with_skill", "feedback": "the chart is missing axis labels", "timestamp": "..."},
276
+ {"run_id": "eval-1-with_skill", "feedback": "", "timestamp": "..."},
277
+ {"run_id": "eval-2-with_skill", "feedback": "perfect, love this", "timestamp": "..."}
278
+ ],
279
+ "status": "complete"
280
+ }
281
+ ```
216
282
 
217
- Skip this step only when the skill's usage patterns are already clearly understood. It remains valuable even when working with an existing skill.
283
+ Empty feedback means the user thought it was fine. Focus your improvements on the test cases where the user had specific complaints.
218
284
 
219
- To create an effective skill, clearly understand concrete examples of how the skill will be used. This understanding can come from either direct user examples or generated examples that are validated with user feedback.
285
+ Kill the viewer server when you're done with it:
220
286
 
221
- For example, when building an image-editor skill, relevant questions include:
287
+ ```bash
288
+ kill $VIEWER_PID 2>/dev/null
289
+ ```
222
290
 
223
- - "What functionality should the image-editor skill support? Editing, rotating, anything else?"
224
- - "Can you give some examples of how this skill would be used?"
225
- - "I can imagine users asking for things like 'Remove the red-eye from this image' or 'Rotate this image'. Are there other ways you imagine this skill being used?"
226
- - "What would a user say that should trigger this skill?"
291
+ ---
227
292
 
228
- To avoid overwhelming users, avoid asking too many questions in a single message. Start with the most important questions and follow up as needed for better effectiveness.
293
+ ## Improving the skill
229
294
 
230
- Conclude this step when there is a clear sense of the functionality the skill should support.
295
+ This is the heart of the loop. You've run the test cases, the user has reviewed the results, and now you need to make the skill better based on their feedback.
231
296
 
232
- ### Step 2: Planning the Reusable Skill Contents
297
+ ### How to think about improvements
233
298
 
234
- To turn concrete examples into an effective skill, analyze each example by:
299
+ 1. **Generalize from the feedback.** The big picture thing that's happening here is that we're trying to create skills that can be used a million times (maybe literally, maybe even more who knows) across many different prompts. Here you and the user are iterating on only a few examples over and over again because it helps move faster. The user knows these examples in and out and it's quick for them to assess new outputs. But if the skill you and the user are codeveloping works only for those examples, it's useless. Rather than put in fiddly overfitty changes, or oppressively constrictive MUSTs, if there's some stubborn issue, you might try branching out and using different metaphors, or recommending different patterns of working. It's relatively cheap to try and maybe you'll land on something great.
235
300
 
236
- 1. Considering how to execute on the example from scratch
237
- 2. Identifying what scripts, references, and assets would be helpful when executing these workflows repeatedly
301
+ 2. **Keep the prompt lean.** Remove things that aren't pulling their weight. Make sure to read the transcripts, not just the final outputs — if it looks like the skill is making the model waste a bunch of time doing things that are unproductive, you can try getting rid of the parts of the skill that are making it do that and seeing what happens.
238
302
 
239
- Example: When building a `pdf-editor` skill to handle queries like "Help me rotate this PDF," the analysis shows:
303
+ 3. **Explain the why.** Try hard to explain the **why** behind everything you're asking the model to do. Today's LLMs are *smart*. They have good theory of mind and when given a good harness can go beyond rote instructions and really make things happen. Even if the feedback from the user is terse or frustrated, try to actually understand the task and why the user is writing what they wrote, and what they actually wrote, and then transmit this understanding into the instructions. If you find yourself writing ALWAYS or NEVER in all caps, or using super rigid structures, that's a yellow flag — if possible, reframe and explain the reasoning so that the model understands why the thing you're asking for is important. That's a more humane, powerful, and effective approach.
240
304
 
241
- 1. Rotating a PDF requires re-writing the same code each time
242
- 2. A `scripts/rotate_pdf.py` script would be helpful to store in the skill
305
+ 4. **Look for repeated work across test cases.** Read the transcripts from the test runs and notice if the subagents all independently wrote similar helper scripts or took the same multi-step approach to something. If all 3 test cases resulted in the subagent writing a `create_docx.py` or a `build_chart.py`, that's a strong signal the skill should bundle that script. Write it once, put it in `scripts/`, and tell the skill to use it. This saves every future invocation from reinventing the wheel.
243
306
 
244
- Example: When designing a `frontend-webapp-builder` skill for queries like "Build me a todo app" or "Build me a dashboard to track my steps," the analysis shows:
307
+ This task is pretty important (we are trying to create billions a year in economic value here!) and your thinking time is not the blocker; take your time and really mull things over. I'd suggest writing a draft revision and then looking at it anew and making improvements. Really do your best to get into the head of the user and understand what they want and need.
245
308
 
246
- 1. Writing a frontend webapp requires the same boilerplate HTML/React each time
247
- 2. An `assets/hello-world/` template containing the boilerplate HTML/React project files would be helpful to store in the skill
309
+ ### The iteration loop
248
310
 
249
- Example: When building a `big-query` skill to handle queries like "How many users have logged in today?" the analysis shows:
311
+ After improving the skill:
250
312
 
251
- 1. Querying BigQuery requires re-discovering the table schemas and relationships each time
252
- 2. A `references/schema.md` file documenting the table schemas would be helpful to store in the skill
313
+ 1. Apply your improvements to the skill
314
+ 2. Rerun all test cases into a new `iteration-<N+1>/` directory, including baseline runs. If you're creating a new skill, the baseline is always `without_skill` (no skill) — that stays the same across iterations. If you're improving an existing skill, use your judgment on what makes sense as the baseline: the original version the user came in with, or the previous iteration.
315
+ 3. Launch the reviewer with `--previous-workspace` pointing at the previous iteration
316
+ 4. Wait for the user to review and tell you they're done
317
+ 5. Read the new feedback, improve again, repeat
253
318
 
254
- To establish the skill's contents, analyze each concrete example to create a list of the reusable resources to include: scripts, references, and assets.
319
+ Keep going until:
320
+ - The user says they're happy
321
+ - The feedback is all empty (everything looks good)
322
+ - You're not making meaningful progress
255
323
 
256
- ### Step 3: Initializing the Skill
324
+ ---
325
+
326
+ ## Advanced: Blind comparison
257
327
 
258
- At this point, it is time to actually create the skill.
328
+ For situations where you want a more rigorous comparison between two versions of a skill (e.g., the user asks "is the new version actually better?"), there's a blind comparison system. Read `agents/comparator.md` and `agents/analyzer.md` for the details. The basic idea is: give two outputs to an independent agent without telling it which is which, and let it judge quality. Then analyze why the winner won.
259
329
 
260
- Skip this step only if the skill being developed already exists, and iteration or packaging is needed. In this case, continue to the next step.
330
+ This is optional, requires subagents, and most users won't need it. The human review loop is usually sufficient.
261
331
 
262
- When creating a new skill from scratch, always run the `init_skill.py` script. The script conveniently generates a new template skill directory that automatically includes everything a skill requires, making the skill creation process much more efficient and reliable.
332
+ ---
263
333
 
264
- Usage:
334
+ ## Description Optimization
265
335
 
266
- ```bash
267
- scripts/init_skill.py <skill-name> --path <output-directory>
336
+ The description field in SKILL.md frontmatter is the primary mechanism that determines whether Claude invokes a skill. After creating or improving a skill, offer to optimize the description for better triggering accuracy.
337
+
338
+ ### Step 1: Generate trigger eval queries
339
+
340
+ Create 20 eval queries — a mix of should-trigger and should-not-trigger. Save as JSON:
341
+
342
+ ```json
343
+ [
344
+ {"query": "the user prompt", "should_trigger": true},
345
+ {"query": "another prompt", "should_trigger": false}
346
+ ]
268
347
  ```
269
348
 
270
- The script:
349
+ The queries must be realistic and something a Claude Code or Claude.ai user would actually type. Not abstract requests, but requests that are concrete and specific and have a good amount of detail. For instance, file paths, personal context about the user's job or situation, column names and values, company names, URLs. A little bit of backstory. Some might be in lowercase or contain abbreviations or typos or casual speech. Use a mix of different lengths, and focus on edge cases rather than making them clear-cut (the user will get a chance to sign off on them).
350
+
351
+ Bad: `"Format this data"`, `"Extract text from PDF"`, `"Create a chart"`
271
352
 
272
- - Creates the skill directory at the specified path
273
- - Generates a SKILL.md template with proper frontmatter and TODO placeholders
274
- - Creates example resource directories: `scripts/`, `references/`, and `assets/`
275
- - Adds example files in each directory that can be customized or deleted
353
+ Good: `"ok so my boss just sent me this xlsx file (its in my downloads, called something like 'Q4 sales final FINAL v2.xlsx') and she wants me to add a column that shows the profit margin as a percentage. The revenue is in column C and costs are in column D i think"`
276
354
 
277
- After initialization, customize or remove the generated SKILL.md and example files as needed.
355
+ For the **should-trigger** queries (8-10), think about coverage. You want different phrasings of the same intent — some formal, some casual. Include cases where the user doesn't explicitly name the skill or file type but clearly needs it. Throw in some uncommon use cases and cases where this skill competes with another but should win.
278
356
 
279
- ### Step 4: Edit the Skill
357
+ For the **should-not-trigger** queries (8-10), the most valuable ones are the near-misses — queries that share keywords or concepts with the skill but actually need something different. Think adjacent domains, ambiguous phrasing where a naive keyword match would trigger but shouldn't, and cases where the query touches on something the skill does but in a context where another tool is more appropriate.
280
358
 
281
- When editing the (newly-generated or existing) skill, remember that the skill is being created for another instance of Claude to use. Include information that would be beneficial and non-obvious to Claude. Consider what procedural knowledge, domain-specific details, or reusable assets would help another Claude instance execute these tasks more effectively.
359
+ The key thing to avoid: don't make should-not-trigger queries obviously irrelevant. "Write a fibonacci function" as a negative test for a PDF skill is too easy it doesn't test anything. The negative cases should be genuinely tricky.
282
360
 
283
- #### Learn Proven Design Patterns
361
+ ### Step 2: Review with user
284
362
 
285
- Consult these helpful guides based on your skill's needs:
363
+ Present the eval set to the user for review using the HTML template:
286
364
 
287
- - **Multi-step processes**: See references/workflows.md for sequential workflows and conditional logic
288
- - **Specific output formats or quality standards**: See references/output-patterns.md for template and example patterns
365
+ 1. Read the template from `assets/eval_review.html`
366
+ 2. Replace the placeholders:
367
+ - `__EVAL_DATA_PLACEHOLDER__` → the JSON array of eval items (no quotes around it — it's a JS variable assignment)
368
+ - `__SKILL_NAME_PLACEHOLDER__` → the skill's name
369
+ - `__SKILL_DESCRIPTION_PLACEHOLDER__` → the skill's current description
370
+ 3. Write to a temp file (e.g., `/tmp/eval_review_<skill-name>.html`) and open it: `open /tmp/eval_review_<skill-name>.html`
371
+ 4. The user can edit queries, toggle should-trigger, add/remove entries, then click "Export Eval Set"
372
+ 5. The file downloads to `~/Downloads/eval_set.json` — check the Downloads folder for the most recent version in case there are multiple (e.g., `eval_set (1).json`)
289
373
 
290
- These files contain established best practices for effective skill design.
374
+ This step matters bad eval queries lead to bad descriptions.
291
375
 
292
- #### Start with Reusable Skill Contents
376
+ ### Step 3: Run the optimization loop
293
377
 
294
- To begin implementation, start with the reusable resources identified above: `scripts/`, `references/`, and `assets/` files. Note that this step may require user input. For example, when implementing a `brand-guidelines` skill, the user may need to provide brand assets or templates to store in `assets/`, or documentation to store in `references/`.
378
+ Tell the user: "This will take some time I'll run the optimization loop in the background and check on it periodically."
295
379
 
296
- Added scripts must be tested by actually running them to ensure there are no bugs and that the output matches what is expected. If there are many similar scripts, only a representative sample needs to be tested to ensure confidence that they all work while balancing time to completion.
380
+ Save the eval set to the workspace, then run in the background:
297
381
 
298
- Any example files and directories not needed for the skill should be deleted. The initialization script creates example files in `scripts/`, `references/`, and `assets/` to demonstrate structure, but most skills won't need all of them.
382
+ ```bash
383
+ python -m scripts.run_loop \
384
+ --eval-set <path-to-trigger-eval.json> \
385
+ --skill-path <path-to-skill> \
386
+ --model <model-id-powering-this-session> \
387
+ --max-iterations 5 \
388
+ --verbose
389
+ ```
299
390
 
300
- #### Update SKILL.md
391
+ Use the model ID from your system prompt (the one powering the current session) so the triggering test matches what the user actually experiences.
301
392
 
302
- **Writing Guidelines:** Always use imperative/infinitive form.
393
+ While it runs, periodically tail the output to give the user updates on which iteration it's on and what the scores look like.
303
394
 
304
- ##### Frontmatter
395
+ This handles the full optimization loop automatically. It splits the eval set into 60% train and 40% held-out test, evaluates the current description (running each query 3 times to get a reliable trigger rate), then calls Claude with extended thinking to propose improvements based on what failed. It re-evaluates each new description on both train and test, iterating up to 5 times. When it's done, it opens an HTML report in the browser showing the results per iteration and returns JSON with `best_description` — selected by test score rather than train score to avoid overfitting.
305
396
 
306
- Write the YAML frontmatter with `name` and `description`:
397
+ ### How skill triggering works
307
398
 
308
- - `name`: The skill name
309
- - `description`: This is the primary triggering mechanism for your skill, and helps Claude understand when to use the skill.
310
- - Include both what the Skill does and specific triggers/contexts for when to use it.
311
- - Include all "when to use" information here - Not in the body. The body is only loaded after triggering, so "When to Use This Skill" sections in the body are not helpful to Claude.
312
- - Example description for a `docx` skill: "Comprehensive document creation, editing, and analysis with support for tracked changes, comments, formatting preservation, and text extraction. Use when Claude needs to work with professional documents (.docx files) for: (1) Creating new documents, (2) Modifying or editing content, (3) Working with tracked changes, (4) Adding comments, or any other document tasks"
399
+ Understanding the triggering mechanism helps design better eval queries. Skills appear in Claude's `available_skills` list with their name + description, and Claude decides whether to consult a skill based on that description. The important thing to know is that Claude only consults skills for tasks it can't easily handle on its own — simple, one-step queries like "read this PDF" may not trigger a skill even if the description matches perfectly, because Claude can handle them directly with basic tools. Complex, multi-step, or specialized queries reliably trigger skills when the description matches.
313
400
 
314
- Do not include any other fields in YAML frontmatter.
401
+ This means your eval queries should be substantive enough that Claude would actually benefit from consulting a skill. Simple queries like "read file X" are poor test cases — they won't trigger skills regardless of description quality.
315
402
 
316
- ##### Body
403
+ ### Step 4: Apply the result
317
404
 
318
- Write instructions for using the skill and its bundled resources.
405
+ Take `best_description` from the JSON output and update the skill's SKILL.md frontmatter. Show the user before/after and report the scores.
406
+
407
+ ---
319
408
 
320
- ### Step 5: Packaging a Skill
409
+ ### Package and Present (only if `present_files` tool is available)
321
410
 
322
- Once development of the skill is complete, it must be packaged into a distributable .skill file that gets shared with the user. The packaging process automatically validates the skill first to ensure it meets all requirements:
411
+ Check whether you have access to the `present_files` tool. If you don't, skip this step. If you do, package the skill and present the .skill file to the user:
323
412
 
324
413
  ```bash
325
- scripts/package_skill.py <path/to/skill-folder>
414
+ python -m scripts.package_skill <path/to/skill-folder>
326
415
  ```
327
416
 
328
- Optional output directory specification:
417
+ After packaging, direct the user to the resulting `.skill` file path so they can install it.
329
418
 
330
- ```bash
331
- scripts/package_skill.py <path/to/skill-folder> ./dist
332
- ```
419
+ ---
420
+
421
+ ## Claude.ai-specific instructions
333
422
 
334
- The packaging script will:
423
+ In Claude.ai, the core workflow is the same (draft → test → review → improve → repeat), but because Claude.ai doesn't have subagents, some mechanics change. Here's what to adapt:
335
424
 
336
- 1. **Validate** the skill automatically, checking:
425
+ **Running test cases**: No subagents means no parallel execution. For each test case, read the skill's SKILL.md, then follow its instructions to accomplish the test prompt yourself. Do them one at a time. This is less rigorous than independent subagents (you wrote the skill and you're also running it, so you have full context), but it's a useful sanity check — and the human review step compensates. Skip the baseline runs — just use the skill to complete the task as requested.
337
426
 
338
- - YAML frontmatter format and required fields
339
- - Skill naming conventions and directory structure
340
- - Description completeness and quality
341
- - File organization and resource references
427
+ **Reviewing results**: If you can't open a browser (e.g., Claude.ai's VM has no display, or you're on a remote server), skip the browser reviewer entirely. Instead, present results directly in the conversation. For each test case, show the prompt and the output. If the output is a file the user needs to see (like a .docx or .xlsx), save it to the filesystem and tell them where it is so they can download and inspect it. Ask for feedback inline: "How does this look? Anything you'd change?"
342
428
 
343
- 2. **Package** the skill if validation passes, creating a .skill file named after the skill (e.g., `my-skill.skill`) that includes all files and maintains the proper directory structure for distribution. The .skill file is a zip file with a .skill extension.
429
+ **Benchmarking**: Skip the quantitative benchmarking it relies on baseline comparisons which aren't meaningful without subagents. Focus on qualitative feedback from the user.
344
430
 
345
- If validation fails, the script will report the errors and exit without creating a package. Fix any validation errors and run the packaging command again.
431
+ **The iteration loop**: Same as before — improve the skill, rerun the test cases, ask for feedback just without the browser reviewer in the middle. You can still organize results into iteration directories on the filesystem if you have one.
432
+
433
+ **Description optimization**: This section requires the `claude` CLI tool (specifically `claude -p`) which is only available in Claude Code. Skip it if you're on Claude.ai.
434
+
435
+ **Blind comparison**: Requires subagents. Skip it.
436
+
437
+ **Packaging**: The `package_skill.py` script works anywhere with Python and a filesystem. On Claude.ai, you can run it and the user can download the resulting `.skill` file.
438
+
439
+ ---
440
+
441
+ ## Cowork-Specific Instructions
442
+
443
+ If you're in Cowork, the main things to know are:
444
+
445
+ - You have subagents, so the main workflow (spawn test cases in parallel, run baselines, grade, etc.) all works. (However, if you run into severe problems with timeouts, it's OK to run the test prompts in series rather than parallel.)
446
+ - You don't have a browser or display, so when generating the eval viewer, use `--static <output_path>` to write a standalone HTML file instead of starting a server. Then proffer a link that the user can click to open the HTML in their browser.
447
+ - For whatever reason, the Cowork setup seems to disincline Claude from generating the eval viewer after running the tests, so just to reiterate: whether you're in Cowork or in Claude Code, after running tests, you should always generate the eval viewer for the human to look at examples before revising the skill yourself and trying to make corrections, using `generate_review.py` (not writing your own boutique html code). Sorry in advance but I'm gonna go all caps here: GENERATE THE EVAL VIEWER *BEFORE* evaluating inputs yourself. You want to get them in front of the human ASAP!
448
+ - Feedback works differently: since there's no running server, the viewer's "Submit All Reviews" button will download `feedback.json` as a file. You can then read it from there (you may have to request access first).
449
+ - Packaging works — `package_skill.py` just needs Python and a filesystem.
450
+ - Description optimization (`run_loop.py` / `run_eval.py`) should work in Cowork just fine since it uses `claude -p` via subprocess, not a browser, but please save it until you've fully finished making the skill and the user agrees it's in good shape.
451
+
452
+ ---
453
+
454
+ ## Reference files
455
+
456
+ The agents/ directory contains instructions for specialized subagents. Read them when you need to spawn the relevant subagent.
457
+
458
+ - `agents/grader.md` — How to evaluate assertions against outputs
459
+ - `agents/comparator.md` — How to do blind A/B comparison between two outputs
460
+ - `agents/analyzer.md` — How to analyze why one version beat another
461
+
462
+ The references/ directory has additional documentation:
463
+ - `references/schemas.md` — JSON structures for evals.json, grading.json, etc.
464
+
465
+ ---
346
466
 
347
- ### Step 6: Iterate
467
+ Repeating one more time the core loop here for emphasis:
348
468
 
349
- After testing the skill, users may request improvements. Often this happens right after using the skill, with fresh context of how the skill performed.
469
+ - Figure out what the skill is about
470
+ - Draft or edit the skill
471
+ - Run claude-with-access-to-the-skill on test prompts
472
+ - With the user, evaluate the outputs:
473
+ - Create benchmark.json and run `eval-viewer/generate_review.py` to help the user review them
474
+ - Run quantitative evals
475
+ - Repeat until you and the user are satisfied
476
+ - Package the final skill and return it to the user.
350
477
 
351
- **Iteration workflow:**
478
+ Please add steps to your TodoList, if you have such a thing, to make sure you don't forget. If you're in Cowork, please specifically put "Create evals JSON and run `eval-viewer/generate_review.py` so human can review test cases" in your TodoList to make sure it happens.
352
479
 
353
- 1. Use the skill on real tasks
354
- 2. Notice struggles or inefficiencies
355
- 3. Identify how SKILL.md or bundled resources should be updated
356
- 4. Implement changes and test again
480
+ Good luck!