Update all references from old names to new marketplace identity: - support-claude-mktplace → leo-claude-mktplace (URLs) - lm-claude-plugins → leo-claude-mktplace (repo name) - Claude Code Marketplace → Leo Claude Marketplace (display name) Files updated: - Core docs (CLAUDE.md, README.md, CHANGELOG.md) - Documentation (CANONICAL-PATHS, CONFIGURATION, UPDATING, COMMANDS-CHEATSHEET) - Marketplace manifest and all 9 plugin.json files - Plugin READMEs and MCP server READMEs - Setup script and label taxonomy reference Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
72 lines
2.1 KiB
JSON
72 lines
2.1 KiB
JSON
{
|
|
"name": "pr-review",
|
|
"version": "1.0.0",
|
|
"description": "Multi-agent pull request review with confidence scoring and actionable feedback",
|
|
"author": {
|
|
"name": "Leo Miranda",
|
|
"email": "leobmiranda@gmail.com"
|
|
},
|
|
"homepage": "https://gitea.hotserv.cloud/personal-projects/leo-claude-mktplace/src/branch/main/plugins/pr-review/README.md",
|
|
"repository": "https://gitea.hotserv.cloud/personal-projects/leo-claude-mktplace.git",
|
|
"license": "MIT",
|
|
"keywords": [
|
|
"pull-request",
|
|
"code-review",
|
|
"security",
|
|
"performance",
|
|
"multi-agent"
|
|
],
|
|
"commands": [
|
|
{
|
|
"name": "pr-review",
|
|
"description": "Full multi-agent PR review (security, performance, maintainability, tests)",
|
|
"file": "commands/pr-review.md"
|
|
},
|
|
{
|
|
"name": "pr-summary",
|
|
"description": "Quick summary of PR changes without full review",
|
|
"file": "commands/pr-summary.md"
|
|
},
|
|
{
|
|
"name": "pr-findings",
|
|
"description": "List and filter review findings by category or confidence",
|
|
"file": "commands/pr-findings.md"
|
|
}
|
|
],
|
|
"agents": [
|
|
{
|
|
"name": "coordinator",
|
|
"description": "Orchestrates the multi-agent review process",
|
|
"file": "agents/coordinator.md"
|
|
},
|
|
{
|
|
"name": "security-reviewer",
|
|
"description": "Analyzes code for security vulnerabilities",
|
|
"file": "agents/security-reviewer.md"
|
|
},
|
|
{
|
|
"name": "performance-analyst",
|
|
"description": "Identifies performance issues and optimization opportunities",
|
|
"file": "agents/performance-analyst.md"
|
|
},
|
|
{
|
|
"name": "maintainability-auditor",
|
|
"description": "Reviews code quality, patterns, and maintainability",
|
|
"file": "agents/maintainability-auditor.md"
|
|
},
|
|
{
|
|
"name": "test-validator",
|
|
"description": "Validates test coverage and test quality",
|
|
"file": "agents/test-validator.md"
|
|
}
|
|
],
|
|
"skills": [
|
|
{
|
|
"name": "review-patterns",
|
|
"description": "Code review patterns and confidence scoring rules",
|
|
"path": "skills/review-patterns"
|
|
}
|
|
],
|
|
"mcpServers": ["gitea"]
|
|
}
|