Scaffold
Ultimate Claude Code configuration — 9 agents, 19 skills, 13 templates. Researched from 850+ repos.
npx -y skills add RhythmMittal19/claude-config --skill scaffoldAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Generate boilerplate for components, pages, hooks, services, or tests matching project conventions.
SKILL.md
1.2 KB, 246 tokens by cl100k_base, as published. Nobody here has run it
Project Context
!basename $(pwd)
!ls src/ 2>/dev/null | head -15
!ls tsconfig.json vite.config.* next.config.* 2>/dev/null
Request
$ARGUMENTS
Scaffold Rules
React Component → src/components/[Name]/
[Name].tsx— Component with typed props interface[Name].test.tsx— Basic test with render and key interactionsindex.ts— Barrel export
Page/Route → src/pages/ or src/app/
- Follow existing routing convention
Custom Hook → src/hooks/
use[Name].ts— Hook with TypeScript return typeuse[Name].test.ts— Test hook behavior
Service → src/services/
[name].service.ts— API calls with typed request/response[name].service.test.ts— Tests with mocked HTTP
API Route → src/routes/ or src/controllers/
- Route handler + input validation + service layer call + error handling
Before creating: check existing patterns. Match the project's style exactly.
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.