Claude Conductor - a simple Claude Code framework
# Add to your Claude Code skills
git clone https://github.com/superbasicstudio/claude-conductor[!IMPORTANT]
⚠️ Open Source Project Notice
This is open source software currently maintained by ONE individual in their free time (which isn't much at the moment!)
While the code is tested thoroughly before releases to npm, you should ALWAYS have:
- ✅ A proper GitHub/Git strategy in place
- ✅ Regular backups of your work
- ✅ Version control before running ANY script from the internet
Especially from someone you don't know!
DISCLAIMER: This software is provided "as is" without warranty of any kind. Super Basic Studio and the maintainers of Claude Conductor are not responsible for any issues, data loss, or damages that may occur from using this tool. By using Claude Conductor, you acknowledge that you run it at your own risk and take full responsibility for backing up your code and using proper version control.
Note for Vibe Coders & Open Source Newcomers: This isn't meant to scare you away! These warnings are standard practice in open source. We're just being transparent about responsibilities - like how every tool comes with safety instructions. Follow the backup advice above and you'll be fine!
Create a comprehensive, interconnected scaffolded documentation system that helps Claude Code understand and navigate your codebase more effectively, and retain better context.
No comments yet. Be the first to share your thoughts!
Upgrading from 1.x? Version 2.0.0+ requires Node.js 20 or higher. Node 18 reached end-of-life in April 2025. If you need to stay on Node 18, pin to
claude-conductor@2.1.x.
# Initialize with core templates (recommended)
npx claude-conductor
# Or use the shorthand
npx claude-conduct
# Initialize in a specific directory
npx claude-conductor ./my-project
npx claude-conduct ~/projects/myapp
# Initialize with all 13 documentation templates
npx claude-conductor --full
# Force overwrite existing files
npx claude-conductor --force
# Perform deep codebase analysis (slower but more detailed)
npx claude-conductor --deepscan
# Combine path and options
npx claude-conduct ./docs --full --deepscan
# Run security checkup
npx claude-conductor checkup
npx claude-conduct checkup
npx claude-conduct checkup -p ./src # Check specific directory
Claude Conductor creates a structured documentation framework that:
All core templates plus:
npx claude-conductor
Install globally with your preferred package manager:
# npm
npm install -g claude-conductor
# pnpm
pnpm add -g claude-conductor
# yarn
yarn global add claude-conductor
# bun
bun add -g claude-conductor
Once installed globally, you can run claude-conductor or claude-conduct from anywhere on your computer:
# Run from anywhere - no need to cd into the project first!
claude-conduct /path/to/your/project
claude-conduct ./my-project --full
claude-conduct ~/Documents/myapp --deepscan
# Or navigate to a project and run it there
cd /path/to/your/project
claude-conduct
# Use with optional flags and paths:
claude-conduct ./docs --full # Create all templates in ./docs
claude-conduct ./frontend --deepscan # Deep scan the frontend directory
claude-conduct ../backend --force # Force overwrite in parent's backend folder
npm install --save-dev claude-conductor
Add to package.json:
{
"scripts": {
"docs:init": "claude-conductor"
}
}
All default features plus:
claude-conductor [options] [target-dir]
Options:
-V, --version Output version number
-f, --force Overwrite existing files
--full Create all 13 documentation templates
--deepscan Perform comprehensive codebase analysis
--no-analyze Skip codebase analysis
-h, --help Display help
claude-conductor checkup [options]
claude-conduct checkup [options]
Options:
-p, --path <path> Path to check (defaults to current directory)
-h, --help Display help
The checkup command generates a prompt for Claude Code to perform a security and health checkup of your codebase. It checks for:
Note: This checkup is informational only and will never modify your code.
[!WARNING] ⚠️ EARLY ALPHA FEATURE - USE WITH EXTREME CAUTION
The backup/restore upgrade system is NEW and EXPERIMENTAL. While extensively tested, it has not b