Quick Start
Get productive with Claude Commands Library in 5 minutes.
Your First Commands
After installation, try these three commands:
1. Rewrite a vague prompt
bash
/prompt Fix the login bug that shows error on empty passwordClaude will:
- Detect this is a bug fix request
- Check what information is missing (file location, error message, expected behaviour)
- Ask only the questions it cannot answer from memory
- Structure the request into Goal / Context / Scope / Requirements / Expected Result
- Wait for your approval before proceeding
2. Generate a README
bash
/prompt-article-readmeClaude will:
- Scan your project structure,
package.json/.csproj/Dockerfile - Detect your stack and conventions
- Generate a
README.mdmatching what it found — no guessing
3. Research an unfamiliar codebase
bash
/prompt-research Understand how authentication works and identify security risksClaude will:
- Spawn 2–5 specialist agents in parallel (Explore, Pattern, Security, Performance, Citation)
- Run 2–4 iteration cycles, resolving gaps between rounds
- Produce a consolidated report with
file:linecitations
Command Reference
| Command | Use When |
|---|---|
/prompt | Any vague or incomplete task description |
/prompt-article-readme | Generating or updating a README |
/prompt-research | Deep analysis of a codebase you don't know |
Decision Guide
"I want to write a clearer prompt before I ask Claude to do something..."
bash
/prompt Refactor the UserService to use repository pattern"My README is outdated or missing..."
bash
/prompt-article-readme"I'm joining a new project and need to understand how it works..."
bash
/prompt-research Map the architecture and identify the main data flows"I need a security audit before shipping..."
bash
/prompt-research Perform OWASP review of the payment processing moduleTips for Best Results
Be specific:
bash
# Less effective
/prompt Fix the bug
# More effective
/prompt Fix the login bug that returns "undefined" when password is empty in LoginController.csAnswer clarifying questions fully — each question prevents misimplementation. If Claude asks which auth method, saying "JWT" saves a refactor.
For /prompt-research — give a focused goal. "Understand everything" produces shallow results. "Understand the payment flow and identify race conditions" produces deep ones.
What's Next?
- Your First Prompt — detailed walkthrough
- Commands Reference — all three commands explained
- Architecture — how Phase 0 and multi-agent research work
- Best Practices — tips from real use