Claude Code plugin for the ECC Agile platform — brings ECC-specific skills, commands, and agents directly into your Claude Code workflow.
# Add the ECC marketplace
claude plugin marketplace add https://github.com/ShunquanWang/cc-plugin
# Install the plugin
claude plugin install cc-plugin@cc-plugin# Clone the repo
git clone https://github.com/ShunquanWang/cc-plugin.git
# Install from local path
claude plugin install cc-plugin@local --plugin-dir ./cc-pluginOr load for a single session only:
claude --plugin-dir ./cc-pluginIf your team hosts a private Claude Code marketplace, add it and install from there:
# Add your team's marketplace (git repo containing marketplace.json)
claude plugin marketplace add https://github.com/your-org/your-marketplace
# Install the plugin from that marketplace
claude plugin install cc-plugin@your-marketplaceTo set up your own marketplace, create a marketplace.json at .claude-plugin/marketplace.json in a git repo:
{
"name": "your-marketplace",
"owner": { "name": "Your Team", "email": "team@example.com" },
"plugins": [
{
"name": "cc-plugin",
"source": "./",
"description": "Claude Code plugin for ECC Agile platform",
"version": "1.10.0"
}
]
}Then push the repo and share the URL with your team.
By default, plugins are installed for the current user. To share with your team via the project repo:
claude plugin install cc-plugin@cc-plugin --scope projectThis writes to .claude/settings.json which can be committed to version control.
| Command | Description |
|---|---|
/analyze-story |
Analyze ECC user stories — outputs AC, task breakdown, technical suggestions, and risks |
/code-review [pr-number|pr-url] |
Security and quality review of local changes or a GitHub PR |
/e2e |
Generate and run Playwright E2E tests for user flows |
- Claude Code CLI installed
ghCLI (for/code-reviewPR mode and GitHub integration)