npx claudepluginhub urso/claudev --plugin bmadThis skill uses the workspace's default tool permissions.
**Goal:** Set up BMAD Method structure in the current project.
Searches, retrieves, and installs Agent Skills from prompts.chat registry using MCP tools like search_skills and get_skill. Activates for finding skills, browsing catalogs, or extending Claude.
Searches prompts.chat for AI prompt templates by keyword or category, retrieves by ID with variable handling, and improves prompts via AI. Use for discovering or enhancing prompts.
Guides MCP server integration in Claude Code plugins via .mcp.json or plugin.json configs for stdio, SSE, HTTP types, enabling external services as tools.
Goal: Set up BMAD Method structure in the current project.
Create directory structure:
bmad/
├── config.yaml # Project configuration
└── agent-overrides/ # Optional agent customizations
planning-artifacts/
├── workflow-status.yaml # Workflow progress tracking
└── (generated docs)
implementation-artifacts/
└── stories/ # Story files during implementation
Collect project information:
Create project config (bmad/config.yaml):
project_name: { collected }
project_type: { collected }
project_level: { collected }
user_name: { from system or ask }
user_skill_level: intermediate
communication_language: English
document_output_language: English
planning_artifacts: ./planning-artifacts
implementation_artifacts: ./implementation-artifacts
project_knowledge: ./docs
Create workflow status (planning-artifacts/workflow-status.yaml):
project: { project_name }
level: { project_level }
last_updated: { timestamp }
phases:
analysis:
product-brief: not-started
research: not-started
planning:
prd: { required if level >= 2, else optional }
tech-spec: { required if level <= 1, else optional }
ux-design: optional
solutioning:
architecture: { required if level >= 2, else optional }
epics-stories: not-started
implementation:
sprint-planning: not-started
current-sprint: null
Confirm initialization:
✓ BMAD Method initialized!
Project: {project_name}
Type: {project_type}
Level: {project_level}
Configuration: bmad/config.yaml
Status tracking: planning-artifacts/workflow-status.yaml
Recommended next step: {based on level}
Recommend next workflow based on project level:
/bmad:product-brief or /bmad:quick-spec/bmad:product-brief → /bmad:create-prd/bmad:init
The command will interactively guide you through project setup.