Quick Start
Install and start using Mannay Claude Code in 5 minutes.
Installation
Step 1: Add the marketplace
/plugin marketplace add MannayWorld/mannay-claude-code
Step 2: Install the plugin
/plugin install mannay-claude-code
Verify Installation
/plugin list
# Should show: mannay-claude-code
Updating
Third-party plugins don’t auto-update. To get the latest version:
cd ~/.claude/plugins/marketplaces/mannay-claude-code && git pull
Then restart Claude Code to load the new version.
Check current version in the docs sidebar or run /plugin list.
What You Get
13 Skills (Workflows)
| Skill | Purpose |
|---|---|
test-driven-development |
RED-GREEN-REFACTOR (mandatory for code) |
systematic-debugging |
4-phase root cause analysis |
brainstorming |
Design exploration |
git |
Conventional commits |
task-analysis |
Task breakdown |
feature-planning |
Technical specs |
prd-builder |
Ralph PRD creation |
ralph-mode |
Autonomous execution |
writing-plans |
Implementation plans |
executing-plans |
Plan execution |
requesting-code-review |
Code review workflow |
api-testing |
API test generation |
frontend-design |
Distinctive UI creation |
15 Agents (Specialists)
Architecture: tech-stack-researcher, system-architect, backend-architect, frontend-architect, api-designer, requirements-analyst
Quality: code-reviewer, typescript-pro, accessibility-specialist, refactoring-expert, performance-engineer, security-engineer
Documentation: technical-writer, learning-guide, deep-research-agent
20+ Commands
API: /api-new, /api-backend-setup, /api-test, /api-protect
UI: /component-new, /page-new, /page-new-react
Supabase: /types-gen, /edge-function-new
Quality: /lint, /code-cleanup, /code-optimize, /code-explain
Planning: /new-task, /feature-plan, /docs-generate
Ralph: /ralph-init, /ralph-build, /ralph-start, /ralph-status, /ralph-stop
Codex: /gpt-review, /gpt-status, /gpt-results
Memory: /memory-status, /memory-learnings
Try It Out
Example 1: Create a Component
You: Create a UserCard component with avatar and name
Mannay will:
- Activate
brainstorming→ explore design - Activate
frontend-design→ distinctive UI - Invoke
accessibility-specialist→ WCAG compliance - Activate
TDD→ write tests first - Create the component
- Activate
git→ conventional commit
Example 2: Fix a Bug
You: The login is broken, users can't sign in
Mannay will:
- Activate
systematic-debugging→ find root cause - Invoke
security-engineer→ check for security issues - Invoke
backend-architect→ review auth flow - Activate
TDD→ write regression test - Fix the bug
- Activate
git→ commit the fix
Example 3: Quick Scaffold
You: /api-new POST /api/users create user endpoint
Immediately scaffolds:
- API route with validation
- TypeScript types
- Error handling
- Test file
Next Steps
- Getting Started - Full explanation
- Skills Reference - All skills
- Commands Reference - All commands