← ClaudeAtlas

forgelisted

Project onboarding and CLAUDE.md generation. Use when: starting work on a new codebase, setting up a project for the first time, creating or updating a project CLAUDE.md, generating module summaries, or when opening a project with no CLAUDE.md file. Forges a complete project knowledge base so Claude understands the codebase from day one.
jord0-cmd/jord0.skills · ★ 0 · AI & Automation · score 73
Install: claude install-skill jord0-cmd/jord0.skills
# FORGE **Onboard any project. Generate a CLAUDE.md. Make Claude understand your codebase.** --- ## Usage ``` /forge - Forge the current project (auto-detect) /forge <path> - Forge a specific project directory /forge update - Update an existing project's CLAUDE.md /forge check - Verify project knowledge completeness ``` --- ## What FORGE Does FORGE performs a deep scan of a codebase and generates a comprehensive `CLAUDE.md` file that gives Claude full context about the project. It's the difference between Claude guessing at your architecture and Claude *knowing* it. ### The Forging Process 1. **Detect project type** — language, framework, build tools, package manager 2. **Scan directory structure** — map the project layout, identify key directories 3. **Read configuration files** — `package.json`, `pyproject.toml`, `Cargo.toml`, `tsconfig.json`, etc. 4. **Analyze entry points** — find main files, API routes, CLI entry points 5. **Map dependencies** — external packages, internal module relationships 6. **Identify patterns** — architecture style (MVC, hexagonal, etc.), testing approach, CI/CD 7. **Generate CLAUDE.md** — structured project context file ### What Gets Generated ```markdown # Project Name ## Overview Brief description, purpose, key technologies. ## Architecture Directory structure, key patterns, data flow. ## Key Files Entry points, configuration, critical modules. ## Development How to install, run, te