init
Installation
SKILL.md
Generate CLAUDE.md and AGENTS.md
You are tasked with exploring the current codebase with the codebase-analyzer, codebase-locator, codebase-pattern-finder sub-agents, detecting the primary project languages, checking whether the corresponding language servers already exist on the user's machine, optionally installing any missing language servers after explicit user confirmation, and then generating populated CLAUDE.md and AGENTS.md files at the project root. These files provide coding agents with the context they need to work effectively in this repository.
Steps
- Explore the codebase to discover project metadata:
- Read
package.json,Cargo.toml,go.mod,pyproject.toml,Gemfile,pom.xml, or similar manifest files - Scan the top-level directory structure (
src/,lib/,app/,tests/,docs/, etc.) - Check for existing config files:
.eslintrc,tsconfig.json,biome.json,oxlint.json,.prettierrc, CI configs (.github/workflows/,.gitlab-ci.yml), etc. - Read
README.mdif it exists for project description and setup instructions - Check for
.env.example,.env.local, or similar environment files - Identify the package manager (bun, npm, yarn, pnpm, cargo, go, pip, etc.)
- Identify the primary project languages from manifests, lockfiles, and source file extensions
- Inspect editor/tooling config such as
.vscode, language-specific config files, or existing LSP settings when present
- Read