- 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
37 lines
663 B
Markdown
37 lines
663 B
Markdown
---
|
|
name: cc-cmd-build-fix
|
|
description: Build and Fix
|
|
author: affaan-m
|
|
version: "1.0"
|
|
---
|
|
|
|
# Build and Fix
|
|
|
|
Incrementally fix TypeScript and build errors:
|
|
|
|
1. Run build: npm run build or pnpm build
|
|
|
|
2. Parse error output:
|
|
- Group by file
|
|
- Sort by severity
|
|
|
|
3. For each error:
|
|
- Show error context (5 lines before/after)
|
|
- Explain the issue
|
|
- Propose fix
|
|
- Apply fix
|
|
- Re-run build
|
|
- Verify error resolved
|
|
|
|
4. Stop if:
|
|
- Fix introduces new errors
|
|
- Same error persists after 3 attempts
|
|
- User requests pause
|
|
|
|
5. Show summary:
|
|
- Errors fixed
|
|
- Errors remaining
|
|
- New errors introduced
|
|
|
|
Fix one error at a time for safety!
|