$ recombobulate _
home / tips / run-init-to-bootstrap-your-claudemd-automatically
1

Run /init to Bootstrap Your CLAUDE.md Automatically

bagwaa @bagwaa · Mar 25, 2026 · Configuration
run-init-to-bootstrap-your-claudemd-automatically

Writing a CLAUDE.md from scratch is tedious. Let Claude do it for you.

claude /init

This command scans your entire codebase — the framework, folder structure, test setup, linting rules — and generates a tailored CLAUDE.md that captures how your project actually works.

The generated file typically includes:

  • Build and test commands (npm run test, cargo build, etc.)
  • Project structure and key directories
  • Code style conventions it detected
  • Common patterns and architecture notes

You can (and should) edit the result afterward. Think of /init as a first draft — it gets you 80% of the way there in seconds, then you fine-tune with your own preferences.

# CLAUDE.md (generated, then tweaked)

## Build
npm run build

## Test
npm run test -- --watch

## Style
- Use TypeScript strict mode
- Prefer named exports
- Components go in src/components/

A 30-second /init followed by 5 minutes of tweaking beats writing it from scratch every time.

The best CLAUDE.md is the one that actually exists — /init removes the excuse not to have one.

~/recombobulate $ tip --comments --count=0

Log in to leave a comment.

~/recombobulate $ tip --related --limit=3
0
Switch to the Stable Update Channel with autoUpdatesChannel

The autoUpdatesChannel setting pins Claude Code to a stable release track that skips versions with major regressions.

bagwaa @bagwaa · 1 hour ago
0
Set Claude's Response Language with the language Setting

The language setting makes Claude respond in your preferred language by default, across every session and project.

bagwaa @bagwaa · 1 hour ago
0
Customize or Remove Claude's Git Attribution with the attribution Setting

The attribution setting lets you customize or completely remove Claude's Co-Authored-By trailer from git commits and pull requests.

bagwaa @bagwaa · 1 hour ago