Plugin marketplace hosting two variants of the prd-pr dev-workflow plugin.
| Plugin name | For | Agent format |
|---|---|---|
prd-pr |
Claude Code | agents/*.md, frontmatter uses tools: Read, Edit, ... |
prd-pr-copilot |
Copilot CLI | agents/*.agent.md, frontmatter uses tools: ['read', 'edit', ...] |
Both run the same orchestrator-driven flow — discovery → codebase exploration → clarifying questions → architecture → plan docs → review → slice-by-slice implementation → PR. The Claude variant adds a Phase 9 end-to-end test-plan walkthrough (agent-browser screenshots embedded in the PR body); the Copilot variant ships without it.
The marketplace is defined in .claude-plugin/marketplace.json at the repo root.
Before installing either plugin, make sure your machine has:
- Azure CLI signed in to your ADO organisation — required for ADO ticket lookups and task creation in the workflow.
az login az account show # verify the right tenant/subscription az devops configure --defaults organization=https://dev.azure.com/<your-org> project=<your-project>
- Git — required by the
git-worktreesandraise-prskills. Confirm withgit --version; ensureuser.nameanduser.emailare set (git config --global --list).
Run inside a Claude Code session (slash commands):
# 1. Register the marketplace (one-time)
/plugin marketplace add wei6bin/skills
# 2. Install the plugin
/plugin install prd-pr@skills
# 3. Refresh discovery after edits (no restart needed)
/reload-plugins
# Browse / verify / manage
/plugin # picker, "Installed" tab
/plugin marketplace list
/plugin disable prd-pr@skills
/plugin enable prd-pr@skills
/plugin uninstall prd-pr@skills
Plugin contents land at ~/.claude/plugins/cache/skills/prd-pr/.
After editing the plugin source, refresh with /reload-plugins.
Run inside a Copilot CLI session:
# 1. Register the marketplace (one-time)
/plugin marketplace add wei6bin/skills
# 2. Install the plugin
/plugin install prd-pr-copilot@skills
The orchestrator skill is the entry point — kick off a feature with a user story or ADO ticket URL and it will drive the 9-phase flow, dispatching the .agent.md subagents as needed.