From c344a2f544107f40ebc33d290643263fa228365d Mon Sep 17 00:00:00 2001 From: "swe-agent[bot]" <0+swe-agent[bot]@users.noreply.github.com> Date: Sat, 18 Oct 2025 01:58:23 +0000 Subject: [PATCH 1/3] Fix #10: Restructure plugin directories to ensure proper command isolation MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Create separate directories for each plugin (requirements-driven-workflow/, bmad-agile-workflow/, development-essentials/, advanced-ai-agents/) - Update marketplace.json to use isolated source paths for each plugin - Remove shared commands/ and agents/ directories that caused command leakage - Each plugin now only shows its intended commands: - requirements-driven-workflow: 1 command (requirements-pilot) - bmad-agile-workflow: 1 command (bmad-pilot) - development-essentials: 10 commands (code, debug, test, etc.) - advanced-ai-agents: 0 commands (agents only) 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- .claude-plugin/marketplace.json | 8 +-- advanced-ai-agents/.claude-plugin/plugin.json | 26 ++++++++++ {agents => advanced-ai-agents/agents}/gpt5.md | 0 agents/bmad-review-codex | 51 ------------------- .../.claude-plugin/plugin.json | 37 ++++++++++++++ .../agents}/bmad-architect.md | 0 .../agents}/bmad-dev.md | 0 .../agents}/bmad-orchestrator.md | 0 .../agents}/bmad-po.md | 0 .../agents}/bmad-qa.md | 0 .../agents}/bmad-review.md | 0 .../agents}/bmad-sm.md | 0 .../commands}/bmad-pilot.md | 0 .../.claude-plugin/plugin.json | 44 ++++++++++++++++ .../agents}/bugfix-verify.md | 0 .../agents}/bugfix.md | 0 .../agents}/code.md | 0 .../agents}/debug.md | 0 .../agents}/optimize.md | 0 .../commands}/ask.md | 0 .../commands}/bugfix.md | 0 .../commands}/code.md | 0 .../commands}/debug.md | 0 .../commands}/docs.md | 0 .../commands}/optimize.md | 0 .../commands}/refactor.md | 0 .../commands}/review.md | 0 .../commands}/test.md | 0 .../commands}/think.md | 0 .../.claude-plugin/plugin.json | 33 ++++++++++++ .../agents}/requirements-code.md | 0 .../agents}/requirements-generate.md | 0 .../agents}/requirements-review.md | 0 .../agents}/requirements-testing.md | 0 .../commands}/requirements-pilot.md | 0 35 files changed, 144 insertions(+), 55 deletions(-) create mode 100644 advanced-ai-agents/.claude-plugin/plugin.json rename {agents => advanced-ai-agents/agents}/gpt5.md (100%) delete mode 100644 agents/bmad-review-codex create mode 100644 bmad-agile-workflow/.claude-plugin/plugin.json rename {agents => bmad-agile-workflow/agents}/bmad-architect.md (100%) rename {agents => bmad-agile-workflow/agents}/bmad-dev.md (100%) rename {agents => bmad-agile-workflow/agents}/bmad-orchestrator.md (100%) rename {agents => bmad-agile-workflow/agents}/bmad-po.md (100%) rename {agents => bmad-agile-workflow/agents}/bmad-qa.md (100%) rename {agents => bmad-agile-workflow/agents}/bmad-review.md (100%) rename {agents => bmad-agile-workflow/agents}/bmad-sm.md (100%) rename {commands => bmad-agile-workflow/commands}/bmad-pilot.md (100%) create mode 100644 development-essentials/.claude-plugin/plugin.json rename {agents => development-essentials/agents}/bugfix-verify.md (100%) rename {agents => development-essentials/agents}/bugfix.md (100%) rename {agents => development-essentials/agents}/code.md (100%) rename {agents => development-essentials/agents}/debug.md (100%) rename {agents => development-essentials/agents}/optimize.md (100%) rename {commands => development-essentials/commands}/ask.md (100%) rename {commands => development-essentials/commands}/bugfix.md (100%) rename {commands => development-essentials/commands}/code.md (100%) rename {commands => development-essentials/commands}/debug.md (100%) rename {commands => development-essentials/commands}/docs.md (100%) rename {commands => development-essentials/commands}/optimize.md (100%) rename {commands => development-essentials/commands}/refactor.md (100%) rename {commands => development-essentials/commands}/review.md (100%) rename {commands => development-essentials/commands}/test.md (100%) rename {commands => development-essentials/commands}/think.md (100%) create mode 100644 requirements-driven-workflow/.claude-plugin/plugin.json rename {agents => requirements-driven-workflow/agents}/requirements-code.md (100%) rename {agents => requirements-driven-workflow/agents}/requirements-generate.md (100%) rename {agents => requirements-driven-workflow/agents}/requirements-review.md (100%) rename {agents => requirements-driven-workflow/agents}/requirements-testing.md (100%) rename {commands => requirements-driven-workflow/commands}/requirements-pilot.md (100%) diff --git a/.claude-plugin/marketplace.json b/.claude-plugin/marketplace.json index aedd821..4fbb592 100644 --- a/.claude-plugin/marketplace.json +++ b/.claude-plugin/marketplace.json @@ -12,7 +12,7 @@ "plugins": [ { "name": "requirements-driven-development", - "source": "./", + "source": "./requirements-driven-workflow/", "description": "Streamlined requirements-driven development workflow with 90% quality gates for practical feature implementation", "version": "1.0.0", "author": { @@ -45,7 +45,7 @@ }, { "name": "bmad-agile-workflow", - "source": "./", + "source": "./bmad-agile-workflow/", "description": "Full BMAD agile workflow with role-based agents (PO, Architect, SM, Dev, QA) and interactive approval gates", "version": "1.0.0", "author": { @@ -82,7 +82,7 @@ }, { "name": "development-essentials", - "source": "./", + "source": "./development-essentials/", "description": "Essential development commands for coding, debugging, testing, optimization, and documentation", "version": "1.0.0", "author": { @@ -127,7 +127,7 @@ }, { "name": "advanced-ai-agents", - "source": "./", + "source": "./advanced-ai-agents/", "description": "Advanced AI agent for complex problem solving and deep analysis with GPT-5 integration", "version": "1.0.0", "author": { diff --git a/advanced-ai-agents/.claude-plugin/plugin.json b/advanced-ai-agents/.claude-plugin/plugin.json new file mode 100644 index 0000000..2c0a918 --- /dev/null +++ b/advanced-ai-agents/.claude-plugin/plugin.json @@ -0,0 +1,26 @@ +{ + "name": "advanced-ai-agents", + "source": "./", + "description": "Advanced AI agent for complex problem solving and deep analysis with GPT-5 integration", + "version": "1.0.0", + "author": { + "name": "Claude Code Dev Workflows", + "url": "https://github.com/yourusername/myclaude" + }, + "homepage": "https://github.com/yourusername/myclaude", + "repository": "https://github.com/yourusername/myclaude", + "license": "MIT", + "keywords": [ + "gpt5", + "ai", + "analysis", + "problem-solving", + "deep-research" + ], + "category": "advanced", + "strict": false, + "commands": [], + "agents": [ + "./agents/gpt5.md" + ] +} \ No newline at end of file diff --git a/agents/gpt5.md b/advanced-ai-agents/agents/gpt5.md similarity index 100% rename from agents/gpt5.md rename to advanced-ai-agents/agents/gpt5.md diff --git a/agents/bmad-review-codex b/agents/bmad-review-codex deleted file mode 100644 index d43370a..0000000 --- a/agents/bmad-review-codex +++ /dev/null @@ -1,51 +0,0 @@ ---- -name: bmad-review -description: Independent code review agent ---- - -# BMAD Review Agent - -You are an independent code review agent responsible for conducting reviews between Dev and QA phases. - -## Your Task - -1. **Load Context** - - Read PRD from `./.claude/specs/{feature_name}/01-product-requirements.md` - - Read Architecture from `./.claude/specs/{feature_name}/02-system-architecture.md` - - Read Sprint Plan from `./.claude/specs/{feature_name}/03-sprint-plan.md` - - Analyze the code changes and implementation - -2. **Execute Review** - Use Bash to call codex with an optimized prompt: - ```bash - codex exec --skip-git-repo-check -m gpt-5 "[Your optimized review prompt here]" - ``` - - When constructing the prompt, follow these principles: - - Use structured XML tags for organization - - Include clear role definition - - Add thinking sections for analysis - - Specify detailed output format - - Include QA testing guidance - -3. **Generate Report** - Write the review results to `./.claude/specs/{feature_name}/04-dev-reviewed.md` - - The report should include: - - Summary with Status (Pass/Pass with Risk/Fail) - - Requirements compliance check - - Architecture compliance check - - Issues categorized as Critical/Major/Minor - - QA testing guide - - Sprint plan updates - -4. **Update Status** - Based on the review status: - - If Pass or Pass with Risk: Mark review as completed in sprint plan - - If Fail: Keep as pending and indicate Dev needs to address issues - -## Key Principles -- Maintain independence from Dev context -- Focus on actionable findings -- Provide specific QA guidance -- Use clear, parseable output format diff --git a/bmad-agile-workflow/.claude-plugin/plugin.json b/bmad-agile-workflow/.claude-plugin/plugin.json new file mode 100644 index 0000000..bd06fd3 --- /dev/null +++ b/bmad-agile-workflow/.claude-plugin/plugin.json @@ -0,0 +1,37 @@ +{ + "name": "bmad-agile-workflow", + "source": "./", + "description": "Full BMAD agile workflow with role-based agents (PO, Architect, SM, Dev, QA) and interactive approval gates", + "version": "1.0.0", + "author": { + "name": "Claude Code Dev Workflows", + "url": "https://github.com/yourusername/myclaude" + }, + "homepage": "https://github.com/yourusername/myclaude", + "repository": "https://github.com/yourusername/myclaude", + "license": "MIT", + "keywords": [ + "bmad", + "agile", + "scrum", + "product-owner", + "architect", + "developer", + "qa", + "workflow-orchestration" + ], + "category": "workflows", + "strict": false, + "commands": [ + "./commands/bmad-pilot.md" + ], + "agents": [ + "./agents/bmad-po.md", + "./agents/bmad-architect.md", + "./agents/bmad-sm.md", + "./agents/bmad-dev.md", + "./agents/bmad-qa.md", + "./agents/bmad-orchestrator.md", + "./agents/bmad-review.md" + ] +} \ No newline at end of file diff --git a/agents/bmad-architect.md b/bmad-agile-workflow/agents/bmad-architect.md similarity index 100% rename from agents/bmad-architect.md rename to bmad-agile-workflow/agents/bmad-architect.md diff --git a/agents/bmad-dev.md b/bmad-agile-workflow/agents/bmad-dev.md similarity index 100% rename from agents/bmad-dev.md rename to bmad-agile-workflow/agents/bmad-dev.md diff --git a/agents/bmad-orchestrator.md b/bmad-agile-workflow/agents/bmad-orchestrator.md similarity index 100% rename from agents/bmad-orchestrator.md rename to bmad-agile-workflow/agents/bmad-orchestrator.md diff --git a/agents/bmad-po.md b/bmad-agile-workflow/agents/bmad-po.md similarity index 100% rename from agents/bmad-po.md rename to bmad-agile-workflow/agents/bmad-po.md diff --git a/agents/bmad-qa.md b/bmad-agile-workflow/agents/bmad-qa.md similarity index 100% rename from agents/bmad-qa.md rename to bmad-agile-workflow/agents/bmad-qa.md diff --git a/agents/bmad-review.md b/bmad-agile-workflow/agents/bmad-review.md similarity index 100% rename from agents/bmad-review.md rename to bmad-agile-workflow/agents/bmad-review.md diff --git a/agents/bmad-sm.md b/bmad-agile-workflow/agents/bmad-sm.md similarity index 100% rename from agents/bmad-sm.md rename to bmad-agile-workflow/agents/bmad-sm.md diff --git a/commands/bmad-pilot.md b/bmad-agile-workflow/commands/bmad-pilot.md similarity index 100% rename from commands/bmad-pilot.md rename to bmad-agile-workflow/commands/bmad-pilot.md diff --git a/development-essentials/.claude-plugin/plugin.json b/development-essentials/.claude-plugin/plugin.json new file mode 100644 index 0000000..2aed6c4 --- /dev/null +++ b/development-essentials/.claude-plugin/plugin.json @@ -0,0 +1,44 @@ +{ + "name": "development-essentials", + "source": "./", + "description": "Essential development commands for coding, debugging, testing, optimization, and documentation", + "version": "1.0.0", + "author": { + "name": "Claude Code Dev Workflows", + "url": "https://github.com/yourusername/myclaude" + }, + "homepage": "https://github.com/yourusername/myclaude", + "repository": "https://github.com/yourusername/myclaude", + "license": "MIT", + "keywords": [ + "code", + "debug", + "test", + "optimize", + "review", + "bugfix", + "refactor", + "documentation" + ], + "category": "essentials", + "strict": false, + "commands": [ + "./commands/code.md", + "./commands/debug.md", + "./commands/test.md", + "./commands/optimize.md", + "./commands/review.md", + "./commands/bugfix.md", + "./commands/refactor.md", + "./commands/docs.md", + "./commands/ask.md", + "./commands/think.md" + ], + "agents": [ + "./agents/code.md", + "./agents/bugfix.md", + "./agents/bugfix-verify.md", + "./agents/optimize.md", + "./agents/debug.md" + ] +} \ No newline at end of file diff --git a/agents/bugfix-verify.md b/development-essentials/agents/bugfix-verify.md similarity index 100% rename from agents/bugfix-verify.md rename to development-essentials/agents/bugfix-verify.md diff --git a/agents/bugfix.md b/development-essentials/agents/bugfix.md similarity index 100% rename from agents/bugfix.md rename to development-essentials/agents/bugfix.md diff --git a/agents/code.md b/development-essentials/agents/code.md similarity index 100% rename from agents/code.md rename to development-essentials/agents/code.md diff --git a/agents/debug.md b/development-essentials/agents/debug.md similarity index 100% rename from agents/debug.md rename to development-essentials/agents/debug.md diff --git a/agents/optimize.md b/development-essentials/agents/optimize.md similarity index 100% rename from agents/optimize.md rename to development-essentials/agents/optimize.md diff --git a/commands/ask.md b/development-essentials/commands/ask.md similarity index 100% rename from commands/ask.md rename to development-essentials/commands/ask.md diff --git a/commands/bugfix.md b/development-essentials/commands/bugfix.md similarity index 100% rename from commands/bugfix.md rename to development-essentials/commands/bugfix.md diff --git a/commands/code.md b/development-essentials/commands/code.md similarity index 100% rename from commands/code.md rename to development-essentials/commands/code.md diff --git a/commands/debug.md b/development-essentials/commands/debug.md similarity index 100% rename from commands/debug.md rename to development-essentials/commands/debug.md diff --git a/commands/docs.md b/development-essentials/commands/docs.md similarity index 100% rename from commands/docs.md rename to development-essentials/commands/docs.md diff --git a/commands/optimize.md b/development-essentials/commands/optimize.md similarity index 100% rename from commands/optimize.md rename to development-essentials/commands/optimize.md diff --git a/commands/refactor.md b/development-essentials/commands/refactor.md similarity index 100% rename from commands/refactor.md rename to development-essentials/commands/refactor.md diff --git a/commands/review.md b/development-essentials/commands/review.md similarity index 100% rename from commands/review.md rename to development-essentials/commands/review.md diff --git a/commands/test.md b/development-essentials/commands/test.md similarity index 100% rename from commands/test.md rename to development-essentials/commands/test.md diff --git a/commands/think.md b/development-essentials/commands/think.md similarity index 100% rename from commands/think.md rename to development-essentials/commands/think.md diff --git a/requirements-driven-workflow/.claude-plugin/plugin.json b/requirements-driven-workflow/.claude-plugin/plugin.json new file mode 100644 index 0000000..e948650 --- /dev/null +++ b/requirements-driven-workflow/.claude-plugin/plugin.json @@ -0,0 +1,33 @@ +{ + "name": "requirements-driven-development", + "source": "./", + "description": "Streamlined requirements-driven development workflow with 90% quality gates for practical feature implementation", + "version": "1.0.0", + "author": { + "name": "Claude Code Dev Workflows", + "url": "https://github.com/yourusername/myclaude" + }, + "homepage": "https://github.com/yourusername/myclaude", + "repository": "https://github.com/yourusername/myclaude", + "license": "MIT", + "keywords": [ + "requirements", + "workflow", + "automation", + "quality-gates", + "feature-development", + "agile", + "specifications" + ], + "category": "workflows", + "strict": false, + "commands": [ + "./commands/requirements-pilot.md" + ], + "agents": [ + "./agents/requirements-generate.md", + "./agents/requirements-code.md", + "./agents/requirements-testing.md", + "./agents/requirements-review.md" + ] +} \ No newline at end of file diff --git a/agents/requirements-code.md b/requirements-driven-workflow/agents/requirements-code.md similarity index 100% rename from agents/requirements-code.md rename to requirements-driven-workflow/agents/requirements-code.md diff --git a/agents/requirements-generate.md b/requirements-driven-workflow/agents/requirements-generate.md similarity index 100% rename from agents/requirements-generate.md rename to requirements-driven-workflow/agents/requirements-generate.md diff --git a/agents/requirements-review.md b/requirements-driven-workflow/agents/requirements-review.md similarity index 100% rename from agents/requirements-review.md rename to requirements-driven-workflow/agents/requirements-review.md diff --git a/agents/requirements-testing.md b/requirements-driven-workflow/agents/requirements-testing.md similarity index 100% rename from agents/requirements-testing.md rename to requirements-driven-workflow/agents/requirements-testing.md diff --git a/commands/requirements-pilot.md b/requirements-driven-workflow/commands/requirements-pilot.md similarity index 100% rename from commands/requirements-pilot.md rename to requirements-driven-workflow/commands/requirements-pilot.md From 394013fb2e6e5f3543cc0dc87df685c40e098b8c Mon Sep 17 00:00:00 2001 From: "swe-agent[bot]" <0+swe-agent[bot]@users.noreply.github.com> Date: Sat, 18 Oct 2025 17:16:42 +0000 Subject: [PATCH 2/3] Fix plugin configuration: rename to marketplace.json and update repository URLs MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Rename plugin.json to marketplace.json in all plugin directories - Update repository URLs from yourusername to cexll - Fix author URL, homepage, and repository fields 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- .../.claude-plugin/{plugin.json => marketplace.json} | 6 +++--- .../.claude-plugin/{plugin.json => marketplace.json} | 6 +++--- .../.claude-plugin/{plugin.json => marketplace.json} | 6 +++--- .../.claude-plugin/{plugin.json => marketplace.json} | 6 +++--- 4 files changed, 12 insertions(+), 12 deletions(-) rename advanced-ai-agents/.claude-plugin/{plugin.json => marketplace.json} (72%) rename bmad-agile-workflow/.claude-plugin/{plugin.json => marketplace.json} (81%) rename development-essentials/.claude-plugin/{plugin.json => marketplace.json} (83%) rename requirements-driven-workflow/.claude-plugin/{plugin.json => marketplace.json} (80%) diff --git a/advanced-ai-agents/.claude-plugin/plugin.json b/advanced-ai-agents/.claude-plugin/marketplace.json similarity index 72% rename from advanced-ai-agents/.claude-plugin/plugin.json rename to advanced-ai-agents/.claude-plugin/marketplace.json index 2c0a918..3a92cce 100644 --- a/advanced-ai-agents/.claude-plugin/plugin.json +++ b/advanced-ai-agents/.claude-plugin/marketplace.json @@ -5,10 +5,10 @@ "version": "1.0.0", "author": { "name": "Claude Code Dev Workflows", - "url": "https://github.com/yourusername/myclaude" + "url": "https://github.com/cexll/myclaude" }, - "homepage": "https://github.com/yourusername/myclaude", - "repository": "https://github.com/yourusername/myclaude", + "homepage": "https://github.com/cexll/myclaude", + "repository": "https://github.com/cexll/myclaude", "license": "MIT", "keywords": [ "gpt5", diff --git a/bmad-agile-workflow/.claude-plugin/plugin.json b/bmad-agile-workflow/.claude-plugin/marketplace.json similarity index 81% rename from bmad-agile-workflow/.claude-plugin/plugin.json rename to bmad-agile-workflow/.claude-plugin/marketplace.json index bd06fd3..a01afc6 100644 --- a/bmad-agile-workflow/.claude-plugin/plugin.json +++ b/bmad-agile-workflow/.claude-plugin/marketplace.json @@ -5,10 +5,10 @@ "version": "1.0.0", "author": { "name": "Claude Code Dev Workflows", - "url": "https://github.com/yourusername/myclaude" + "url": "https://github.com/cexll/myclaude" }, - "homepage": "https://github.com/yourusername/myclaude", - "repository": "https://github.com/yourusername/myclaude", + "homepage": "https://github.com/cexll/myclaude", + "repository": "https://github.com/cexll/myclaude", "license": "MIT", "keywords": [ "bmad", diff --git a/development-essentials/.claude-plugin/plugin.json b/development-essentials/.claude-plugin/marketplace.json similarity index 83% rename from development-essentials/.claude-plugin/plugin.json rename to development-essentials/.claude-plugin/marketplace.json index 2aed6c4..92d333a 100644 --- a/development-essentials/.claude-plugin/plugin.json +++ b/development-essentials/.claude-plugin/marketplace.json @@ -5,10 +5,10 @@ "version": "1.0.0", "author": { "name": "Claude Code Dev Workflows", - "url": "https://github.com/yourusername/myclaude" + "url": "https://github.com/cexll/myclaude" }, - "homepage": "https://github.com/yourusername/myclaude", - "repository": "https://github.com/yourusername/myclaude", + "homepage": "https://github.com/cexll/myclaude", + "repository": "https://github.com/cexll/myclaude", "license": "MIT", "keywords": [ "code", diff --git a/requirements-driven-workflow/.claude-plugin/plugin.json b/requirements-driven-workflow/.claude-plugin/marketplace.json similarity index 80% rename from requirements-driven-workflow/.claude-plugin/plugin.json rename to requirements-driven-workflow/.claude-plugin/marketplace.json index e948650..e1800dc 100644 --- a/requirements-driven-workflow/.claude-plugin/plugin.json +++ b/requirements-driven-workflow/.claude-plugin/marketplace.json @@ -5,10 +5,10 @@ "version": "1.0.0", "author": { "name": "Claude Code Dev Workflows", - "url": "https://github.com/yourusername/myclaude" + "url": "https://github.com/cexll/myclaude" }, - "homepage": "https://github.com/yourusername/myclaude", - "repository": "https://github.com/yourusername/myclaude", + "homepage": "https://github.com/cexll/myclaude", + "repository": "https://github.com/cexll/myclaude", "license": "MIT", "keywords": [ "requirements", From 32f2e4c2cb8bc38aacf4b87271a8e75c1ac2e680 Mon Sep 17 00:00:00 2001 From: "swe-agent[bot]" <0+swe-agent[bot]@users.noreply.github.com> Date: Sun, 19 Oct 2025 03:36:16 +0000 Subject: [PATCH 3/3] Fix marketplace metadata references - Replace placeholder repository URLs - Align development-essentials agents with isolated files Generated by swe-agent --- .claude-plugin/marketplace.json | 31 +++++++++++++++---------------- 1 file changed, 15 insertions(+), 16 deletions(-) diff --git a/.claude-plugin/marketplace.json b/.claude-plugin/marketplace.json index 4fbb592..e5bef4c 100644 --- a/.claude-plugin/marketplace.json +++ b/.claude-plugin/marketplace.json @@ -3,7 +3,7 @@ "owner": { "name": "Claude Code Dev Workflows", "email": "contact@example.com", - "url": "https://github.com/yourusername/myclaude" + "url": "https://github.com/cexll/myclaude" }, "metadata": { "description": "Professional multi-agent development workflows with Requirements-Driven and BMAD methodologies, featuring 16+ specialized agents and 12+ commands", @@ -17,10 +17,10 @@ "version": "1.0.0", "author": { "name": "Claude Code Dev Workflows", - "url": "https://github.com/yourusername/myclaude" + "url": "https://github.com/cexll/myclaude" }, - "homepage": "https://github.com/yourusername/myclaude", - "repository": "https://github.com/yourusername/myclaude", + "homepage": "https://github.com/cexll/myclaude", + "repository": "https://github.com/cexll/myclaude", "license": "MIT", "keywords": [ "requirements", @@ -50,10 +50,10 @@ "version": "1.0.0", "author": { "name": "Claude Code Dev Workflows", - "url": "https://github.com/yourusername/myclaude" + "url": "https://github.com/cexll/myclaude" }, - "homepage": "https://github.com/yourusername/myclaude", - "repository": "https://github.com/yourusername/myclaude", + "homepage": "https://github.com/cexll/myclaude", + "repository": "https://github.com/cexll/myclaude", "license": "MIT", "keywords": [ "bmad", @@ -87,10 +87,10 @@ "version": "1.0.0", "author": { "name": "Claude Code Dev Workflows", - "url": "https://github.com/yourusername/myclaude" + "url": "https://github.com/cexll/myclaude" }, - "homepage": "https://github.com/yourusername/myclaude", - "repository": "https://github.com/yourusername/myclaude", + "homepage": "https://github.com/cexll/myclaude", + "repository": "https://github.com/cexll/myclaude", "license": "MIT", "keywords": [ "code", @@ -120,9 +120,8 @@ "./agents/code.md", "./agents/bugfix.md", "./agents/bugfix-verify.md", - "./agents/code-optimize.md", - "./agents/debug.md", - "./agents/develop.md" + "./agents/optimize.md", + "./agents/debug.md" ] }, { @@ -132,10 +131,10 @@ "version": "1.0.0", "author": { "name": "Claude Code Dev Workflows", - "url": "https://github.com/yourusername/myclaude" + "url": "https://github.com/cexll/myclaude" }, - "homepage": "https://github.com/yourusername/myclaude", - "repository": "https://github.com/yourusername/myclaude", + "homepage": "https://github.com/cexll/myclaude", + "repository": "https://github.com/cexll/myclaude", "license": "MIT", "keywords": [ "gpt5",