Quality Scores
Strengths
Shipping Velocity
6 releases in 3 days, CC 2.1.80 adopted same day
6 releases in 3 days, CC 2.1.80 adopted same day
Security
11/11 test suites, zero tolerance policy
11/11 test suites, zero tolerance policy
Build Automation
Version sync, changelog parser, spotlights generation
Version sync, changelog parser, spotlights generation
CC Compatibility
Tracking latest CC within hours of release
Tracking latest CC within hours of release
Weaknesses
Eval Pipeline
55-60% complete, blocks quality feedback loop
55-60% complete, blocks quality feedback loop
Docs Site Bugs
Build overwrites keep recurring (spotlights, changelog)
Build overwrites keep recurring (spotlights, changelog)
Video Content
M76 at 11% — demos barely started
M76 at 11% — demos barely started
SEO Phase 3
0% — programmatic pages not started
0% — programmatic pages not started
Milestone Progress
Top 3 Priorities (non-video)
PRIORITY 1 — Recommended Start
Version Management Triple
M73 · #1018, #1019, #1020 · Pure frontmatter + tests
Add three new frontmatter fields to give skills a proper lifecycle:
#1018
#1019
#1020
#1018
deprecated + superseded_by — sunset old skills gracefully#1019
depends_on — machine-readable skill dependencies#1020
targets — library version ranges with mismatch warnings
- Step 1: #1018 deprecated/superseded_by (~1h)Add fields to CONTRIBUTING-SKILLS.md, add warning test
- Step 2: #1019 depends_on (~2h)Add field, populate ~15 skills, validate deps exist in manifest
- Step 3: #1020 targets (~2h)Add field, populate ~20 skills, hook reads package.json
PRIORITY 2 — Closes Milestone
Skill Amendment Layer
M85 · #1016 · Last issue! (31/32 = 97% done)
Let teams customize skills without forking. A
.claude/skill-amendments/ directory where override files layer on top of skills via UserPromptSubmit hook injection.
- New hook: skill-amendment.ts (~80 LOC)UserPromptSubmit hook, reads .claude/skill-amendments/<name>.md
- Register in unified-dispatcherAdd to prompt hook registry, once-per-skill-invocation
- Update CONTRIBUTING-SKILLS.mdDocument amendment pattern for users
- Tests (unit + integration)Mock file read, verify injection, test missing file gracefully
PRIORITY 3 — Unblocks Pipeline
Unified Eval Command
M92 · #1045 · Deps #1042, #1043 both CLOSED
npm run eval:skill -- commit — thin wrapper around trigger + quality runners. Unblocks description optimization (#1044), CI gate (#1046), and cost tracking (#1050).
- Create eval:skill scriptBash wrapper calling trigger + quality runners sequentially
- Add --trigger-only / --quality-only flagsAllow running subsets for faster iteration
- Add --all flag for full suiteRun across all 93 skills (batch mode)
- JSON output for CI consumptionResults file for downstream #1046 CI gate
Issue Dependency Graph
Eval Pipeline Chain
#1042 Trigger Runner
→
#1045 Unified eval:skill
→
#1044 Desc Optimization
#1043 Quality Runner ↗ → #1046 CI Gate
→ #1050 Cost Tracking
#1043 Quality Runner ↗ → #1046 CI Gate
→ #1050 Cost Tracking
done
ready
blocked
Version Management (Independent — No Dependencies)
#1018 deprecated
|
#1019 depends_on
|
#1020 targets
All three are independent — can be done in any order or parallel
Skill Amendment Layer (Standalone)
#1016 Amendment Hook
→
(future: amendment marketplace)
No dependencies — can start immediately
Skill Dependency Graph (#1019 enables)
implement ───► scope-appropriate-architecture
├──────► chain-patterns
└──────► verify ───► quality-gates
brainstorm ──► chain-patterns
└──────► assess ───► quality-gates
review-pr ──► code-review-playbook
└──────► security-patterns
├──────► chain-patterns
└──────► verify ───► quality-gates
brainstorm ──► chain-patterns
└──────► assess ───► quality-gates
review-pr ──► code-review-playbook
└──────► security-patterns
Execution Plan
Session 1
Version Management
#1018, #1019, #1020
Frontmatter + tests only
~4 hours
~4 hours
Closes M73 (3 issues)
Session 2
Skill Amendments
#1016
Hook + tests
~4 hours
~4 hours
Closes M85! (milestone)
Session 3
Eval Pipeline
#1045
Script + integration
~3 hours
~3 hours
Unblocks #1044, #1046, #1050
Impact After 3 Sessions
5
Issues Closed
2
Milestones Done
3
Issues Unblocked
25
Issues Remaining
Before → After
BEFORE (now)
Open issues: 30
M85 Context & Perf: 97% (1 open)
M73 Version Mgmt: 80% (3 open)
M92 Eval Pipeline: 55% (5 open)
Composite: 7.9/10 (B+)
M85 Context & Perf: 97% (1 open)
M73 Version Mgmt: 80% (3 open)
M92 Eval Pipeline: 55% (5 open)
Composite: 7.9/10 (B+)
AFTER (3 sessions)
Open issues: 25 (-5)
M85 Context & Perf: 100% CLOSED
M73 Version Mgmt: 100% CLOSED
M92 Eval Pipeline: 64% (+9%)
Composite: 8.3/10 (A-)
M85 Context & Perf: 100% CLOSED
M73 Version Mgmt: 100% CLOSED
M92 Eval Pipeline: 64% (+9%)
Composite: 8.3/10 (A-)
New Frontmatter Fields Preview
#1018: Deprecation Annotations
---
name: old-testing-patterns
deprecated: true
superseded_by: testing-unit
---
name: old-testing-patterns
deprecated: true
superseded_by: testing-unit
---
#1019: Dependency Graph
---
name: implement
depends_on:
- scope-appropriate-architecture
- chain-patterns
- verify
---
name: implement
depends_on:
- scope-appropriate-architecture
- chain-patterns
- verify
---
#1020: Version Ranges
---
name: react-server-components-framework
targets:
- library: next.js
version: ">=14.0.0"
- library: react
version: ">=18.0.0"
---
name: react-server-components-framework
targets:
- library: next.js
version: ">=14.0.0"
- library: react
version: ">=18.0.0"
---
#1016: Amendment File
# .claude/skill-amendments/implement.amendment.md
## Additional Requirements
- Always verify PCI DSS compliance for payment code
- Check for PII exposure in logs
- Require encryption at rest for sensitive data
- Run npm audit before committing dependencies
## Additional Requirements
- Always verify PCI DSS compliance for payment code
- Check for PII exposure in logs
- Require encryption at rest for sensitive data
- Run npm audit before committing dependencies