Automated project development - let AI build your project while you sleep.
claude-fsd is an automated development system that runs continuous development cycles without constant supervision. Write a brief description of what you want, answer some clarifying questions, then let it build your project autonomously.
Think of it like Tesla FSD for code - it handles the driving, but you should keep an eye on it and occasionally take the wheel when needed.
The system operates with multiple specialized AI agents working together:
- ๐งโ๐ป Developer Agent: Writes code, implements features, fixes bugs
- ๐ Planner Agent: Breaks down tasks, manages the development roadmap
- ๐ Reviewer Agent: Reviews code quality, catches issues, ensures best practices
- ๐งช Tester Agent: Runs tests, validates changes, commits clean code
The agents work in continuous cycles:
Plan โ Develop โ Review โ Test โ Commit โ Repeat You can leave it running while you grab lunch or sleep - it just keeps going until it thinks the project is complete.
npm install -g claude-fsdclaude-fsdThe system will walk you through the setup process:
- Create a BRIEF.md - Write a short description of what you want to build
- Answer questions - The AI will generate clarifying questions for you to answer
- Let it rip - Start the automated development process
You can run multiple projects in the same repository using the --working-dir parameter:
# Default behavior (uses 'docs' directory) claude-fsd # Custom project directories claude-fsd --working-dir=frontend claude-fsd --working-dir=backend claude-fsd --working-dir=client-app/docsclaude-fsd # Interactive mode (recommended for beginners) claude-fsd dev # Jump straight into development mode claude-fsd interview # Interactive requirements gathering claude-fsd create-plan # Generate development plan from requirements# With custom working directory claude-fsd --working-dir=project1 dev claude-fsd --working-dir=backend interview # claudefsd also works the same way claudefsd # Same as claude-fsdRuns the development agent fleet. This command:
- Reads your project plan from
PLAN.mdin your working directory - Intelligently selects and executes tasks (single agent for complex work, parallel agents for independent tasks)
- Has the code reviewed and tested
- Updates the plan to track progress
- Repeats until all tasks are done
Every 4th cycle, it activates "megathinking mode" using ultrathink for deep architectural planning.
Interactive expert Q&A session that:
- Analyzes your BRIEF.md with multiple AI personas (DBA, Architect, UX Expert, etc.)
- Asks targeted questions to understand requirements
- Saves answers in QUESTIONS.md and consolidated requirements in REQUIREMENTS.md
- Supports resuming interrupted sessions
Generates a comprehensive development plan based on:
- Your project brief (BRIEF.md)
- Interview answers (QUESTIONS.md) or requirements (REQUIREMENTS.md)
- Creates PLAN.md with prioritized tasks and CLAUDE-NOTES.md with architectural analysis
- Uses Claude Sonnet with ultrathink for deep strategic planning
- Write a BRIEF.md - Describe what you want to build in your working directory
- Run the interview - Answer AI-generated questions from domain experts
- Generate the plan - AI creates a comprehensive development roadmap
- Start the development loop - The system automatically:
- Analyzes all open tasks in PLAN.md
- Intelligently executes tasks (sequentially or in parallel)
- Updates the plan to track progress
- Repeats until all tasks are complete or is detected
This isn't sci-fi level "sleep through the entire project" automation - it's more like Tesla FSD. The system handles most of the work, but you should monitor it and be ready to intervene when needed.
Recommended monitoring approach:
- Run a parallel Claude session - Open another Claude window/tab to chat about the project
- Check status periodically - Ask the parallel Claude: "What's the current status of my project?"
- Review the plan - Look at
PLAN.mdin your working directory to see what's been completed - Watch for drift - If the system goes off track, intervene before it gets too far
When you need to course-correct:
- Update the plan - Add urgent fixes or redirections to the top of
PLAN.md - Direct intervention - Use your parallel Claude session to directly fix issues
- The system adapts - claude-fsd will pick up plan changes on the next loop iteration
Interruptible design:
- Hit Ctrl+C anytime to pause
- Restart later with
claude-fsd dev - Perfect for running overnight, during meetings, or while getting lunch
- Node.js >= 14.0.0
- Unix-like environment (macOS, Linux)
- Claude CLI (
claudecommand)
Flexible Structure: Files can be placed in either docs/ (default) or root directory .
- System automatically detects file locations
- Use
docs/for larger projects to keep files organized - Use root
.for smaller projects for simplicity
Default structure (using 'docs' as working directory):
your-project/ โโโ docs/ โ โโโ BRIEF.md # Project overview and requirements โ โโโ PLAN.md # The development plan (tasks with [ ] checkboxes) โ โโโ CLAUDE-NOTES.md # AI architect's analysis and notes โ โโโ QUESTIONS.md # Interview questions and answers โ โโโ REQUIREMENTS.md # Consolidated requirements from interview โ โโโ IDEAS.md # Future ideas and improvements โ โโโ INTERVIEW-SESSION.json # Interview session metadata โโโ logs/ # Logs from each AI session โโโ [your code files] Simple structure (files in root):
your-project/ โโโ BRIEF.md โโโ PLAN.md โโโ CLAUDE-NOTES.md โโโ logs/ โโโ [your code files] With custom working directory:
your-project/ โโโ frontend/ โ โโโ BRIEF.md โ โโโ PLAN.md โ โโโ ... โโโ backend/ โ โโโ BRIEF.md โ โโโ PLAN.md โ โโโ ... โโโ logs/ - Keep your BRIEF.md concise - A few clear paragraphs work better than lengthy specifications
- Answer questions thoroughly - The AI's questions help it understand your exact needs
- Monitor periodically - Check progress while it runs, especially during initial cycles
- Use the plan as your steering wheel - Update
PLAN.mdto guide development direction - Trust the process - Let it run autonomously, but verify the results
- Use --working-dir for multiple projects - Run different projects in parallel by specifying different directories
The system uses Claude Sonnet throughout with strategic ultrathinking for complex work:
Sonnet + Ultrathink: Used for complex architectural work requiring deep thinking
- Requirements consolidation (interview)
- Deep strategic planning (create-plan)
- Megathinking mode (every 4th dev iteration)
Sonnet (Standard): Used for regular development
- Standard development tasks
- Code implementation and reviews
- Most development iterations
- Question generation in interview
MIT