
Auto Claude
- 118 installs
- 86 repo stars
- Updated July 17, 2026
- travisjneuman/.claude
Helps with ai & agent building tasks during AI-assisted development.
About
auto-claude is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.
- auto-claude
- AI & Agent Building
- AI-coding skill
Auto Claude by the numbers
- 118 all-time installs (skills.sh)
- +3 installs in the week ending Aug 5, 2026 (Skillselion tracking)
- Ranked #3,882 of 16,546 AI & Agent Building skills by installs in the Skillselion catalog
- Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/travisjneuman/.claude --skill auto-claudeAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 118 |
|---|---|
| repo stars | ★ 86 |
| Last updated | July 17, 2026 |
| Repository | travisjneuman/.claude ↗ |
What it does
Helps with ai & agent building tasks during AI-assisted development.
Files
Auto-Claude: Autonomous Coding Framework
Autonomous multi-agent system for complex feature implementation with QA validation.
When to Use
✅ Use Auto-Claude for:
- Complexity 3-4 - Well-defined features, multiple files
- Established codebases with clear patterns
- Repetitive tasks (CRUD, forms, API endpoints, auth flows)
- When you prefer review-at-end vs step-by-step
- Features requiring iterative refinement with QA validation
❌ Don't use Auto-Claude for:
- Complexity 1-2 - Use manual
/start-taskinstead - Complexity 5+ - Use
/gsd:new-projectinstead - Greenfield projects (no existing codebase patterns)
- Exploratory/research tasks (unclear requirements)
- Simple typo fixes or config changes
- Tasks requiring human decision-making during implementation
Quick Guide:
- Complexity 1-2 → Manual implementation
- Complexity 3-4 → Auto-Claude (autonomous)
- Complexity 5+ → GSD (multi-phase)
Core Capabilities
1. Codebase Analysis - Generates semantic baseline 2. Spec Generation - Creates detailed implementation plan 3. Autonomous Implementation - Multi-agent coordination 4. Git Worktree Isolation - Safe development in separate worktree 5. QA Validation - Iterative quality checks 6. Memory System - Graphiti-powered context retention
Workflow
# From project directory:
/auto-claude Add user authentication with JWT tokensWhat Happens:
1. Analyzes project structure → generates baseline 2. Creates implementation spec → stores in ~/.auto-claude/specs/ 3. Creates git worktree → isolated development environment 4. Autonomous agents implement → with QA loops 5. Returns completed code → ready for review
Output Location: ~/.auto-claude/ (gitignored)
Integration with Existing Workflows
Manual Implementation:
/start-task [description] → Claude implements step-by-stepAutonomous Implementation:
/auto-claude [description] → Auto-Claude implements autonomouslyMulti-Phase Projects:
/gsd:new-project → GSD for project managementConfiguration
Location: ~/.auto-claude/.env
Required:
CLAUDE_CODE_OAUTH_TOKEN- Get from/settingsin Claude Code
Optional (Recommended):
GRAPHITI_ENABLED=true- Semantic memoryGOOGLE_API_KEY- For Gemini embeddings (memory feature)- Alternative: Ollama (local) or disable memory
Trade-offs
Strengths:
- Autonomous with minimal oversight
- QA validation ensures quality
- Git worktree prevents main branch disruption
- Memory learns from previous sessions
Limitations:
- Best for established codebases
- Requires clear specifications
- Uses tokens for multi-agent iterations
- Manual merge required after completion
Examples
Good use cases:
- "Add user authentication with JWT tokens and session management"
- "Implement dark mode toggle with localStorage persistence"
- "Refactor API layer to use async/await instead of callbacks"
- "Add pagination to user list with 20 items per page"
- "Create export-to-CSV functionality for reports"
Poor use cases:
- "Fix typo in README" (too simple)
- "Explore best approach for state management" (exploratory)
- "Build entire e-commerce platform" (too large, use GSD)
- "Make the app better" (too vague)
Typical Timeline
- Analysis: 30 seconds
- Spec Generation: 1-2 minutes
- Implementation: 5-15 minutes (depends on complexity)
- QA Validation: 2-5 minutes
- Your Review: 5-10 minutes
Total: 15-30 minutes for most features
Related
generic-feature-developer- Manual implementation patternsdebug-systematic- Systematic debuggingtest-specialist- Testing strategies
Documentation
See ~/.claude/docs/AUTO-CLAUDE-GUIDE.md for:
- Complete setup instructions
- Real-world examples with detailed walkthroughs
- Troubleshooting guide
- Performance tips
- Comparison with other workflows