Skip to content

Commit 32bffad

Browse files
committed
docs: add skill review guidance to CLAUDE.md
1 parent 147bb73 commit 32bffad

1 file changed

Lines changed: 18 additions & 0 deletions

File tree

CLAUDE.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,3 +68,21 @@ will not match CI. Use it only for local-only experimentation.
6868
## Skills
6969

7070
Composition authoring (not repo development) is guided by skills installed via `npx skills add heygen-com/hyperframes`. See `skills/` for source. Invoke `/hyperframes`, `/hyperframes-cli`, `/hyperframes-registry`, or `/gsap` when authoring compositions. When a user provides a website URL and wants a video, invoke `/website-to-hyperframes` — it runs the full 7-step capture-to-video pipeline.
71+
72+
### Reviewing skill changes
73+
74+
When reviewing a changeset that touches `skills/`, review as an agent-instruction
75+
designer who has shipped many skills and watched agents fail on each one. Focus on:
76+
77+
- **Where will agents misinterpret?** Ambiguous vocabulary, instructions that assume
78+
context the agent won't have 200 lines later, field names that don't match across
79+
files (e.g., a picker emits "Canvas" but an eval checks for "bg").
80+
- **Where will agents silently skip?** Soft suggestions agents will deprioritize,
81+
gates that lack enforcement, steps with no verification that they ran.
82+
- **Where will agents produce wrong output on first attempt?** Missing examples
83+
(agents need to see the shape, not just read the rules), under-specified formats,
84+
instructions that require multi-step reasoning to combine.
85+
86+
Assume the agent reads the full SKILL.md before authoring and has no memory
87+
between compositions. Consider: will this instruction survive in a 300+ line
88+
file? Will the agent connect Step 0's context to a quality check 250 lines later?

0 commit comments

Comments
 (0)