소스 정보
- 저장소
- bobmatnyc/claude-mpm
- 최근 소스 활동
- 2026년 7월 1일 16:35
- 감지된 SKILL.md 언어
- 영어
- 스타
- 149
- 포크
- 33
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/bobmatnyc/claude-mpm --skill mpm-workflow명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | mpm-workflow |
| version | 1.0.2 |
| description | Manage and customize MPM workflow configurations with local overrides |
| when_to_use | workflow customization, phase configuration, verification gates, agent routing |
| category | pm-configuration |
| tags | ["workflow","configuration","customization","phases","verification"] |
| effort | medium |
The MPM workflow system supports customizable workflow configurations with a priority-based override system. This allows projects to customize the standard 5-phase workflow while maintaining sensible defaults.
Workflow files are loaded with the following priority (highest to lowest):
.claude-mpm/WORKFLOW.md - Project-specific customizations~/.claude-mpm/WORKFLOW.md - User preferences across all projectsThese are skill-driven actions, not claude-mpm workflow CLI subcommands -- there is no such CLI surface. When this skill is invoked (e.g. via /mpm-workflow status), Claude itself reads, writes, or validates the WORKFLOW.md files directly, following the priority order above (project -> user -> system default).
statusWhen invoked with status, Claude reports the current workflow configuration and its source. Example of what Claude reports back:
Workflow Configuration Status:
Source: project (.claude-mpm/WORKFLOW.md)
Phases: 5
Verification Gates: Enabled
Custom Overrides: Phase 2 (Code Analysis) skipped
initWhen invoked with init, Claude creates a local workflow configuration file:
/mpm-workflow init -- Claude creates .claude-mpm/WORKFLOW.md with defaults/mpm-workflow init --minimal -- Claude creates it with a minimal templateresetWhen invoked with reset, Claude removes the local override so the system default takes effect:
/mpm-workflow reset -- Claude removes the local override, falling back to the system defaultvalidateWhen invoked with validate, Claude checks the current workflow configuration for completeness and reports findings. Example of what Claude reports back:
Validating workflow configuration...
[OK] Phase definitions complete
[OK] Verification gates defined
[OK] Agent routing valid
[WARN] Custom phase 6 defined - ensure agent exists
# PM Workflow Configuration
## Mandatory Phase Sequence
### Phase 1: Research (ALWAYS FIRST)
**Agent**: Research
**Output**: Requirements, constraints, success criteria
**Template**: ...
### Phase 2: Code Analysis Review
**Agent**: Code Analysis
**Output**: APPROVED/NEEDS_IMPROVEMENT/BLOCKED
**Decision**: ...
### Phase 3: Implementation
**Agent**: Selected via delegation matrix
**Requirements**: Complete code, error handling, tests
### Phase 4: QA (MANDATORY)
**Agent**: qa/api-qa/web-qa
**Requirements**: Real-world testing with evidence
### Phase 5: Documentation
**Agent**: Documentation
**When**: Code changes made
## Verification Gates
| Phase | Verification Required | Evidence Format |
|-------|----------------------|-----------------|
| ... | ... | ... |
## Override Commands
- "Skip workflow" - bypass sequence
- "Go directly to [phase]" - jump to phase
### Phase 2: Code Analysis Review
**Agent**: Code Analysis
**Status**: OPTIONAL
**Skip When**: Small fixes, documentation only
### Phase 6: Security Scan (Custom)
**Agent**: Security
**When**: Changes to auth, API, or data handling
**Output**: Security report
## Verification Gates
| Phase | Verification Required | Evidence Format |
|-------|----------------------|-----------------|
| Implementation | Tests pass + Coverage > 80% | pytest output with coverage |
The workflow loader automatically injects workflow configuration into PM instructions:
workflow_instructions content field/mpm-workflow validate after changes.claude-mpm/WORKFLOW.md with your projectls -la .claude-mpm/WORKFLOW.md/mpm-workflow validate/mpm-workflow statusInvoke this skill with /mpm-workflow reset and Claude will remove the local override directly.