The fastest way to supercharge Claude Code with skills, agents, hooks, and boilerplates β installed in one command.
No cloning needed. Add skills and boilerplates directly into your project:
# Add a skill to your project
npx @santoshshelar27/claude-code-starter add skill code-review
npx @santoshshelar27/claude-code-starter add skill debug
npx @santoshshelar27/claude-code-starter add skill git-commit
# Initialize with a boilerplate CLAUDE.md
npx @santoshshelar27/claude-code-starter init angular19
npx @santoshshelar27/claude-code-starter init nodejs-api
# Add a specialized AI agent
npx @santoshshelar27/claude-code-starter add agent db-expert
npx @santoshshelar27/claude-code-starter add agent security-auditor
# Browse everything available
npx @santoshshelar27/claude-code-starter list| Folder | Purpose |
|---|---|
.claude/skills/ |
Reusable Claude Code skills (slash commands) |
.claude/agents/ |
Specialized subagents for focused tasks |
.claude/hooks/ |
Lifecycle automation hooks |
boilerplate/angular19/ |
Angular 19 CLAUDE.md + conventions |
boilerplate/nodejs-api/ |
Node.js/Express/TypeScript CLAUDE.md |
boilerplate/fullstack-angular-node/ |
Full-stack CLAUDE.md combining both |
boilerplate/php-mysql/ |
PHP + MySQL CLAUDE.md |
boilerplate/nextjs/ |
Next.js 15 App Router CLAUDE.md |
packages/cli/ |
The npx @santoshshelar27/claude-code-starter CLI |
| Skill | Trigger phrases | What it does |
|---|---|---|
code-review |
"review", "check code", "PR review" | Checks bugs, security, performance, style |
git-commit |
"commit", "write commit message" | Generates conventional commit messages |
debug |
"debug", "error", "not working" | Diagnoses errors with root cause + fix |
seo-audit |
"seo", "audit", "ranking", "meta tags" | Full on-page + technical SEO audit |
new-feature |
"add feature", "build", "implement" | Plans and scaffolds features end-to-end |
refactor |
"refactor", "clean up", "improve code" | Systematic code improvement |
write-tests |
"write tests", "add tests", "test this" | Generates unit + integration tests |
| Agent | Best for |
|---|---|
db-expert |
MySQL query optimization, Sequelize review, schema design |
security-auditor |
OWASP audits, injection, authentication vulnerabilities |
- Next.js 15 with App Router (RSC)
- TypeScript and Tailwind CSS patterns
- Server vs Client component conventions
- Standard directory structure
- Angular 19 with standalone components
- TypeScript strict mode conventions
- RxJS patterns, signal-based state
- Capacitor Android / Electron targets
- Express + TypeScript + Sequelize
- MySQL database conventions
- REST API structure and error handling
- JWT auth patterns
- Combined conventions for both layers
- Shared types strategy
- Monorepo or separate repo guidance
- PHP project conventions
- MySQL best practices
- REST endpoint structure
# Clone the repo
git clone https://github.com/learn-with-santosh/claude-code-starter.git
# Copy skills into your project
cp -r .claude/skills/ your-project/.claude/skills/
# Copy a boilerplate CLAUDE.md
cp boilerplate/angular19/CLAUDE.md your-project/CLAUDE.mdThis repo is maintained by @learn-with-santosh.
PRs welcome β especially:
- π New skills (e.g.
docker,accessibility,perf-audit) - π New boilerplate stacks (e.g. Next.js, React+Vite, FastAPI)
- π€ New specialized agents
- π New lifecycle hooks
See CONTRIBUTING.md for guidelines.
If this kit saves you time, please star the repo β it helps others find it!
MIT