- Add 9 agent skills (cc-agent-*) - Add 10 command skills (cc-cmd-*) - Add 8 skill files (cc-skill-*) - Add 8 rule skills (cc-rule-*) - Update README.md skill count from 225 to 260 - Add new skills to Full Skill Registry - Add credit to affaan-m in Credits section - Regenerate skills_index.json Source: https://github.com/affaan-m/everything-claude-code Author attribution: affaan-m, version 1.0
663 B
663 B
name, description, author, version
| name | description | author | version |
|---|---|---|---|
| cc-cmd-build-fix | Build and Fix | affaan-m | 1.0 |
Build and Fix
Incrementally fix TypeScript and build errors:
-
Run build: npm run build or pnpm build
-
Parse error output:
- Group by file
- Sort by severity
-
For each error:
- Show error context (5 lines before/after)
- Explain the issue
- Propose fix
- Apply fix
- Re-run build
- Verify error resolved
-
Stop if:
- Fix introduces new errors
- Same error persists after 3 attempts
- User requests pause
-
Show summary:
- Errors fixed
- Errors remaining
- New errors introduced
Fix one error at a time for safety!