← ClaudeAtlas

pmcontextlisted

Context for the pmcontext PM-Claude workflow plugin. Use this skill whenever any /pmcontext:* command is invoked, when explaining how the tiers or phase gates work, when the user asks which command to run next, or when helping someone set up or troubleshoot pmcontext. Also load this skill if the user references CONTEXT.md, PROJECT_BRIEF.md, ROADMAP.md, or the PM–Claude Workflow block in their project's CLAUDE.md — those files are all scaffolded by this plugin.
larya-dot-eu/pmcontext-plugin · ★ 2 · AI & Automation · score 75
Install: claude install-skill larya-dot-eu/pmcontext-plugin
## What pmcontext is A PM-Claude workflow plugin that brings structured planning and execution to any codebase. It ships eight slash commands (`/pmcontext:*`) backed by a Supabase database for session tracking and project state. No application code — every command is a Markdown instruction file that Claude reads and executes directly. ## The eight commands | Command | Purpose | |---------|---------| | `/pmcontext:init` | One-time setup: connect Supabase, create tables, write `~/.pmcontext` | | `/pmcontext:start` | Session orientation: scaffold missing files, load project context | | `/pmcontext:quick` | Quick tier: blast-radius check then implement directly, no phases | | `/pmcontext:plan` | Standard/full tier: Phases 1–5 planning → produces a plan file | | `/pmcontext:execute` | Phases 6–9: TDD → implementation → review → living doc update | | `/pmcontext:resume` | Continue the last paused or active session | | `/pmcontext:close` | Write session receipt to Supabase, update pm_state | | `/pmcontext:status` | Quick dashboard: open decisions, active risks, current session | ## Tier system Choose the tier based on blast radius and complexity: - **Quick** (`/pmcontext:quick`) — small, bounded changes. No plan file, no phase gates. Blast-radius check, then implement. - **Standard** (`/pmcontext:plan`, then `/pmcontext:execute`) — most feature work. Phases 1–5 produce a Markdown plan; Phases 6–9 execute it with TDD and review. - **Full** (`/pmcontext:plan --full`, then `/pmc