Init project
Ultimate Claude Code configuration — 9 agents, 19 skills, 13 templates. Researched from 850+ repos.
npx -y skills add RhythmMittal19/claude-config --skill init-projectAssembled 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
Initialize Claude Code config for any project. Auto-detects stack, generates CLAUDE.md and settings.
SKILL.md
1.1 KB, as published. Nobody here has run it
Detect Project Type
!ls package.json pyproject.toml Cargo.toml go.mod Gemfile composer.json build.gradle pom.xml pubspec.yaml Makefile 2>/dev/null
!cat package.json 2>/dev/null | head -30
!cat pyproject.toml 2>/dev/null | head -20
!ls -la src/ app/ lib/ 2>/dev/null | head -10
!ls tsconfig.json vite.config.* next.config.* nuxt.config.* webpack.config.* 2>/dev/null
!ls .eslintrc* .prettierrc* biome.json ruff.toml 2>/dev/null
!ls Dockerfile docker-compose* 2>/dev/null
Existing Config Check
!cat CLAUDE.md 2>/dev/null | head -5 || echo "No CLAUDE.md found"
!ls .claude/ 2>/dev/null || echo "No .claude/ directory"
Generate based on detected stack:
- CLAUDE.md (<150 lines): project name, architecture, commands, conventions
- .claude/settings.json: project-specific permissions
- .claudeignore: exclude node_modules, dist, build, .next, coverage, pycache, .venv, target
Ask me before writing any files. Show plan first.