npx skills add ansarullahanasz360/cc-guideREADME
Claude Code Guide
"Everything's coming up Milhouse!"
Skills and guides for autonomous AI-assisted development with Claude Code and Ralph loops.
What Is This?
You've seen the demos. People shipping entire products overnight. Loops running for hours. Features appearing while they slept.
And you've thought: "Why can't I do that?"
This repository is for you. The developer who feels one step behind. The founder with ideas but no time. The team where only one person "gets" AI.
Four skills that make the complicated stuff simple:
/prd— Create PRDs through conversation, not writing/ralph-preflight— Validate everything before starting a Ralph loop/setup-claude— Configure your repo optimally without reading 100 docs/agent-browser— Browser automation for verifying UI actually works
Plus guides on how to actually use Claude Code productively.
Quick Start
Add Skills to Your Project
# Add all skills (recommended)
npx @ansarullahanas/cc-guide add-skill --all
# Or add individually
npx @ansarullahanas/cc-guide add-skill prd
npx @ansarullahanas/cc-guide add-skill ralph-preflight
npx @ansarullahanas/cc-guide add-skill setup-claude
npx @ansarullahanas/cc-guide add-skill agent-browser
Via skills.sh:
npx skills add AnsarUllahAnasZ360/cc-guide
Use the Skills
In Claude Code:
/prd # Create a PRD for a new feature
/ralph-preflight # Validate config before starting Ralph loop
/setup-claude init # Set up a new repository
/setup-claude audit # Audit an existing repository
/agent-browser # Browser automation help
The Big Idea
Traditional: You code, AI helps, you iterate forever.
This way: You define the work, AI executes, you review.
Traditional: Ralph Loop:
Human → AI → Human Human → PRD → AI Loop → Human Review
↑ ↓ ↓ ↓
└──────┘ (autonomous) (complete)
The quality of your PRD determines the quality of your output.
Why "Milhouse"?
In the world of AI-assisted development:
Ralph Wiggum is the AI — Confused, making mistakes, but never stopping. The AI is Ralph.
Milhouse is the human — Trying hard, a little confused, hoping this time it works.
This repository helps Milhouse win. Not by making you a prompt engineer, but by giving you skills that ask the right questions and make the right decisions.
Read the full story: What Is Milhouse?
What You Need
| Tool | Install | Why |
|---|---|---|
| Claude Code | claude.ai/claude-code | Core CLI |
| GitHub CLI | brew install gh | Git operations |
| tmux | brew install tmux | Persistent sessions |
| Ralph TUI | npm install -g ralph-tui | Task orchestration |
| Agent Browser | npm install -g agent-browser | Browser automation |
Guides
Start here:
| Guide | What You'll Learn |
|---|---|
| What Is Milhouse? | The philosophy behind this repo |
| My Claude Workflow | How I actually use Claude Code daily |
| Ralph Loops Explained | Running autonomous development loops |
| Best Practices | Lessons learned the hard way |
Skills
PRD Skill (/prd)
Creates self-verifying PRDs through an interview process:
- Identifies what type of task you're doing
- Extracts everything you know via brain dump
- Asks clarifying questions
- Confirms understanding
- Generates
PRD.mdandprd.json
The output is a PRD that Ralph TUI can execute autonomously.
You don't write PRDs. You answer questions.
Ralph Pre-Flight Skill (/ralph-preflight)
Run this after /prd and before starting a Ralph loop:
- Detects global CLAUDE.md conflicts (can override local config)
- Checks for existing Ralph state from previous runs
- Validates config.toml and template paths
- Verifies prd.json structure and template variable mapping
- Offers branch vs worktree setup options
- Provides ready-to-copy tmux and Ralph launch commands
Catches configuration issues before they waste iterations.
Setup Claude Skill (/setup-claude)
Two modes:
Init — For new repositories:
- Environment & tools check
- CLI discovery & authentication
- MCP configuration (context-window aware)
- Skills, subagents, rules, hooks setup
- CLAUDE.md generation
- Ralph TUI configuration
Audit — For existing repositories:
- Environment analysis
- Gap analysis
- Recommendations with interactive fixes
- Context window optimization
Agent Browser Skill (/agent-browser)
Headless browser automation for AI agents:
- Navigate, click, fill forms
- Take screenshots and snapshots
- E2E testing workflows
- Web scraping
Essential for verifying that UI actually works, not just that Claude s
...