From 71f1f3239a0d26d7f13ff4cf48a40791d5419a15 Mon Sep 17 00:00:00 2001 From: lmiranda Date: Tue, 3 Feb 2026 21:07:18 -0500 Subject: [PATCH 1/5] refactor: rename command files for namespace consistency BREAKING CHANGE: All generic command names now prefixed with plugin namespace. See CHANGELOG.md v7.0.0 for complete rename map. Co-Authored-By: Claude Opus 4.5 --- .../cmdb-assistant/commands/{initial-setup.md => cmdb-setup.md} | 0 .../contract-validator/commands/{initial-setup.md => cv-setup.md} | 0 plugins/data-platform/commands/{explain.md => data-explain.md} | 0 plugins/data-platform/commands/{ingest.md => data-ingest.md} | 0 plugins/data-platform/commands/{lineage.md => data-lineage.md} | 0 plugins/data-platform/commands/{profile.md => data-profile.md} | 0 plugins/data-platform/commands/{run.md => data-run.md} | 0 plugins/data-platform/commands/{schema.md => data-schema.md} | 0 .../data-platform/commands/{initial-setup.md => data-setup.md} | 0 .../git-flow/commands/{commit-merge.md => git-commit-merge.md} | 0 plugins/git-flow/commands/{commit-push.md => git-commit-push.md} | 0 plugins/git-flow/commands/{commit-sync.md => git-commit-sync.md} | 0 plugins/git-flow/commands/{commit.md => git-commit.md} | 0 plugins/pr-review/commands/{initial-setup.md => pr-setup.md} | 0 plugins/projman/commands/{debug.md => pm-debug.md} | 0 plugins/projman/commands/{review.md => pm-review.md} | 0 plugins/projman/commands/{setup.md => pm-setup.md} | 0 plugins/projman/commands/{test.md => pm-test.md} | 0 .../viz-platform/commands/{breakpoints.md => viz-breakpoints.md} | 0 .../commands/{chart-export.md => viz-chart-export.md} | 0 plugins/viz-platform/commands/{chart.md => viz-chart.md} | 0 plugins/viz-platform/commands/{component.md => viz-component.md} | 0 plugins/viz-platform/commands/{dashboard.md => viz-dashboard.md} | 0 plugins/viz-platform/commands/{initial-setup.md => viz-setup.md} | 0 plugins/viz-platform/commands/{theme-css.md => viz-theme-css.md} | 0 plugins/viz-platform/commands/{theme-new.md => viz-theme-new.md} | 0 plugins/viz-platform/commands/{theme.md => viz-theme.md} | 0 27 files changed, 0 insertions(+), 0 deletions(-) rename plugins/cmdb-assistant/commands/{initial-setup.md => cmdb-setup.md} (100%) rename plugins/contract-validator/commands/{initial-setup.md => cv-setup.md} (100%) rename plugins/data-platform/commands/{explain.md => data-explain.md} (100%) rename plugins/data-platform/commands/{ingest.md => data-ingest.md} (100%) rename plugins/data-platform/commands/{lineage.md => data-lineage.md} (100%) rename plugins/data-platform/commands/{profile.md => data-profile.md} (100%) rename plugins/data-platform/commands/{run.md => data-run.md} (100%) rename plugins/data-platform/commands/{schema.md => data-schema.md} (100%) rename plugins/data-platform/commands/{initial-setup.md => data-setup.md} (100%) rename plugins/git-flow/commands/{commit-merge.md => git-commit-merge.md} (100%) rename plugins/git-flow/commands/{commit-push.md => git-commit-push.md} (100%) rename plugins/git-flow/commands/{commit-sync.md => git-commit-sync.md} (100%) rename plugins/git-flow/commands/{commit.md => git-commit.md} (100%) rename plugins/pr-review/commands/{initial-setup.md => pr-setup.md} (100%) rename plugins/projman/commands/{debug.md => pm-debug.md} (100%) rename plugins/projman/commands/{review.md => pm-review.md} (100%) rename plugins/projman/commands/{setup.md => pm-setup.md} (100%) rename plugins/projman/commands/{test.md => pm-test.md} (100%) rename plugins/viz-platform/commands/{breakpoints.md => viz-breakpoints.md} (100%) rename plugins/viz-platform/commands/{chart-export.md => viz-chart-export.md} (100%) rename plugins/viz-platform/commands/{chart.md => viz-chart.md} (100%) rename plugins/viz-platform/commands/{component.md => viz-component.md} (100%) rename plugins/viz-platform/commands/{dashboard.md => viz-dashboard.md} (100%) rename plugins/viz-platform/commands/{initial-setup.md => viz-setup.md} (100%) rename plugins/viz-platform/commands/{theme-css.md => viz-theme-css.md} (100%) rename plugins/viz-platform/commands/{theme-new.md => viz-theme-new.md} (100%) rename plugins/viz-platform/commands/{theme.md => viz-theme.md} (100%) diff --git a/plugins/cmdb-assistant/commands/initial-setup.md b/plugins/cmdb-assistant/commands/cmdb-setup.md similarity index 100% rename from plugins/cmdb-assistant/commands/initial-setup.md rename to plugins/cmdb-assistant/commands/cmdb-setup.md diff --git a/plugins/contract-validator/commands/initial-setup.md b/plugins/contract-validator/commands/cv-setup.md similarity index 100% rename from plugins/contract-validator/commands/initial-setup.md rename to plugins/contract-validator/commands/cv-setup.md diff --git a/plugins/data-platform/commands/explain.md b/plugins/data-platform/commands/data-explain.md similarity index 100% rename from plugins/data-platform/commands/explain.md rename to plugins/data-platform/commands/data-explain.md diff --git a/plugins/data-platform/commands/ingest.md b/plugins/data-platform/commands/data-ingest.md similarity index 100% rename from plugins/data-platform/commands/ingest.md rename to plugins/data-platform/commands/data-ingest.md diff --git a/plugins/data-platform/commands/lineage.md b/plugins/data-platform/commands/data-lineage.md similarity index 100% rename from plugins/data-platform/commands/lineage.md rename to plugins/data-platform/commands/data-lineage.md diff --git a/plugins/data-platform/commands/profile.md b/plugins/data-platform/commands/data-profile.md similarity index 100% rename from plugins/data-platform/commands/profile.md rename to plugins/data-platform/commands/data-profile.md diff --git a/plugins/data-platform/commands/run.md b/plugins/data-platform/commands/data-run.md similarity index 100% rename from plugins/data-platform/commands/run.md rename to plugins/data-platform/commands/data-run.md diff --git a/plugins/data-platform/commands/schema.md b/plugins/data-platform/commands/data-schema.md similarity index 100% rename from plugins/data-platform/commands/schema.md rename to plugins/data-platform/commands/data-schema.md diff --git a/plugins/data-platform/commands/initial-setup.md b/plugins/data-platform/commands/data-setup.md similarity index 100% rename from plugins/data-platform/commands/initial-setup.md rename to plugins/data-platform/commands/data-setup.md diff --git a/plugins/git-flow/commands/commit-merge.md b/plugins/git-flow/commands/git-commit-merge.md similarity index 100% rename from plugins/git-flow/commands/commit-merge.md rename to plugins/git-flow/commands/git-commit-merge.md diff --git a/plugins/git-flow/commands/commit-push.md b/plugins/git-flow/commands/git-commit-push.md similarity index 100% rename from plugins/git-flow/commands/commit-push.md rename to plugins/git-flow/commands/git-commit-push.md diff --git a/plugins/git-flow/commands/commit-sync.md b/plugins/git-flow/commands/git-commit-sync.md similarity index 100% rename from plugins/git-flow/commands/commit-sync.md rename to plugins/git-flow/commands/git-commit-sync.md diff --git a/plugins/git-flow/commands/commit.md b/plugins/git-flow/commands/git-commit.md similarity index 100% rename from plugins/git-flow/commands/commit.md rename to plugins/git-flow/commands/git-commit.md diff --git a/plugins/pr-review/commands/initial-setup.md b/plugins/pr-review/commands/pr-setup.md similarity index 100% rename from plugins/pr-review/commands/initial-setup.md rename to plugins/pr-review/commands/pr-setup.md diff --git a/plugins/projman/commands/debug.md b/plugins/projman/commands/pm-debug.md similarity index 100% rename from plugins/projman/commands/debug.md rename to plugins/projman/commands/pm-debug.md diff --git a/plugins/projman/commands/review.md b/plugins/projman/commands/pm-review.md similarity index 100% rename from plugins/projman/commands/review.md rename to plugins/projman/commands/pm-review.md diff --git a/plugins/projman/commands/setup.md b/plugins/projman/commands/pm-setup.md similarity index 100% rename from plugins/projman/commands/setup.md rename to plugins/projman/commands/pm-setup.md diff --git a/plugins/projman/commands/test.md b/plugins/projman/commands/pm-test.md similarity index 100% rename from plugins/projman/commands/test.md rename to plugins/projman/commands/pm-test.md diff --git a/plugins/viz-platform/commands/breakpoints.md b/plugins/viz-platform/commands/viz-breakpoints.md similarity index 100% rename from plugins/viz-platform/commands/breakpoints.md rename to plugins/viz-platform/commands/viz-breakpoints.md diff --git a/plugins/viz-platform/commands/chart-export.md b/plugins/viz-platform/commands/viz-chart-export.md similarity index 100% rename from plugins/viz-platform/commands/chart-export.md rename to plugins/viz-platform/commands/viz-chart-export.md diff --git a/plugins/viz-platform/commands/chart.md b/plugins/viz-platform/commands/viz-chart.md similarity index 100% rename from plugins/viz-platform/commands/chart.md rename to plugins/viz-platform/commands/viz-chart.md diff --git a/plugins/viz-platform/commands/component.md b/plugins/viz-platform/commands/viz-component.md similarity index 100% rename from plugins/viz-platform/commands/component.md rename to plugins/viz-platform/commands/viz-component.md diff --git a/plugins/viz-platform/commands/dashboard.md b/plugins/viz-platform/commands/viz-dashboard.md similarity index 100% rename from plugins/viz-platform/commands/dashboard.md rename to plugins/viz-platform/commands/viz-dashboard.md diff --git a/plugins/viz-platform/commands/initial-setup.md b/plugins/viz-platform/commands/viz-setup.md similarity index 100% rename from plugins/viz-platform/commands/initial-setup.md rename to plugins/viz-platform/commands/viz-setup.md diff --git a/plugins/viz-platform/commands/theme-css.md b/plugins/viz-platform/commands/viz-theme-css.md similarity index 100% rename from plugins/viz-platform/commands/theme-css.md rename to plugins/viz-platform/commands/viz-theme-css.md diff --git a/plugins/viz-platform/commands/theme-new.md b/plugins/viz-platform/commands/viz-theme-new.md similarity index 100% rename from plugins/viz-platform/commands/theme-new.md rename to plugins/viz-platform/commands/viz-theme-new.md diff --git a/plugins/viz-platform/commands/theme.md b/plugins/viz-platform/commands/viz-theme.md similarity index 100% rename from plugins/viz-platform/commands/theme.md rename to plugins/viz-platform/commands/viz-theme.md -- 2.49.1 From 4ba38eb62030dcbc38a8f43f5109fb348be468fe Mon Sep 17 00:00:00 2001 From: lmiranda Date: Tue, 3 Feb 2026 21:16:00 -0500 Subject: [PATCH 2/5] refactor: update internal command references in all plugin files Updated: - projman: 4 commands + 4 skills + integration snippet - git-flow: 4 commands + 3 skills + integration snippet - pr-review: 1 command cross-reference - cmdb-assistant: 1 command + 1 skill - data-platform: 8 commands + integration snippet - viz-platform: 11 commands + integration snippet - contract-validator: 1 command + 1 skill + 1 agent Co-Authored-By: Claude Opus 4.5 --- .doc-guardian-queue | 38 +++++++++++++++++++ plugins/cmdb-assistant/commands/cmdb-setup.md | 2 +- .../cmdb-assistant/skills/visual-header.md | 2 +- .../agents/full-validation.md | 2 +- .../contract-validator/commands/cv-setup.md | 2 +- .../skills/mcp-tools-reference.md | 2 +- .../data-platform/claude-md-integration.md | 32 ++++++++-------- .../data-platform/commands/data-explain.md | 8 ++-- plugins/data-platform/commands/data-ingest.md | 10 ++--- .../data-platform/commands/data-lineage.md | 8 ++-- .../data-platform/commands/data-profile.md | 8 ++-- plugins/data-platform/commands/data-review.md | 4 +- plugins/data-platform/commands/data-run.md | 14 +++---- plugins/data-platform/commands/data-schema.md | 10 ++--- plugins/data-platform/commands/data-setup.md | 4 +- plugins/git-flow/claude-md-integration.md | 6 +-- plugins/git-flow/commands/git-commit-merge.md | 6 +-- plugins/git-flow/commands/git-commit-push.md | 6 +-- plugins/git-flow/commands/git-commit-sync.md | 6 +-- plugins/git-flow/commands/git-commit.md | 4 +- plugins/git-flow/skills/commit-conventions.md | 2 +- plugins/git-flow/skills/merge-workflow.md | 2 +- plugins/git-flow/skills/sync-workflow.md | 4 +- plugins/pr-review/commands/project-init.md | 4 +- plugins/projman/claude-md-integration.md | 2 +- plugins/projman/commands/pm-debug.md | 8 ++-- plugins/projman/commands/pm-review.md | 4 +- plugins/projman/commands/pm-setup.md | 12 +++--- plugins/projman/commands/pm-test.md | 34 ++++++++--------- plugins/projman/skills/review-checklist.md | 2 +- plugins/projman/skills/setup-workflows.md | 2 +- plugins/projman/skills/sprint-lifecycle.md | 8 ++-- plugins/projman/skills/visual-output.md | 6 +-- plugins/viz-platform/claude-md-integration.md | 16 ++++---- .../commands/accessibility-check.md | 4 +- .../viz-platform/commands/design-review.md | 4 +- .../viz-platform/commands/viz-breakpoints.md | 10 ++--- .../viz-platform/commands/viz-chart-export.md | 8 ++-- plugins/viz-platform/commands/viz-chart.md | 10 ++--- .../viz-platform/commands/viz-component.md | 8 ++-- .../viz-platform/commands/viz-dashboard.md | 8 ++-- plugins/viz-platform/commands/viz-setup.md | 6 +-- .../viz-platform/commands/viz-theme-css.md | 8 ++-- .../viz-platform/commands/viz-theme-new.md | 8 ++-- plugins/viz-platform/commands/viz-theme.md | 8 ++-- 45 files changed, 200 insertions(+), 162 deletions(-) diff --git a/.doc-guardian-queue b/.doc-guardian-queue index 0be6d98..cd03013 100644 --- a/.doc-guardian-queue +++ b/.doc-guardian-queue @@ -25,3 +25,41 @@ 2026-02-02T13:52:07 | skills | /home/lmiranda/claude-plugins-work/plugins/contract-validator/skills/mcp-tools-reference.md | README.md 2026-02-02T13:59:09 | skills | /home/lmiranda/claude-plugins-work/plugins/projman/skills/progress-tracking.md | README.md 2026-02-02T14:01:34 | commands | /home/lmiranda/claude-plugins-work/plugins/projman/commands/test.md | docs/COMMANDS-CHEATSHEET.md README.md +2026-02-03T21:08:38 | commands | /home/lmiranda/claude-plugins-work/plugins/git-flow/commands/git-commit.md | docs/COMMANDS-CHEATSHEET.md README.md +2026-02-03T21:08:39 | commands | /home/lmiranda/claude-plugins-work/plugins/git-flow/commands/git-commit-push.md | docs/COMMANDS-CHEATSHEET.md README.md +2026-02-03T21:08:40 | commands | /home/lmiranda/claude-plugins-work/plugins/git-flow/commands/git-commit-merge.md | docs/COMMANDS-CHEATSHEET.md README.md +2026-02-03T21:08:41 | commands | /home/lmiranda/claude-plugins-work/plugins/git-flow/commands/git-commit-sync.md | docs/COMMANDS-CHEATSHEET.md README.md +2026-02-03T21:08:49 | commands | /home/lmiranda/claude-plugins-work/plugins/cmdb-assistant/commands/cmdb-setup.md | docs/COMMANDS-CHEATSHEET.md README.md +2026-02-03T21:08:50 | commands | /home/lmiranda/claude-plugins-work/plugins/pr-review/commands/project-init.md | docs/COMMANDS-CHEATSHEET.md README.md +2026-02-03T21:08:51 | skills | /home/lmiranda/claude-plugins-work/plugins/cmdb-assistant/skills/visual-header.md | README.md +2026-02-03T21:08:51 | commands | /home/lmiranda/claude-plugins-work/plugins/projman/commands/pm-review.md | docs/COMMANDS-CHEATSHEET.md README.md +2026-02-03T21:08:53 | commands | /home/lmiranda/claude-plugins-work/plugins/projman/commands/pm-test.md | docs/COMMANDS-CHEATSHEET.md README.md +2026-02-03T21:08:54 | skills | /home/lmiranda/claude-plugins-work/plugins/projman/skills/review-checklist.md | README.md +2026-02-03T21:08:55 | skills | /home/lmiranda/claude-plugins-work/plugins/projman/skills/visual-output.md | README.md +2026-02-03T21:08:58 | skills | /home/lmiranda/claude-plugins-work/plugins/projman/skills/setup-workflows.md | README.md +2026-02-03T21:08:59 | skills | /home/lmiranda/claude-plugins-work/plugins/git-flow/skills/sync-workflow.md | README.md +2026-02-03T21:09:00 | skills | /home/lmiranda/claude-plugins-work/plugins/git-flow/skills/commit-conventions.md | README.md +2026-02-03T21:09:00 | skills | /home/lmiranda/claude-plugins-work/plugins/git-flow/skills/merge-workflow.md | README.md +2026-02-03T21:09:08 | commands | /home/lmiranda/claude-plugins-work/plugins/projman/commands/pm-setup.md | docs/COMMANDS-CHEATSHEET.md README.md +2026-02-03T21:09:08 | commands | /home/lmiranda/claude-plugins-work/plugins/data-platform/commands/data-setup.md | docs/COMMANDS-CHEATSHEET.md README.md +2026-02-03T21:09:10 | commands | /home/lmiranda/claude-plugins-work/plugins/data-platform/commands/data-run.md | docs/COMMANDS-CHEATSHEET.md README.md +2026-02-03T21:09:10 | commands | /home/lmiranda/claude-plugins-work/plugins/contract-validator/commands/cv-setup.md | docs/COMMANDS-CHEATSHEET.md README.md +2026-02-03T21:09:11 | commands | /home/lmiranda/claude-plugins-work/plugins/projman/commands/pm-debug.md | docs/COMMANDS-CHEATSHEET.md README.md +2026-02-03T21:09:13 | agents | /home/lmiranda/claude-plugins-work/plugins/contract-validator/agents/full-validation.md | README.md CLAUDE.md +2026-02-03T21:09:14 | commands | /home/lmiranda/claude-plugins-work/plugins/data-platform/commands/data-ingest.md | docs/COMMANDS-CHEATSHEET.md README.md +2026-02-03T21:09:18 | commands | /home/lmiranda/claude-plugins-work/plugins/data-platform/commands/data-profile.md | docs/COMMANDS-CHEATSHEET.md README.md +2026-02-03T21:09:18 | commands | /home/lmiranda/claude-plugins-work/plugins/viz-platform/commands/viz-setup.md | docs/COMMANDS-CHEATSHEET.md README.md +2026-02-03T21:09:20 | commands | /home/lmiranda/claude-plugins-work/plugins/data-platform/commands/data-schema.md | docs/COMMANDS-CHEATSHEET.md README.md +2026-02-03T21:09:20 | commands | /home/lmiranda/claude-plugins-work/plugins/viz-platform/commands/viz-theme.md | docs/COMMANDS-CHEATSHEET.md README.md +2026-02-03T21:09:23 | commands | /home/lmiranda/claude-plugins-work/plugins/viz-platform/commands/viz-theme-new.md | docs/COMMANDS-CHEATSHEET.md README.md +2026-02-03T21:09:24 | commands | /home/lmiranda/claude-plugins-work/plugins/data-platform/commands/data-explain.md | docs/COMMANDS-CHEATSHEET.md README.md +2026-02-03T21:09:26 | commands | /home/lmiranda/claude-plugins-work/plugins/data-platform/commands/data-lineage.md | docs/COMMANDS-CHEATSHEET.md README.md +2026-02-03T21:09:26 | commands | /home/lmiranda/claude-plugins-work/plugins/viz-platform/commands/viz-theme-css.md | docs/COMMANDS-CHEATSHEET.md README.md +2026-02-03T21:09:29 | commands | /home/lmiranda/claude-plugins-work/plugins/viz-platform/commands/viz-chart.md | docs/COMMANDS-CHEATSHEET.md README.md +2026-02-03T21:09:32 | commands | /home/lmiranda/claude-plugins-work/plugins/viz-platform/commands/viz-chart-export.md | docs/COMMANDS-CHEATSHEET.md README.md +2026-02-03T21:09:33 | commands | /home/lmiranda/claude-plugins-work/plugins/data-platform/commands/data-review.md | docs/COMMANDS-CHEATSHEET.md README.md +2026-02-03T21:09:35 | commands | /home/lmiranda/claude-plugins-work/plugins/viz-platform/commands/viz-dashboard.md | docs/COMMANDS-CHEATSHEET.md README.md +2026-02-03T21:09:38 | commands | /home/lmiranda/claude-plugins-work/plugins/viz-platform/commands/viz-component.md | docs/COMMANDS-CHEATSHEET.md README.md +2026-02-03T21:09:40 | commands | /home/lmiranda/claude-plugins-work/plugins/viz-platform/commands/viz-breakpoints.md | docs/COMMANDS-CHEATSHEET.md README.md +2026-02-03T21:09:46 | commands | /home/lmiranda/claude-plugins-work/plugins/viz-platform/commands/design-review.md | docs/COMMANDS-CHEATSHEET.md README.md +2026-02-03T21:10:22 | commands | /home/lmiranda/claude-plugins-work/plugins/viz-platform/commands/accessibility-check.md | docs/COMMANDS-CHEATSHEET.md README.md diff --git a/plugins/cmdb-assistant/commands/cmdb-setup.md b/plugins/cmdb-assistant/commands/cmdb-setup.md index e89758e..90ecb9a 100644 --- a/plugins/cmdb-assistant/commands/cmdb-setup.md +++ b/plugins/cmdb-assistant/commands/cmdb-setup.md @@ -18,7 +18,7 @@ Configure the cmdb-assistant plugin with NetBox integration. ## Usage ``` -/initial-setup +/cmdb-setup ``` ## Instructions diff --git a/plugins/cmdb-assistant/skills/visual-header.md b/plugins/cmdb-assistant/skills/visual-header.md index 0c726e8..972ceca 100644 --- a/plugins/cmdb-assistant/skills/visual-header.md +++ b/plugins/cmdb-assistant/skills/visual-header.md @@ -24,7 +24,7 @@ Standard visual header for cmdb-assistant commands. | `/cmdb-topology` | Topology | | `/change-audit` | Change Audit | | `/ip-conflicts` | IP Conflict Detection | -| `/initial-setup` | Setup Wizard | +| `/cmdb-setup` | Setup Wizard | | Agent mode | Infrastructure Management | ## Usage diff --git a/plugins/contract-validator/agents/full-validation.md b/plugins/contract-validator/agents/full-validation.md index 01f1272..7acd9c1 100644 --- a/plugins/contract-validator/agents/full-validation.md +++ b/plugins/contract-validator/agents/full-validation.md @@ -100,5 +100,5 @@ You are a contract validation specialist. Your role is to perform comprehensive 2. Parses all README.md files 3. Runs 66 pairwise compatibility checks 4. Finds 3 errors, 4 warnings -5. Reports: "Command conflict: projman and data-platform both define /initial-setup" +5. Reports: "Command conflict: pluginA and pluginB both define /setup" 6. Suggests: "Rename one command to avoid ambiguity" diff --git a/plugins/contract-validator/commands/cv-setup.md b/plugins/contract-validator/commands/cv-setup.md index 687e6fa..ec0f467 100644 --- a/plugins/contract-validator/commands/cv-setup.md +++ b/plugins/contract-validator/commands/cv-setup.md @@ -2,7 +2,7 @@ description: Interactive setup wizard for contract-validator plugin --- -# /initial-setup - Contract-Validator Setup Wizard +# /cv-setup - Contract Validator Setup Wizard ## Skills to Load - skills/visual-output.md diff --git a/plugins/contract-validator/skills/mcp-tools-reference.md b/plugins/contract-validator/skills/mcp-tools-reference.md index df8d352..4802edd 100644 --- a/plugins/contract-validator/skills/mcp-tools-reference.md +++ b/plugins/contract-validator/skills/mcp-tools-reference.md @@ -65,6 +65,6 @@ Available MCP tools for contract-validator operations. ## Error Handling If MCP tools fail: -1. Check if `/initial-setup` has been run +1. Check if `/cv-setup` has been run 2. Verify session was restarted after setup 3. Check MCP server venv exists and is valid diff --git a/plugins/data-platform/claude-md-integration.md b/plugins/data-platform/claude-md-integration.md index 3ccab0a..15da3c9 100644 --- a/plugins/data-platform/claude-md-integration.md +++ b/plugins/data-platform/claude-md-integration.md @@ -18,12 +18,12 @@ This project uses the data-platform plugin for data engineering workflows. | Command | Purpose | |---------|---------| -| `/ingest` | Load data from files or database | -| `/profile` | Generate statistical profile | -| `/schema` | Show schema information | -| `/explain` | Explain dbt model | -| `/lineage` | Show data lineage | -| `/run` | Execute dbt models | +| `/data-ingest` | Load data from files or database | +| `/data-profile` | Generate statistical profile | +| `/data-schema` | Show schema information | +| `/data-explain` | Explain dbt model | +| `/data-lineage` | Show data lineage | +| `/data-run` | Execute dbt models | ### data_ref Convention @@ -36,9 +36,9 @@ DataFrames are stored with references. Use meaningful names: ### dbt Workflow -1. Always validate before running: `/run` includes automatic `dbt_parse` +1. Always validate before running: `/data-run` includes automatic `dbt_parse` 2. For dbt 1.9+, check for deprecated syntax before commits -3. Use `/lineage` to understand impact of changes +3. Use `/data-lineage` to understand impact of changes ### Database Access @@ -69,22 +69,22 @@ DATA_PLATFORM_MAX_ROWS=100000 ### Data Exploration ``` -/ingest data/raw_customers.csv -/profile raw_customers -/schema +/data-ingest data/raw_customers.csv +/data-profile raw_customers +/data-schema ``` ### ETL Development ``` -/schema orders # Understand source -/explain stg_orders # Understand transformation -/run stg_orders # Test the model -/lineage fct_orders # Check downstream impact +/data-schema orders # Understand source +/data-explain stg_orders # Understand transformation +/data-run stg_orders # Test the model +/data-lineage fct_orders # Check downstream impact ``` ### Database Analysis ``` -/schema # List all tables +/data-schema # List all tables pg_columns orders # Detailed schema st_tables # Find spatial data ``` diff --git a/plugins/data-platform/commands/data-explain.md b/plugins/data-platform/commands/data-explain.md index 0d34273..8a38d7f 100644 --- a/plugins/data-platform/commands/data-explain.md +++ b/plugins/data-platform/commands/data-explain.md @@ -1,4 +1,4 @@ -# /explain - dbt Model Explanation +# /data-explain - dbt Model Explanation ## Skills to Load - skills/dbt-workflow.md @@ -13,7 +13,7 @@ Display header: `DATA-PLATFORM - Model Explanation` ## Usage ``` -/explain +/data-explain ``` ## Workflow @@ -26,8 +26,8 @@ Display header: `DATA-PLATFORM - Model Explanation` ## Examples ``` -/explain dim_customers -/explain fct_orders +/data-explain dim_customers +/data-explain fct_orders ``` ## Required MCP Tools diff --git a/plugins/data-platform/commands/data-ingest.md b/plugins/data-platform/commands/data-ingest.md index 9089dea..ffc423f 100644 --- a/plugins/data-platform/commands/data-ingest.md +++ b/plugins/data-platform/commands/data-ingest.md @@ -1,4 +1,4 @@ -# /ingest - Data Ingestion +# /data-ingest - Data Ingestion ## Skills to Load - skills/mcp-tools-reference.md @@ -11,7 +11,7 @@ Display header: `DATA-PLATFORM - Ingest` ## Usage ``` -/ingest [source] +/data-ingest [source] ``` ## Workflow @@ -31,9 +31,9 @@ Display header: `DATA-PLATFORM - Ingest` ## Examples ``` -/ingest data/sales.csv -/ingest data/customers.parquet -/ingest "SELECT * FROM orders WHERE created_at > '2024-01-01'" +/data-ingest data/sales.csv +/data-ingest data/customers.parquet +/data-ingest "SELECT * FROM orders WHERE created_at > '2024-01-01'" ``` ## Required MCP Tools diff --git a/plugins/data-platform/commands/data-lineage.md b/plugins/data-platform/commands/data-lineage.md index 19eaf3a..087c814 100644 --- a/plugins/data-platform/commands/data-lineage.md +++ b/plugins/data-platform/commands/data-lineage.md @@ -1,4 +1,4 @@ -# /lineage - Data Lineage Visualization +# /data-lineage - Data Lineage Visualization ## Skills to Load - skills/lineage-analysis.md @@ -12,7 +12,7 @@ Display header: `DATA-PLATFORM - Lineage` ## Usage ``` -/lineage [--depth N] +/data-lineage [--depth N] ``` ## Workflow @@ -25,8 +25,8 @@ Display header: `DATA-PLATFORM - Lineage` ## Examples ``` -/lineage dim_customers -/lineage fct_orders --depth 3 +/data-lineage dim_customers +/data-lineage fct_orders --depth 3 ``` ## Required MCP Tools diff --git a/plugins/data-platform/commands/data-profile.md b/plugins/data-platform/commands/data-profile.md index 965c949..100cf9b 100644 --- a/plugins/data-platform/commands/data-profile.md +++ b/plugins/data-platform/commands/data-profile.md @@ -1,4 +1,4 @@ -# /profile - Data Profiling +# /data-profile - Data Profiling ## Skills to Load - skills/data-profiling.md @@ -12,7 +12,7 @@ Display header: `DATA-PLATFORM - Data Profile` ## Usage ``` -/profile +/data-profile ``` ## Workflow @@ -27,8 +27,8 @@ Execute `skills/data-profiling.md` profiling workflow: ## Examples ``` -/profile sales_data -/profile df_a1b2c3d4 +/data-profile sales_data +/data-profile df_a1b2c3d4 ``` ## Required MCP Tools diff --git a/plugins/data-platform/commands/data-review.md b/plugins/data-platform/commands/data-review.md index 229d102..0d450a0 100644 --- a/plugins/data-platform/commands/data-review.md +++ b/plugins/data-platform/commands/data-review.md @@ -145,5 +145,5 @@ Use `/data-gate` when you want to automate. ## Related Commands - `/data-gate` - Binary pass/fail for automation -- `/lineage` - Visualize dbt model dependencies -- `/schema` - Explore database schema +- `/data-lineage` - Visualize dbt model dependencies +- `/data-schema` - Explore database schema diff --git a/plugins/data-platform/commands/data-run.md b/plugins/data-platform/commands/data-run.md index d7a3141..e1df4b1 100644 --- a/plugins/data-platform/commands/data-run.md +++ b/plugins/data-platform/commands/data-run.md @@ -1,4 +1,4 @@ -# /run - Execute dbt Models +# /data-run - Execute dbt Models ## Skills to Load - skills/dbt-workflow.md @@ -12,7 +12,7 @@ Display header: `DATA-PLATFORM - dbt Run` ## Usage ``` -/run [model_selection] [--full-refresh] +/data-run [model_selection] [--full-refresh] ``` ## Workflow @@ -30,11 +30,11 @@ See `skills/dbt-workflow.md` for full selection patterns. ## Examples ``` -/run # Run all models -/run dim_customers # Run specific model -/run +fct_orders # Run model and upstream -/run tag:daily # Run models with tag -/run --full-refresh # Rebuild incremental models +/data-run # Run all models +/data-run dim_customers # Run specific model +/data-run +fct_orders # Run model and upstream +/data-run tag:daily # Run models with tag +/data-run --full-refresh # Rebuild incremental models ``` ## Required MCP Tools diff --git a/plugins/data-platform/commands/data-schema.md b/plugins/data-platform/commands/data-schema.md index 969921f..e22c874 100644 --- a/plugins/data-platform/commands/data-schema.md +++ b/plugins/data-platform/commands/data-schema.md @@ -1,4 +1,4 @@ -# /schema - Schema Exploration +# /data-schema - Schema Exploration ## Skills to Load - skills/mcp-tools-reference.md @@ -11,7 +11,7 @@ Display header: `DATA-PLATFORM - Schema Explorer` ## Usage ``` -/schema [table_name | data_ref] +/data-schema [table_name | data_ref] ``` ## Workflow @@ -30,9 +30,9 @@ Display header: `DATA-PLATFORM - Schema Explorer` ## Examples ``` -/schema # List all tables and DataFrames -/schema customers # Show table schema -/schema sales_data # Show DataFrame schema +/data-schema # List all tables and DataFrames +/data-schema customers # Show table schema +/data-schema sales_data # Show DataFrame schema ``` ## Required MCP Tools diff --git a/plugins/data-platform/commands/data-setup.md b/plugins/data-platform/commands/data-setup.md index a8d82b6..5aced28 100644 --- a/plugins/data-platform/commands/data-setup.md +++ b/plugins/data-platform/commands/data-setup.md @@ -1,4 +1,4 @@ -# /initial-setup - Data Platform Setup Wizard +# /data-setup - Data Platform Setup Wizard ## Skills to Load - skills/setup-workflow.md @@ -11,7 +11,7 @@ Display header: `DATA-PLATFORM - Setup Wizard` ## Usage ``` -/initial-setup +/data-setup ``` ## Workflow diff --git a/plugins/git-flow/claude-md-integration.md b/plugins/git-flow/claude-md-integration.md index 4236eee..a6c54c9 100644 --- a/plugins/git-flow/claude-md-integration.md +++ b/plugins/git-flow/claude-md-integration.md @@ -40,9 +40,9 @@ Use conventional commits: | Command | Use Case | |---------|----------| -| `/commit` | Create commit with smart message | -| `/commit-push` | Commit and push | -| `/commit-merge` | Commit and merge to base | +| `/git-commit` | Create commit with smart message | +| `/git-commit-push` | Commit and push | +| `/git-commit-merge` | Commit and merge to base | | `/branch-start` | Start new branch | | `/git-status` | Enhanced status | diff --git a/plugins/git-flow/commands/git-commit-merge.md b/plugins/git-flow/commands/git-commit-merge.md index 5f923b6..24c36d9 100644 --- a/plugins/git-flow/commands/git-commit-merge.md +++ b/plugins/git-flow/commands/git-commit-merge.md @@ -1,10 +1,10 @@ --- -name: commit-merge +name: git-commit-merge description: Commit current changes and merge branch into target agent: git-assistant --- -# /commit-merge - Commit and Merge +# /git-commit-merge - Commit and Merge ## Skills @@ -29,7 +29,7 @@ Commit current changes, then merge the current branch into a target branch. ## Workflow 1. **Display header** - Show GIT-FLOW Commit & Merge header -2. **Run /commit** - Execute standard commit workflow +2. **Run /git-commit** - Execute standard commit workflow 3. **Identify target** - Prompt for target branch if not specified 4. **Select strategy** - Merge commit, squash, or rebase (per merge-workflow.md) 5. **Execute merge** - Switch to target, pull, merge, push diff --git a/plugins/git-flow/commands/git-commit-push.md b/plugins/git-flow/commands/git-commit-push.md index 29814ad..4607338 100644 --- a/plugins/git-flow/commands/git-commit-push.md +++ b/plugins/git-flow/commands/git-commit-push.md @@ -1,10 +1,10 @@ --- -name: commit-push +name: git-commit-push description: Create a commit and push to remote in one operation agent: git-assistant --- -# /commit-push - Commit and Push +# /git-commit-push - Commit and Push ## Skills @@ -28,7 +28,7 @@ Create a commit and push to the remote repository in one operation. ## Workflow 1. **Display header** - Show GIT-FLOW Commit & Push header -2. **Run /commit** - Execute standard commit workflow +2. **Run /git-commit** - Execute standard commit workflow 3. **Check upstream** - Set up tracking if needed (`git push -u`) 4. **Push** - Push to remote 5. **Handle conflicts** - Offer rebase/merge/force if push fails (per sync-workflow.md) diff --git a/plugins/git-flow/commands/git-commit-sync.md b/plugins/git-flow/commands/git-commit-sync.md index cf12e54..d69a044 100644 --- a/plugins/git-flow/commands/git-commit-sync.md +++ b/plugins/git-flow/commands/git-commit-sync.md @@ -1,10 +1,10 @@ --- -name: commit-sync +name: git-commit-sync description: Commit, push, and sync with base branch agent: git-assistant --- -# /commit-sync - Commit, Push, and Sync +# /git-commit-sync - Commit, Push, and Sync ## Skills @@ -28,7 +28,7 @@ Full sync operation: commit local changes, push to remote, sync with upstream/ba ## Workflow 1. **Display header** - Show GIT-FLOW Commit Sync header -2. **Run /commit** - Execute standard commit workflow +2. **Run /git-commit** - Execute standard commit workflow 3. **Push to remote** - Push committed changes 4. **Fetch with prune** - `git fetch --all --prune` 5. **Sync with base** - Rebase on base branch (per sync-workflow.md) diff --git a/plugins/git-flow/commands/git-commit.md b/plugins/git-flow/commands/git-commit.md index e49f48a..92a1a60 100644 --- a/plugins/git-flow/commands/git-commit.md +++ b/plugins/git-flow/commands/git-commit.md @@ -1,10 +1,10 @@ --- -name: commit +name: git-commit description: Create a git commit with auto-generated conventional commit message agent: git-assistant --- -# /commit - Smart Commit +# /git-commit - Smart Commit ## Skills diff --git a/plugins/git-flow/skills/commit-conventions.md b/plugins/git-flow/skills/commit-conventions.md index c98e4bf..8fa0351 100644 --- a/plugins/git-flow/skills/commit-conventions.md +++ b/plugins/git-flow/skills/commit-conventions.md @@ -6,7 +6,7 @@ Defines conventional commit message format for consistent, parseable commit hist ## When to Use -- Generating commit messages in `/commit` +- Generating commit messages in `/git-commit` - Validating user-provided commit messages - Explaining commit format to users diff --git a/plugins/git-flow/skills/merge-workflow.md b/plugins/git-flow/skills/merge-workflow.md index 33cf689..b8374d8 100644 --- a/plugins/git-flow/skills/merge-workflow.md +++ b/plugins/git-flow/skills/merge-workflow.md @@ -6,7 +6,7 @@ Defines merge strategies, conflict resolution approaches, and post-merge cleanup ## When to Use -- Merging feature branches in `/commit-merge` +- Merging feature branches in `/git-commit-merge` - Resolving conflicts during sync operations - Cleaning up after successful merges diff --git a/plugins/git-flow/skills/sync-workflow.md b/plugins/git-flow/skills/sync-workflow.md index 7029812..70d721b 100644 --- a/plugins/git-flow/skills/sync-workflow.md +++ b/plugins/git-flow/skills/sync-workflow.md @@ -6,8 +6,8 @@ Defines push/pull patterns, rebase strategies, upstream tracking, and stale bran ## When to Use -- Pushing commits in `/commit-push` -- Full sync operations in `/commit-sync` +- Pushing commits in `/git-commit-push` +- Full sync operations in `/git-commit-sync` - Detecting and reporting stale branches ## Push Workflow diff --git a/plugins/pr-review/commands/project-init.md b/plugins/pr-review/commands/project-init.md index 3a285aa..e25ac94 100644 --- a/plugins/pr-review/commands/project-init.md +++ b/plugins/pr-review/commands/project-init.md @@ -17,13 +17,13 @@ Display header: `PR-REVIEW - Project Setup` Fast setup when system-level config already exists. -**Use when:** Already ran `/initial-setup`, starting new project +**Use when:** Already ran `/pr-setup`, starting new project ## Workflow ### Pre-Flight Check -Verify `~/.config/claude/gitea.env` exists. If missing: redirect to `/initial-setup` +Verify `~/.config/claude/gitea.env` exists. If missing: redirect to `/pr-setup` ### Project Setup diff --git a/plugins/projman/claude-md-integration.md b/plugins/projman/claude-md-integration.md index 9d1d40b..19d0dbc 100644 --- a/plugins/projman/claude-md-integration.md +++ b/plugins/projman/claude-md-integration.md @@ -11,7 +11,7 @@ This project uses the **projman** plugin for sprint planning and project managem | `/sprint-status` | Check current sprint progress and identify blockers | | `/sprint-close` | Complete sprint and capture lessons learned to Gitea Wiki | | `/labels-sync` | Synchronize label taxonomy from Gitea | -| `/initial-setup` | Run initial setup for projman plugin | +| `/pm-setup` | Run initial setup for projman plugin | | `/rfc create` | Create new RFC from conversation or clarified spec | | `/rfc list` | List all RFCs grouped by status | | `/rfc review` | Submit Draft RFC for review | diff --git a/plugins/projman/commands/pm-debug.md b/plugins/projman/commands/pm-debug.md index 5cda448..89a71fe 100644 --- a/plugins/projman/commands/pm-debug.md +++ b/plugins/projman/commands/pm-debug.md @@ -2,7 +2,7 @@ description: Diagnose issues and create reports, or investigate existing diagnostic issues --- -# Debug +# PM Debug ## Skills Required @@ -17,9 +17,9 @@ Unified debugging command for diagnostics and issue investigation. ## Invocation ``` -/debug # Ask which mode -/debug report # Run diagnostics, create issue -/debug review # Investigate existing issues +/pm-debug # Ask which mode +/pm-debug report # Run diagnostics, create issue +/pm-debug review # Investigate existing issues ``` ## Mode Selection diff --git a/plugins/projman/commands/pm-review.md b/plugins/projman/commands/pm-review.md index 7c44e9a..92781b9 100644 --- a/plugins/projman/commands/pm-review.md +++ b/plugins/projman/commands/pm-review.md @@ -3,7 +3,7 @@ description: Pre-sprint-close code quality review agent: code-reviewer --- -# Code Review for Sprint Close +# PM Review - Code Review for Sprint Close ## Skills Required @@ -16,7 +16,7 @@ Review recent code changes for quality issues before closing the sprint. ## Invocation -Run `/review` before `/sprint-close` to catch issues. +Run `/pm-review` before `/sprint-close` to catch issues. ## Workflow diff --git a/plugins/projman/commands/pm-setup.md b/plugins/projman/commands/pm-setup.md index ac70dd4..e7c1ed2 100644 --- a/plugins/projman/commands/pm-setup.md +++ b/plugins/projman/commands/pm-setup.md @@ -2,7 +2,7 @@ description: Configure projman - full setup, quick project init, or sync after repo move --- -# Setup +# PM Setup ## Skills Required @@ -22,11 +22,11 @@ Unified setup command for all configuration needs. ## Invocation ``` -/setup # Auto-detect appropriate mode -/setup --full # Full wizard (MCP + system + project) -/setup --quick # Project-only setup -/setup --sync # Update after repo move -/setup --clear-cache # Clear plugin cache (between sessions only) +/pm-setup # Auto-detect appropriate mode +/pm-setup --full # Full wizard (MCP + system + project) +/pm-setup --quick # Project-only setup +/pm-setup --sync # Update after repo move +/pm-setup --clear-cache # Clear plugin cache (between sessions only) ``` ## Mode Detection diff --git a/plugins/projman/commands/pm-test.md b/plugins/projman/commands/pm-test.md index 2df4020..82dccbb 100644 --- a/plugins/projman/commands/pm-test.md +++ b/plugins/projman/commands/pm-test.md @@ -2,7 +2,7 @@ description: Run tests with coverage or generate tests for specified code --- -# Test +# PM Test ## Skills Required @@ -15,13 +15,13 @@ Unified testing command for running tests and generating new tests. ## Invocation ``` -/test # Default: run tests -/test run # Run tests, check coverage -/test run --coverage # Run with coverage report -/test run --verbose # Verbose output -/test gen # Generate tests for target -/test gen --type=unit # Specific test type -/test gen --framework=jest # Specific framework +/pm-test # Default: run tests +/pm-test run # Run tests, check coverage +/pm-test run --coverage # Run with coverage report +/pm-test run --verbose # Verbose output +/pm-test gen # Generate tests for target +/pm-test gen --type=unit # Specific test type +/pm-test gen --framework=jest # Specific framework ``` ## Mode Selection @@ -104,15 +104,15 @@ See `skills/test-standards.md` for test patterns and structure. ## Sprint Integration -The `/test` command plays a critical role in the sprint close workflow: +The `/pm-test` command plays a critical role in the sprint close workflow: -1. After `/review` identifies code quality issues +1. After `/pm-review` identifies code quality issues 2. Before `/sprint-close` finalizes the sprint 3. The code reviewer and orchestrator reference test results when deciding if a sprint is ready to close ### Pre-Close Verification -When running `/test run` before sprint close: +When running `/pm-test run` before sprint close: 1. **Identify sprint files** - Files changed in the current sprint (via git diff against development) 2. **Check test coverage** - Report which sprint files have tests and which don't @@ -125,31 +125,31 @@ When running `/test run` before sprint close: ### Run all tests ``` -/test run +/pm-test run ``` Detects framework, runs full test suite, reports results. ### Run with coverage ``` -/test run --coverage +/pm-test run --coverage ``` Same as above plus coverage percentage per file. ### Generate tests for a specific file ``` -/test gen src/auth/jwt_service.py +/pm-test gen src/auth/jwt_service.py ``` Analyzes the file, generates a test file at `tests/test_jwt_service.py`. ### Generate specific test type ``` -/test gen src/api/routes/auth.py --type=integration +/pm-test gen src/api/routes/auth.py --type=integration ``` Generates integration tests (request/response patterns) instead of unit tests. ### Generate with specific framework ``` -/test gen src/components/Card.jsx --framework=vitest +/pm-test gen src/components/Card.jsx --framework=vitest ``` Uses Vitest instead of auto-detected framework. @@ -161,7 +161,7 @@ Uses Vitest instead of auto-detected framework. |----------|----------| | No test framework detected | List what was checked, ask user to specify test command | | Tests fail | Report failures clearly, recommend "TESTS MUST PASS before sprint close" | -| No tests exist for sprint files | Warn with file list, offer to generate with `/test gen` | +| No tests exist for sprint files | Warn with file list, offer to generate with `/pm-test gen` | | External services required | Ask for confirmation before running tests that need database/API | | Mixed framework project | Detect all frameworks, ask which to run or run all | diff --git a/plugins/projman/skills/review-checklist.md b/plugins/projman/skills/review-checklist.md index 4a0b7b7..c092c1f 100644 --- a/plugins/projman/skills/review-checklist.md +++ b/plugins/projman/skills/review-checklist.md @@ -12,7 +12,7 @@ Defines code review criteria, severity classification, and output format. ## When to Use - **Code Reviewer agent**: During pre-sprint-close review -- **Commands**: `/review` +- **Commands**: `/pm-review` --- diff --git a/plugins/projman/skills/setup-workflows.md b/plugins/projman/skills/setup-workflows.md index 7a375af..d62930d 100644 --- a/plugins/projman/skills/setup-workflows.md +++ b/plugins/projman/skills/setup-workflows.md @@ -1,6 +1,6 @@ # Setup Workflows -Shared workflows for the `/setup` command modes. +Shared workflows for the `/pm-setup` command modes. ## Mode Detection Logic diff --git a/plugins/projman/skills/sprint-lifecycle.md b/plugins/projman/skills/sprint-lifecycle.md index f36f082..2ee7060 100644 --- a/plugins/projman/skills/sprint-lifecycle.md +++ b/plugins/projman/skills/sprint-lifecycle.md @@ -20,7 +20,7 @@ Defines the valid sprint lifecycle states and transitions, enforced via labels o ``` idle -> Sprint/Planning -> Sprint/Executing -> Sprint/Reviewing -> idle - (sprint-plan) (sprint-start) (review) (sprint-close) + (sprint-plan) (sprint-start) (pm-review) (sprint-close) ``` ## State Labels @@ -30,7 +30,7 @@ idle -> Sprint/Planning -> Sprint/Executing -> Sprint/Reviewing -> idle | *(no Sprint/* label)* | `/sprint-close` or initial state | Idle - no active sprint phase | | `Sprint/Planning` | `/sprint-plan` | Planning in progress | | `Sprint/Executing` | `/sprint-start` | Execution in progress | -| `Sprint/Reviewing` | `/review` | Code review in progress | +| `Sprint/Reviewing` | `/pm-review` | Code review in progress | **Rule:** Only ONE `Sprint/*` label may exist on a milestone at a time. Setting a new one removes the previous one. @@ -42,8 +42,8 @@ idle -> Sprint/Planning -> Sprint/Executing -> Sprint/Reviewing -> idle |---------|---------------|------------|----------------| | `/sprint-plan` | idle (no Sprint/* label) | `Sprint/Planning` | Warn: "Sprint is in [state]. Run `/sprint-close` first or use `--force` to re-plan." Allow with `--force`. | | `/sprint-start` | `Sprint/Planning` | `Sprint/Executing` | Warn: "Expected Sprint/Planning state but found [state]. Run `/sprint-plan` first or use `--force`." Allow with `--force`. | -| `/review` | `Sprint/Executing` | `Sprint/Reviewing` | Warn: "Expected Sprint/Executing state but found [state]." Allow with `--force`. | -| `/sprint-close` | `Sprint/Reviewing` | Remove all Sprint/* labels (idle) | Warn: "Expected Sprint/Reviewing state but found [state]. Run `/review` first or use `--force`." Allow with `--force`. | +| `/pm-review` | `Sprint/Executing` | `Sprint/Reviewing` | Warn: "Expected Sprint/Executing state but found [state]." Allow with `--force`. | +| `/sprint-close` | `Sprint/Reviewing` | Remove all Sprint/* labels (idle) | Warn: "Expected Sprint/Reviewing state but found [state]. Run `/pm-review` first or use `--force`." Allow with `--force`. | | `/sprint-status` | Any | No change (read-only) | Display current state in output. | --- diff --git a/plugins/projman/skills/visual-output.md b/plugins/projman/skills/visual-output.md index 6924dc6..a546ca2 100644 --- a/plugins/projman/skills/visual-output.md +++ b/plugins/projman/skills/visual-output.md @@ -41,12 +41,12 @@ For commands that don't invoke a specific agent phase: | Command | Phase Emoji | Phase Name | |---------|-------------|------------| | `/sprint-status` | ๐Ÿ“Š Chart | STATUS | -| `/setup` | โš™๏ธ Gear | SETUP | -| `/debug` | ๐Ÿ› Bug | DEBUG | +| `/pm-setup` | โš™๏ธ Gear | SETUP | +| `/pm-debug` | ๐Ÿ› Bug | DEBUG | | `/labels-sync` | ๐Ÿท๏ธ Label | LABELS | | `/suggest-version` | ๐Ÿ“ฆ Package | VERSION | | `/proposal-status` | ๐Ÿ“‹ Clipboard | PROPOSALS | -| `/test` | ๐Ÿงช Flask | TEST | +| `/pm-test` | ๐Ÿงช Flask | TEST | | `/rfc` | ๐Ÿ“„ Document | RFC [Sub-Command] | --- diff --git a/plugins/viz-platform/claude-md-integration.md b/plugins/viz-platform/claude-md-integration.md index f7da582..c8ead54 100644 --- a/plugins/viz-platform/claude-md-integration.md +++ b/plugins/viz-platform/claude-md-integration.md @@ -10,12 +10,12 @@ Add this snippet to your project's CLAUDE.md to enable viz-platform capabilities This project uses viz-platform for Dash Mantine Components dashboards. ### Available Commands -- `/component {name}` - Inspect DMC component props -- `/chart {type}` - Create Plotly charts (line, bar, scatter, pie, area, histogram, box, heatmap, sunburst, treemap) -- `/dashboard {template}` - Create layouts (basic, sidebar, tabs, split) -- `/theme {name}` - Apply a theme -- `/theme-new {name}` - Create custom theme -- `/theme-css {name}` - Export theme as CSS +- `/viz-component {name}` - Inspect DMC component props +- `/viz-chart {type}` - Create Plotly charts (line, bar, scatter, pie, area, histogram, box, heatmap, sunburst, treemap) +- `/viz-dashboard {template}` - Create layouts (basic, sidebar, tabs, split) +- `/viz-theme {name}` - Apply a theme +- `/viz-theme-new {name}` - Create custom theme +- `/viz-theme-css {name}` - Export theme as CSS ### MCP Tools Available - **DMC**: list_components, get_component_props, validate_component @@ -49,8 +49,8 @@ If using with data-platform, add this section: - `/profile {data_ref}` - Statistical summary ### Visualization (viz-platform) -- `/chart {type}` - Create charts from loaded data -- `/dashboard {template}` - Build dashboard layouts +- `/viz-chart {type}` - Create charts from loaded data +- `/viz-dashboard {template}` - Build dashboard layouts ### Workflow Pattern 1. Load data: `read_csv("data.csv")` โ†’ returns `data_ref` diff --git a/plugins/viz-platform/commands/accessibility-check.md b/plugins/viz-platform/commands/accessibility-check.md index 86e116e..3a95785 100644 --- a/plugins/viz-platform/commands/accessibility-check.md +++ b/plugins/viz-platform/commands/accessibility-check.md @@ -41,5 +41,5 @@ accessibility_validate_theme(theme_name="corporate") ## Related Commands -- `/theme-new {name}` - Create accessible theme -- `/chart {type}` - Create chart (check colors after) +- `/viz-theme-new {name}` - Create accessible theme +- `/viz-chart {type}` - Create chart (check colors after) diff --git a/plugins/viz-platform/commands/design-review.md b/plugins/viz-platform/commands/design-review.md index 69a7775..172e730 100644 --- a/plugins/viz-platform/commands/design-review.md +++ b/plugins/viz-platform/commands/design-review.md @@ -61,8 +61,8 @@ Each finding includes: ## Related Commands - `/design-gate` - Binary pass/fail for sprint execution (no detailed report) -- `/component` - Inspect individual DMC component props -- `/theme` - Check active theme configuration +- `/viz-component` - Inspect individual DMC component props +- `/viz-theme` - Check active theme configuration ## Requirements diff --git a/plugins/viz-platform/commands/viz-breakpoints.md b/plugins/viz-platform/commands/viz-breakpoints.md index 62e0166..5672814 100644 --- a/plugins/viz-platform/commands/viz-breakpoints.md +++ b/plugins/viz-platform/commands/viz-breakpoints.md @@ -2,7 +2,7 @@ description: Configure responsive breakpoints for dashboard layouts --- -# Configure Breakpoints +# Viz Breakpoints ## Skills to Load - skills/mcp-tools-reference.md @@ -21,7 +21,7 @@ Configure responsive breakpoints for mobile-first design across screen sizes. ## Usage ``` -/breakpoints {layout_ref} +/viz-breakpoints {layout_ref} ``` ## Arguments @@ -30,7 +30,7 @@ Configure responsive breakpoints for mobile-first design across screen sizes. ## Workflow -1. **User invokes**: `/breakpoints my-dashboard` +1. **User invokes**: `/viz-breakpoints my-dashboard` 2. **Agent asks**: Which breakpoints to customize? (shows current settings) 3. **Agent asks**: Mobile column count? (xs, typically 1-2) 4. **Agent asks**: Tablet column count? (md, typically 4-6) @@ -39,5 +39,5 @@ Configure responsive breakpoints for mobile-first design across screen sizes. ## Related Commands -- `/dashboard {template}` - Create layout with default breakpoints -- `/theme {name}` - Theme includes default spacing values +- `/viz-dashboard {template}` - Create layout with default breakpoints +- `/viz-theme {name}` - Theme includes default spacing values diff --git a/plugins/viz-platform/commands/viz-chart-export.md b/plugins/viz-platform/commands/viz-chart-export.md index 0f25060..1f98799 100644 --- a/plugins/viz-platform/commands/viz-chart-export.md +++ b/plugins/viz-platform/commands/viz-chart-export.md @@ -2,7 +2,7 @@ description: Export a Plotly chart to PNG, SVG, or PDF format --- -# Export Chart +# Viz Chart Export ## Skills to Load - skills/mcp-tools-reference.md @@ -21,7 +21,7 @@ Export a Plotly chart to static image formats. ## Usage ``` -/chart-export {format} +/viz-chart-export {format} ``` ## Arguments @@ -38,5 +38,5 @@ Requires `kaleido` package: `pip install kaleido` ## Related Commands -- `/chart {type}` - Create a chart -- `/theme {name}` - Apply theme before export +- `/viz-chart {type}` - Create a chart +- `/viz-theme {name}` - Apply theme before export diff --git a/plugins/viz-platform/commands/viz-chart.md b/plugins/viz-platform/commands/viz-chart.md index 47ecbf3..0dc130a 100644 --- a/plugins/viz-platform/commands/viz-chart.md +++ b/plugins/viz-platform/commands/viz-chart.md @@ -2,7 +2,7 @@ description: Create a Plotly chart with theme integration --- -# Create Chart +# Viz Chart ## Skills to Load - skills/mcp-tools-reference.md @@ -21,7 +21,7 @@ Create a Plotly chart with automatic theme token application. ## Usage ``` -/chart {type} +/viz-chart {type} ``` ## Arguments @@ -36,6 +36,6 @@ chart_create(chart_type="line", data_ref="df", x="date", y="value", theme=None) ## Related Commands -- `/chart-export {format}` - Export chart to image -- `/theme {name}` - Apply theme to charts -- `/dashboard` - Create layout with charts +- `/viz-chart-export {format}` - Export chart to image +- `/viz-theme {name}` - Apply theme to charts +- `/viz-dashboard` - Create layout with charts diff --git a/plugins/viz-platform/commands/viz-component.md b/plugins/viz-platform/commands/viz-component.md index 6386706..c32f284 100644 --- a/plugins/viz-platform/commands/viz-component.md +++ b/plugins/viz-platform/commands/viz-component.md @@ -2,7 +2,7 @@ description: Inspect Dash Mantine Component props and validation --- -# Inspect Component +# Viz Component ## Skills to Load - skills/mcp-tools-reference.md @@ -21,7 +21,7 @@ Inspect a DMC component's props, types, and defaults. ## Usage ``` -/component {name} +/viz-component {name} ``` ## Arguments @@ -38,5 +38,5 @@ validate_component(component="Button", props={"variant": "filled"}) ## Related Commands -- `/chart {type}` - Create charts -- `/dashboard {template}` - Create layouts +- `/viz-chart {type}` - Create charts +- `/viz-dashboard {template}` - Create layouts diff --git a/plugins/viz-platform/commands/viz-dashboard.md b/plugins/viz-platform/commands/viz-dashboard.md index 08bef6e..1ffd99c 100644 --- a/plugins/viz-platform/commands/viz-dashboard.md +++ b/plugins/viz-platform/commands/viz-dashboard.md @@ -2,7 +2,7 @@ description: Create a dashboard layout with the layout-builder agent --- -# Create Dashboard +# Viz Dashboard ## Skills to Load - skills/mcp-tools-reference.md @@ -21,7 +21,7 @@ Create a dashboard layout with filters, grids, and sections. ## Usage ``` -/dashboard {template} +/viz-dashboard {template} ``` ## Arguments @@ -37,5 +37,5 @@ Activates **layout-builder** agent which orchestrates: ## Related Commands -- `/breakpoints {layout}` - Configure responsive breakpoints -- `/chart {type}` - Add charts to layout +- `/viz-breakpoints {layout}` - Configure responsive breakpoints +- `/viz-chart {type}` - Add charts to layout diff --git a/plugins/viz-platform/commands/viz-setup.md b/plugins/viz-platform/commands/viz-setup.md index 077b01c..2ac4cf1 100644 --- a/plugins/viz-platform/commands/viz-setup.md +++ b/plugins/viz-platform/commands/viz-setup.md @@ -2,7 +2,7 @@ description: Interactive setup wizard for viz-platform plugin --- -# Viz-Platform Setup Wizard +# Viz Setup ## Visual Output @@ -41,5 +41,5 @@ Verify MCP server loads, display summary, prompt session restart. ## Related Commands -- `/component {name}` - Inspect component props -- `/chart {type}` - Create a chart +- `/viz-component {name}` - Inspect component props +- `/viz-chart {type}` - Create a chart diff --git a/plugins/viz-platform/commands/viz-theme-css.md b/plugins/viz-platform/commands/viz-theme-css.md index c305d7d..0522d1a 100644 --- a/plugins/viz-platform/commands/viz-theme-css.md +++ b/plugins/viz-platform/commands/viz-theme-css.md @@ -2,7 +2,7 @@ description: Export a theme as CSS custom properties --- -# Export Theme as CSS +# Viz Theme CSS ## Skills to Load - skills/mcp-tools-reference.md @@ -21,7 +21,7 @@ Export a theme's design tokens as CSS custom properties. ## Usage ``` -/theme-css {name} +/viz-theme-css {name} ``` ## Arguments @@ -38,5 +38,5 @@ Use cases: external CSS, design handoff, documentation, other frameworks. ## Related Commands -- `/theme {name}` - Apply a theme -- `/theme-new {name}` - Create a new theme +- `/viz-theme {name}` - Apply a theme +- `/viz-theme-new {name}` - Create a new theme diff --git a/plugins/viz-platform/commands/viz-theme-new.md b/plugins/viz-platform/commands/viz-theme-new.md index 8cdd317..c569615 100644 --- a/plugins/viz-platform/commands/viz-theme-new.md +++ b/plugins/viz-platform/commands/viz-theme-new.md @@ -2,7 +2,7 @@ description: Create a new custom theme with design tokens --- -# Create New Theme +# Viz Theme New ## Skills to Load - skills/mcp-tools-reference.md @@ -21,7 +21,7 @@ Create a new custom theme with specified design tokens. ## Usage ``` -/theme-new {name} +/viz-theme-new {name} ``` ## Arguments @@ -37,5 +37,5 @@ theme_validate(theme_name="corporate") ## Related Commands -- `/theme {name}` - Apply a theme -- `/theme-css {name}` - Export theme as CSS +- `/viz-theme {name}` - Apply a theme +- `/viz-theme-css {name}` - Export theme as CSS diff --git a/plugins/viz-platform/commands/viz-theme.md b/plugins/viz-platform/commands/viz-theme.md index 7ebad84..dae6781 100644 --- a/plugins/viz-platform/commands/viz-theme.md +++ b/plugins/viz-platform/commands/viz-theme.md @@ -2,7 +2,7 @@ description: Apply an existing theme to the current context --- -# Apply Theme +# Viz Theme ## Skills to Load - skills/mcp-tools-reference.md @@ -21,7 +21,7 @@ Apply an existing theme to activate its design tokens. ## Usage ``` -/theme {name} +/viz-theme {name} ``` ## Arguments @@ -41,5 +41,5 @@ When activated, new charts/layouts automatically use theme tokens. ## Related Commands -- `/theme-new {name}` - Create a new theme -- `/theme-css {name}` - Export theme as CSS +- `/viz-theme-new {name}` - Create a new theme +- `/viz-theme-css {name}` - Export theme as CSS -- 2.49.1 From a04a3c7a605cac8bbe09a3a4ea695ad77537a021 Mon Sep 17 00:00:00 2001 From: lmiranda Date: Tue, 3 Feb 2026 21:19:59 -0500 Subject: [PATCH 3/5] docs: update all cross-cutting documentation for v7.0.0 namespace rename Updated: - docs/COMMANDS-CHEATSHEET.md - command reference table + all workflow examples - docs/CONFIGURATION.md - setup commands + plugin config table - README.md - all plugin command lists - CLAUDE.md - command reference tables Co-Authored-By: Claude Opus 4.5 --- CLAUDE.md | 18 ++++---- README.md | 20 ++++---- docs/COMMANDS-CHEATSHEET.md | 92 ++++++++++++++++++------------------- docs/CONFIGURATION.md | 46 +++++++++---------- 4 files changed, 88 insertions(+), 88 deletions(-) diff --git a/CLAUDE.md b/CLAUDE.md index 9c5d590..c336a61 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -129,7 +129,7 @@ These plugins exist in source but are **NOT relevant** to this project's workflo | **viz-platform** | For dashboard projects (Dash, Plotly) | | **cmdb-assistant** | For infrastructure projects (NetBox) | -**Do NOT suggest** `/ingest`, `/profile`, `/chart`, `/cmdb-*` commands - they don't apply here. +**Do NOT suggest** `/data-ingest`, `/data-profile`, `/viz-chart`, `/cmdb-*` commands - they don't apply here. ### Key Distinction @@ -180,16 +180,16 @@ A plugin marketplace for Claude Code containing: | Category | Commands | |----------|----------| -| **Setup** | `/setup` (modes: `--full`, `--quick`, `--sync`) | +| **Setup** | `/pm-setup` (modes: `--full`, `--quick`, `--sync`) | | **Sprint** | `/sprint-plan`, `/sprint-start`, `/sprint-status` (with `--diagram`), `/sprint-close` | -| **Quality** | `/review`, `/test` (modes: `run`, `gen`) | +| **Quality** | `/pm-review`, `/pm-test` (modes: `run`, `gen`) | | **Versioning** | `/suggest-version` | | **PR Review** | `/pr-review`, `/pr-summary`, `/pr-findings`, `/pr-diff` | | **Docs** | `/doc-audit`, `/doc-sync`, `/changelog-gen`, `/doc-coverage`, `/stale-docs` | | **Security** | `/security-scan`, `/refactor`, `/refactor-dry` | | **Config** | `/config-analyze`, `/config-optimize`, `/config-diff`, `/config-lint` | | **Validation** | `/validate-contracts`, `/check-agent`, `/list-interfaces`, `/dependency-graph` | -| **Debug** | `/debug` (modes: `report`, `review`) | +| **Debug** | `/pm-debug` (modes: `report`, `review`) | ### Plugin Commands - NOT RELEVANT to This Project @@ -197,8 +197,8 @@ These commands are being developed but don't apply to this project's workflow: | Category | Commands | For Projects Using | |----------|----------|-------------------| -| **Data** | `/ingest`, `/profile`, `/schema`, `/lineage`, `/dbt-test` | pandas, PostgreSQL, dbt | -| **Visualization** | `/component`, `/chart`, `/dashboard`, `/theme` | Dash, Plotly dashboards | +| **Data** | `/data-ingest`, `/data-profile`, `/data-schema`, `/data-lineage`, `/dbt-test` | pandas, PostgreSQL, dbt | +| **Visualization** | `/viz-component`, `/viz-chart`, `/viz-dashboard`, `/viz-theme` | Dash, Plotly dashboards | | **CMDB** | `/cmdb-search`, `/cmdb-device`, `/cmdb-sync` | NetBox infrastructure | ## Repository Structure @@ -449,12 +449,12 @@ See `docs/DEBUGGING-CHECKLIST.md` for systematic troubleshooting. | Symptom | Likely Cause | Fix | |---------|--------------|-----| | "X MCP servers failed" | Missing venv in installed path | `cd ~/.claude/plugins/marketplaces/leo-claude-mktplace && ./scripts/setup.sh` | -| MCP tools not available | Venv missing or .mcp.json misconfigured | Run `/debug report` to diagnose | +| MCP tools not available | Venv missing or .mcp.json misconfigured | Run `/pm-debug report` to diagnose | | Changes not taking effect | Editing source, not installed | Reinstall plugin or edit installed path | **Debug Commands:** -- `/debug report` - Run full diagnostics, create issue if needed -- `/debug review` - Investigate and propose fixes +- `/pm-debug report` - Run full diagnostics, create issue if needed +- `/pm-debug review` - Investigate and propose fixes ## Versioning Workflow diff --git a/README.md b/README.md index cb75402..3a850d4 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ AI-guided sprint planning with full Gitea integration. Transforms a proven 15-sp - Branch-aware security (development/staging/production) - Pre-sprint-close code quality review and test verification -**Commands:** `/sprint-plan`, `/sprint-start`, `/sprint-status`, `/sprint-close`, `/labels-sync`, `/setup`, `/review`, `/test`, `/debug`, `/suggest-version`, `/proposal-status`, `/rfc` +**Commands:** `/sprint-plan`, `/sprint-start`, `/sprint-status`, `/sprint-close`, `/labels-sync`, `/pm-setup`, `/pm-review`, `/pm-test`, `/pm-debug`, `/suggest-version`, `/proposal-status`, `/rfc` #### [git-flow](./plugins/git-flow) *NEW in v3.0.0* **Git Workflow Automation** @@ -33,7 +33,7 @@ Smart git operations with intelligent commit messages and branch management. - Merge and cleanup automation - Protected branch awareness -**Commands:** `/commit`, `/commit-push`, `/commit-merge`, `/commit-sync`, `/branch-start`, `/branch-cleanup`, `/git-status`, `/git-config` +**Commands:** `/git-commit`, `/git-commit-push`, `/git-commit-merge`, `/git-commit-sync`, `/branch-start`, `/branch-cleanup`, `/git-status`, `/git-config` #### [pr-review](./plugins/pr-review) *NEW in v3.0.0* **Multi-Agent PR Review** @@ -45,7 +45,7 @@ Comprehensive pull request review using specialized agents. - Actionable feedback with suggested fixes - Gitea integration for automated review submission -**Commands:** `/pr-review`, `/pr-summary`, `/pr-findings`, `/pr-diff`, `/initial-setup`, `/project-init`, `/project-sync` +**Commands:** `/pr-review`, `/pr-summary`, `/pr-findings`, `/pr-diff`, `/pr-setup`, `/project-init`, `/project-sync` #### [claude-config-maintainer](./plugins/claude-config-maintainer) **CLAUDE.md and Settings Optimization** @@ -65,7 +65,7 @@ Validate plugin marketplaces for command conflicts, tool overlaps, and broken ag - Data flow validation for agent sequences - Markdown or JSON reports with actionable suggestions -**Commands:** `/validate-contracts`, `/check-agent`, `/list-interfaces`, `/dependency-graph`, `/initial-setup` +**Commands:** `/validate-contracts`, `/check-agent`, `/list-interfaces`, `/dependency-graph`, `/cv-setup` ### Productivity @@ -108,7 +108,7 @@ Security vulnerability detection and code refactoring tools. Full CRUD operations for network infrastructure management directly from Claude Code. -**Commands:** `/initial-setup`, `/cmdb-search`, `/cmdb-device`, `/cmdb-ip`, `/cmdb-site`, `/cmdb-audit`, `/cmdb-register`, `/cmdb-sync`, `/cmdb-topology`, `/change-audit`, `/ip-conflicts` +**Commands:** `/cmdb-setup`, `/cmdb-search`, `/cmdb-device`, `/cmdb-ip`, `/cmdb-site`, `/cmdb-audit`, `/cmdb-register`, `/cmdb-sync`, `/cmdb-topology`, `/change-audit`, `/ip-conflicts` ### Data Engineering @@ -123,7 +123,7 @@ Comprehensive data engineering toolkit with persistent DataFrame storage. - 100k row limit with chunking support - Auto-detection of dbt projects -**Commands:** `/ingest`, `/profile`, `/schema`, `/explain`, `/lineage`, `/lineage-viz`, `/run`, `/dbt-test`, `/data-quality`, `/data-review`, `/data-gate`, `/initial-setup` +**Commands:** `/data-ingest`, `/data-profile`, `/data-schema`, `/data-explain`, `/data-lineage`, `/lineage-viz`, `/data-run`, `/dbt-test`, `/data-quality`, `/data-review`, `/data-gate`, `/data-setup` ### Visualization @@ -139,7 +139,7 @@ Visualization toolkit with version-locked component validation and design token - 5 Page tools for multi-page app structure - Dual theme storage: user-level and project-level -**Commands:** `/chart`, `/chart-export`, `/dashboard`, `/theme`, `/theme-new`, `/theme-css`, `/component`, `/accessibility-check`, `/breakpoints`, `/design-review`, `/design-gate`, `/initial-setup` +**Commands:** `/viz-chart`, `/viz-chart-export`, `/viz-dashboard`, `/viz-theme`, `/viz-theme-new`, `/viz-theme-css`, `/viz-component`, `/accessibility-check`, `/viz-breakpoints`, `/design-review`, `/design-gate`, `/viz-setup` ## Domain Advisory Pattern @@ -255,7 +255,7 @@ Add to `.claude/settings.json` in your target project: After installing plugins, run the setup wizard: ``` -/initial-setup +/pm-setup ``` The wizard handles everything: @@ -315,8 +315,8 @@ After installing plugins, the `/plugin` command may show `(no content)` - this i | code-sentinel | `/code-sentinel:security-scan` | | claude-config-maintainer | `/claude-config-maintainer:analyze` | | cmdb-assistant | `/cmdb-assistant:cmdb-search` | -| data-platform | `/data-platform:ingest` | -| viz-platform | `/viz-platform:chart` | +| data-platform | `/data-platform:data-ingest` | +| viz-platform | `/viz-platform:viz-chart` | | contract-validator | `/contract-validator:validate-contracts` | ## Repository Structure diff --git a/docs/COMMANDS-CHEATSHEET.md b/docs/COMMANDS-CHEATSHEET.md index 4a892f1..b42212a 100644 --- a/docs/COMMANDS-CHEATSHEET.md +++ b/docs/COMMANDS-CHEATSHEET.md @@ -11,25 +11,25 @@ Quick reference for all commands in the Leo Claude Marketplace. | **projman** | `/sprint-plan` | | X | Start sprint planning with AI-guided architecture analysis and issue creation | | **projman** | `/sprint-start` | | X | Begin sprint execution with dependency analysis and parallel task coordination (requires approval or `--force`) | | **projman** | `/sprint-status` | | X | Check current sprint progress (add `--diagram` for Mermaid visualization) | -| **projman** | `/review` | | X | Pre-sprint-close code quality review (debug artifacts, security, error handling) | -| **projman** | `/test` | | X | Run tests (`/test run`) or generate tests (`/test gen `) | +| **projman** | `/pm-review` | | X | Pre-sprint-close code quality review (debug artifacts, security, error handling) | +| **projman** | `/pm-test` | | X | Run tests (`/pm-test run`) or generate tests (`/pm-test gen `) | | **projman** | `/sprint-close` | | X | Complete sprint and capture lessons learned to Gitea Wiki | | **projman** | `/labels-sync` | | X | Synchronize label taxonomy from Gitea | -| **projman** | `/setup` | | X | Auto-detect mode or use `--full`, `--quick`, `--sync`, `--clear-cache` | -| **projman** | *SessionStart hook* | X | | Detects git remote vs .env mismatch, warns to run `/setup --sync` | -| **projman** | `/debug` | | X | Diagnostics (`/debug report`) or investigate (`/debug review`) | +| **projman** | `/pm-setup` | | X | Auto-detect mode or use `--full`, `--quick`, `--sync`, `--clear-cache` | +| **projman** | *SessionStart hook* | X | | Detects git remote vs .env mismatch, warns to run `/pm-setup --sync` | +| **projman** | `/pm-debug` | | X | Diagnostics (`/pm-debug report`) or investigate (`/pm-debug review`) | | **projman** | `/suggest-version` | | X | Analyze CHANGELOG and recommend semantic version bump | | **projman** | `/proposal-status` | | X | View proposal and implementation hierarchy with status | | **projman** | `/rfc` | | X | RFC lifecycle management (`/rfc create\|list\|review\|approve\|reject`) | -| **git-flow** | `/commit` | | X | Create commit with auto-generated conventional message | -| **git-flow** | `/commit-push` | | X | Commit and push to remote in one operation | -| **git-flow** | `/commit-merge` | | X | Commit current changes, then merge into target branch | -| **git-flow** | `/commit-sync` | | X | Full sync: commit, push, and sync with upstream/base branch | +| **git-flow** | `/git-commit` | | X | Create commit with auto-generated conventional message | +| **git-flow** | `/git-commit-push` | | X | Commit and push to remote in one operation | +| **git-flow** | `/git-commit-merge` | | X | Commit current changes, then merge into target branch | +| **git-flow** | `/git-commit-sync` | | X | Full sync: commit, push, and sync with upstream/base branch | | **git-flow** | `/branch-start` | | X | Create new feature/fix/chore branch with naming conventions | | **git-flow** | `/branch-cleanup` | | X | Remove merged branches locally and optionally on remote | | **git-flow** | `/git-status` | | X | Enhanced git status with recommendations | | **git-flow** | `/git-config` | | X | Configure git-flow settings for the project | -| **pr-review** | `/initial-setup` | | X | Setup wizard for pr-review (shares Gitea MCP with projman) | +| **pr-review** | `/pr-setup` | | X | Setup wizard for pr-review (shares Gitea MCP with projman) | | **pr-review** | `/project-init` | | X | Quick project setup for PR reviews | | **pr-review** | `/project-sync` | | X | Sync config with git remote after repo move/rename | | **pr-review** | *SessionStart hook* | X | | Detects git remote vs .env mismatch | @@ -57,7 +57,7 @@ Quick reference for all commands in the Leo Claude Marketplace. | **claude-config-maintainer** | `/config-audit-settings` | | X | Audit settings.local.json permissions (100-point score) | | **claude-config-maintainer** | `/config-optimize-settings` | | X | Optimize permissions (profiles, consolidation, dry-run) | | **claude-config-maintainer** | `/config-permissions-map` | | X | Visual review layer + permission coverage map | -| **cmdb-assistant** | `/initial-setup` | | X | Setup wizard for NetBox MCP server | +| **cmdb-assistant** | `/cmdb-setup` | | X | Setup wizard for NetBox MCP server | | **cmdb-assistant** | `/cmdb-search` | | X | Search NetBox for devices, IPs, sites | | **cmdb-assistant** | `/cmdb-device` | | X | Manage network devices (create, view, update, delete) | | **cmdb-assistant** | `/cmdb-ip` | | X | Manage IP addresses and prefixes | @@ -69,27 +69,27 @@ Quick reference for all commands in the Leo Claude Marketplace. | **cmdb-assistant** | `/change-audit` | | X | NetBox audit trail queries with filtering | | **cmdb-assistant** | `/ip-conflicts` | | X | Detect IP conflicts and overlapping prefixes | | **project-hygiene** | *PostToolUse hook* | X | | Removes temp files, warns about unexpected root files | -| **data-platform** | `/ingest` | | X | Load data from CSV, Parquet, JSON into DataFrame | -| **data-platform** | `/profile` | | X | Generate data profiling report with statistics | -| **data-platform** | `/schema` | | X | Explore database schemas, tables, columns | -| **data-platform** | `/explain` | | X | Explain query execution plan | -| **data-platform** | `/lineage` | | X | Show dbt model lineage and dependencies | -| **data-platform** | `/run` | | X | Run dbt models with validation | +| **data-platform** | `/data-ingest` | | X | Load data from CSV, Parquet, JSON into DataFrame | +| **data-platform** | `/data-profile` | | X | Generate data profiling report with statistics | +| **data-platform** | `/data-schema` | | X | Explore database schemas, tables, columns | +| **data-platform** | `/data-explain` | | X | Explain query execution plan | +| **data-platform** | `/data-lineage` | | X | Show dbt model lineage and dependencies | +| **data-platform** | `/data-run` | | X | Run dbt models with validation | | **data-platform** | `/lineage-viz` | | X | dbt lineage visualization as Mermaid diagrams | | **data-platform** | `/dbt-test` | | X | Formatted dbt test runner with summary and failure details | | **data-platform** | `/data-quality` | | X | DataFrame quality checks (nulls, duplicates, types, outliers) | -| **data-platform** | `/initial-setup` | | X | Setup wizard for data-platform MCP servers | +| **data-platform** | `/data-setup` | | X | Setup wizard for data-platform MCP servers | | **data-platform** | *SessionStart hook* | X | | Checks PostgreSQL connection (non-blocking warning) | -| **viz-platform** | `/initial-setup` | | X | Setup wizard for viz-platform MCP server | -| **viz-platform** | `/chart` | | X | Create Plotly charts with theme integration | -| **viz-platform** | `/dashboard` | | X | Create dashboard layouts with filters and grids | -| **viz-platform** | `/theme` | | X | Apply existing theme to visualizations | -| **viz-platform** | `/theme-new` | | X | Create new custom theme with design tokens | -| **viz-platform** | `/theme-css` | | X | Export theme as CSS custom properties | -| **viz-platform** | `/component` | | X | Inspect DMC component props and validation | -| **viz-platform** | `/chart-export` | | X | Export charts to PNG, SVG, PDF via kaleido | +| **viz-platform** | `/viz-setup` | | X | Setup wizard for viz-platform MCP server | +| **viz-platform** | `/viz-chart` | | X | Create Plotly charts with theme integration | +| **viz-platform** | `/viz-dashboard` | | X | Create dashboard layouts with filters and grids | +| **viz-platform** | `/viz-theme` | | X | Apply existing theme to visualizations | +| **viz-platform** | `/viz-theme-new` | | X | Create new custom theme with design tokens | +| **viz-platform** | `/viz-theme-css` | | X | Export theme as CSS custom properties | +| **viz-platform** | `/viz-component` | | X | Inspect DMC component props and validation | +| **viz-platform** | `/viz-chart-export` | | X | Export charts to PNG, SVG, PDF via kaleido | | **viz-platform** | `/accessibility-check` | | X | Color blind validation (WCAG contrast ratios) | -| **viz-platform** | `/breakpoints` | | X | Configure responsive layout breakpoints | +| **viz-platform** | `/viz-breakpoints` | | X | Configure responsive layout breakpoints | | **viz-platform** | `/design-review` | | X | Detailed design system audits | | **viz-platform** | `/design-gate` | | X | Binary pass/fail design system validation gates | | **viz-platform** | *SessionStart hook* | X | | Checks DMC version (non-blocking warning) | @@ -99,7 +99,7 @@ Quick reference for all commands in the Leo Claude Marketplace. | **contract-validator** | `/check-agent` | | X | Validate single agent definition | | **contract-validator** | `/list-interfaces` | | X | Show all plugin interfaces | | **contract-validator** | `/dependency-graph` | | X | Mermaid visualization of plugin dependencies | -| **contract-validator** | `/initial-setup` | | X | Setup wizard for contract-validator MCP | +| **contract-validator** | `/cv-setup` | | X | Setup wizard for contract-validator MCP | --- @@ -107,7 +107,7 @@ Quick reference for all commands in the Leo Claude Marketplace. | Category | Plugins | Primary Use | |----------|---------|-------------| -| **Setup** | projman, pr-review, cmdb-assistant, data-platform | `/setup`, `/initial-setup` | +| **Setup** | projman, pr-review, cmdb-assistant, data-platform, viz-platform, contract-validator | `/pm-setup`, `/pr-setup`, `/cmdb-setup`, `/data-setup`, `/viz-setup`, `/cv-setup` | | **Task Planning** | projman, clarity-assist | Sprint management, requirement clarification | | **Code Quality** | code-sentinel, pr-review | Security scanning, PR reviews | | **Documentation** | doc-guardian, claude-config-maintainer | Doc sync, CLAUDE.md maintenance | @@ -163,10 +163,10 @@ A typical workflow for planning and executing a feature sprint: 4. /sprint-start # Begin execution with dependency ordering 5. /branch-start feat/... # Create feature branch ... implement features ... -6. /commit # Commit with conventional message +6. /git-commit # Commit with conventional message 7. /sprint-status --diagram # Check progress with visualization -8. /review # Pre-close quality review -9. /test run # Verify test coverage +8. /pm-review # Pre-close quality review +9. /pm-test run # Verify test coverage 10. /sprint-close # Capture lessons learned ``` @@ -178,8 +178,8 @@ Quick daily workflow with git-flow: 1. /git-status # Check current state 2. /branch-start fix/... # Start bugfix branch ... make changes ... -3. /commit # Auto-generate commit message -4. /commit-push # Push to remote +3. /git-commit # Auto-generate commit message +4. /git-commit-push # Push to remote 5. /branch-cleanup # Clean merged branches ``` @@ -213,8 +213,8 @@ Safe refactoring with preview: 1. /refactor-dry # Preview opportunities 2. /security-scan # Baseline security check 3. /refactor # Apply improvements -4. /test run # Verify nothing broke -5. /commit # Commit with descriptive message +4. /pm-test run # Verify nothing broke +5. /git-commit # Commit with descriptive message ``` ### Example 6: Infrastructure Documentation @@ -233,12 +233,12 @@ Managing infrastructure with CMDB: Working with data pipelines: ``` -1. /ingest file.csv # Load data into DataFrame -2. /profile # Generate data profiling report -3. /schema # Explore database schemas -4. /lineage model_name # View dbt model dependencies -5. /run model_name # Execute dbt models -6. /explain "SELECT ..." # Analyze query execution plan +1. /data-ingest file.csv # Load data into DataFrame +2. /data-profile # Generate data profiling report +3. /data-schema # Explore database schemas +4. /data-lineage model_name # View dbt model dependencies +5. /data-run model_name # Execute dbt models +6. /data-explain "SELECT ..." # Analyze query execution plan ``` ### Example 7: First-Time Setup (New Machine) @@ -246,7 +246,7 @@ Working with data pipelines: Setting up the marketplace for the first time: ``` -1. /setup --full # Full setup: MCP + system config + project +1. /pm-setup --full # Full setup: MCP + system config + project # โ†’ Follow prompts for Gitea URL, org # โ†’ Add token manually when prompted # โ†’ Confirm repository name @@ -260,7 +260,7 @@ Setting up the marketplace for the first time: Adding a new project when system config exists: ``` -1. /setup --quick # Quick project setup (auto-detected) +1. /pm-setup --quick # Quick project setup (auto-detected) # โ†’ Confirms detected repo name # โ†’ Creates .env 2. /labels-sync # Sync Gitea labels @@ -272,8 +272,8 @@ Adding a new project when system config exists: ## Quick Tips - **Hooks run automatically** - doc-guardian and code-sentinel protect you without manual invocation -- **Use `/commit` over `git commit`** - generates better commit messages following conventions -- **Run `/review` before `/sprint-close`** - catches issues before closing the sprint +- **Use `/git-commit` over `git commit`** - generates better commit messages following conventions +- **Run `/pm-review` before `/sprint-close`** - catches issues before closing the sprint - **Use `/clarify` for vague requests** - especially helpful for complex requirements - **`/refactor-dry` is safe** - always preview before applying refactoring changes diff --git a/docs/CONFIGURATION.md b/docs/CONFIGURATION.md index 398a825..4ef59c3 100644 --- a/docs/CONFIGURATION.md +++ b/docs/CONFIGURATION.md @@ -9,7 +9,7 @@ Centralized configuration documentation for all plugins and MCP servers in the L **After installing the marketplace and plugins via Claude Code:** ``` -/setup +/pm-setup ``` The interactive wizard auto-detects what's needed and handles everything except manually adding your API tokens. @@ -25,8 +25,8 @@ The interactive wizard auto-detects what's needed and handles everything except โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ โ”‚ โ–ผ - /setup --full - (or /setup auto-detects) + /pm-setup --full + (or /pm-setup auto-detects) โ”‚ โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ” โ–ผ โ–ผ โ–ผ @@ -79,7 +79,7 @@ The interactive wizard auto-detects what's needed and handles everything except โ”‚ โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ” โ–ผ โ–ผ - /setup --quick /setup + /pm-setup --quick /pm-setup (explicit mode) (auto-detects mode) โ”‚ โ”‚ โ”‚ โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ” @@ -109,7 +109,7 @@ The interactive wizard auto-detects what's needed and handles everything except ## What Runs Automatically vs User Interaction -### `/setup --full` - Full Setup +### `/pm-setup --full` - Full Setup | Phase | Type | What Happens | |-------|------|--------------| @@ -121,7 +121,7 @@ The interactive wizard auto-detects what's needed and handles everything except | **6. Project Config** | Automated | Creates `.env` file, checks `.gitignore` | | **7. Validation** | Automated | Tests API connectivity, shows summary | -### `/setup --quick` - Quick Project Setup +### `/pm-setup --quick` - Quick Project Setup | Phase | Type | What Happens | |-------|------|--------------| @@ -136,10 +136,10 @@ The interactive wizard auto-detects what's needed and handles everything except | Mode | When to Use | What It Does | |------|-------------|--------------| -| `/setup` | Any time | Auto-detects: runs full, quick, or sync as needed | -| `/setup --full` | First time on a machine | Full setup: MCP server + system config + project config | -| `/setup --quick` | Starting a new project | Quick setup: project config only (assumes system is ready) | -| `/setup --sync` | After repo move/rename | Updates .env to match current git remote | +| `/pm-setup` | Any time | Auto-detects: runs full, quick, or sync as needed | +| `/pm-setup --full` | First time on a machine | Full setup: MCP server + system config + project config | +| `/pm-setup --quick` | Starting a new project | Quick setup: project config only (assumes system is ready) | +| `/pm-setup --sync` | After repo move/rename | Updates .env to match current git remote | **Auto-detection logic:** 1. No system config โ†’ **full** mode @@ -148,9 +148,9 @@ The interactive wizard auto-detects what's needed and handles everything except 4. Both exist, match โ†’ already configured, offer to reconfigure **Typical workflow:** -1. Install plugin โ†’ run `/setup` (auto-runs full mode) -2. Start new project โ†’ run `/setup` (auto-runs quick mode) -3. Repository moved? โ†’ run `/setup` (auto-runs sync mode) +1. Install plugin โ†’ run `/pm-setup` (auto-runs full mode) +2. Start new project โ†’ run `/pm-setup` (auto-runs quick mode) +3. Repository moved? โ†’ run `/pm-setup` (auto-runs sync mode) --- @@ -213,7 +213,7 @@ Before running `/setup`: Run the setup wizard in Claude Code: ``` -/setup +/pm-setup ``` The wizard will guide you through each step interactively and auto-detect the appropriate mode. @@ -387,18 +387,18 @@ PR_REVIEW_AUTO_SUBMIT=false | Plugin | System Config | Project Config | Setup Command | |--------|---------------|----------------|---------------| -| **projman** | gitea.env | .env (GITEA_REPO=owner/repo) | `/setup` | -| **pr-review** | gitea.env | .env (GITEA_REPO=owner/repo) | `/initial-setup` | +| **projman** | gitea.env | .env (GITEA_REPO=owner/repo) | `/pm-setup` | +| **pr-review** | gitea.env | .env (GITEA_REPO=owner/repo) | `/pr-setup` | | **git-flow** | git-flow.env (optional) | .env (optional) | None needed | | **clarity-assist** | None | None | None needed | -| **cmdb-assistant** | netbox.env | None | `/initial-setup` | -| **data-platform** | postgres.env | .env (optional) | `/initial-setup` | -| **viz-platform** | None | .env (optional DMC_VERSION) | `/initial-setup` | +| **cmdb-assistant** | netbox.env | None | `/cmdb-setup` | +| **data-platform** | postgres.env | .env (optional) | `/data-setup` | +| **viz-platform** | None | .env (optional DMC_VERSION) | `/viz-setup` | | **doc-guardian** | None | None | None needed | | **code-sentinel** | None | None | None needed | | **project-hygiene** | None | None | None needed | | **claude-config-maintainer** | None | None | None needed | -| **contract-validator** | None | None | `/initial-setup` | +| **contract-validator** | None | None | `/cv-setup` | --- @@ -408,7 +408,7 @@ Once system-level config is set up, adding new projects is simple: ``` cd ~/projects/new-project -/setup +/pm-setup ``` The command auto-detects that system config exists and runs quick project setup. @@ -631,7 +631,7 @@ For agents with 8+ skills, use **phase-based loading** in the agent body text. T ### API Validation -When running `/setup`, the command: +When running `/pm-setup`, the command: 1. **Detects** organization and repository from git remote URL 2. **Validates** via Gitea API: `GET /api/v1/repos/{org}/{repo}` @@ -646,7 +646,7 @@ When you start a Claude Code session, a hook automatically: 1. Reads `GITEA_REPO` (in `owner/repo` format) from `.env` 2. Compares with current `git remote get-url origin` -3. **Warns** if mismatch detected: "Repository location mismatch. Run `/setup --sync` to update." +3. **Warns** if mismatch detected: "Repository location mismatch. Run `/pm-setup --sync` to update." This helps when you: - Move a repository to a different organization -- 2.49.1 From 2d6fce92852a0037e32b035c188cde22ac7a6a7f Mon Sep 17 00:00:00 2001 From: lmiranda Date: Tue, 3 Feb 2026 21:21:53 -0500 Subject: [PATCH 4/5] chore: bump version to 7.0.0, add CHANGELOG entry BREAKING CHANGE: command namespace rename - see CHANGELOG.md Merged unreleased 6.0.0 content (plan-then-batch optimization) into 7.0.0. Co-Authored-By: Claude Opus 4.5 --- .claude-plugin/marketplace.json | 2 +- CHANGELOG.md | 44 ++++++++++++++++++++++++++++++++- CLAUDE.md | 4 +-- README.md | 2 +- 4 files changed, 47 insertions(+), 5 deletions(-) diff --git a/.claude-plugin/marketplace.json b/.claude-plugin/marketplace.json index d958b44..a0521bc 100644 --- a/.claude-plugin/marketplace.json +++ b/.claude-plugin/marketplace.json @@ -6,7 +6,7 @@ }, "metadata": { "description": "Project management plugins with Gitea and NetBox integrations", - "version": "5.10.0" + "version": "7.0.0" }, "plugins": [ { diff --git a/CHANGELOG.md b/CHANGELOG.md index 5681286..c676855 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,7 +8,49 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). --- -## [6.0.0] - YYYY-MM-DD +## [7.0.0] - 2026-02-03 + +### BREAKING CHANGES + +#### Command Namespace Rename + +All generic command names are now prefixed with their plugin's namespace to eliminate collisions across the marketplace. This is a **breaking change** for consuming projects โ€” update your CLAUDE.md integration snippets. + +**Full Rename Map:** + +| Plugin | Old | New | +|--------|-----|-----| +| projman | `/setup` | `/pm-setup` | +| projman | `/review` | `/pm-review` | +| projman | `/test` | `/pm-test` | +| projman | `/debug` | `/pm-debug` | +| git-flow | `/commit` | `/git-commit` | +| git-flow | `/commit-push` | `/git-commit-push` | +| git-flow | `/commit-merge` | `/git-commit-merge` | +| git-flow | `/commit-sync` | `/git-commit-sync` | +| pr-review | `/initial-setup` | `/pr-setup` | +| cmdb-assistant | `/initial-setup` | `/cmdb-setup` | +| data-platform | `/initial-setup` | `/data-setup` | +| data-platform | `/run` | `/data-run` | +| data-platform | `/ingest` | `/data-ingest` | +| data-platform | `/profile` | `/data-profile` | +| data-platform | `/schema` | `/data-schema` | +| data-platform | `/explain` | `/data-explain` | +| data-platform | `/lineage` | `/data-lineage` | +| viz-platform | `/initial-setup` | `/viz-setup` | +| viz-platform | `/theme` | `/viz-theme` | +| viz-platform | `/theme-new` | `/viz-theme-new` | +| viz-platform | `/theme-css` | `/viz-theme-css` | +| viz-platform | `/chart` | `/viz-chart` | +| viz-platform | `/chart-export` | `/viz-chart-export` | +| viz-platform | `/dashboard` | `/viz-dashboard` | +| viz-platform | `/component` | `/viz-component` | +| viz-platform | `/breakpoints` | `/viz-breakpoints` | +| contract-validator | `/initial-setup` | `/cv-setup` | + +**Migration:** Update your project's CLAUDE.md integration snippets to use the new command names. Run `/plugin list` to verify installed plugins are using v7.0.0+. + +**Unchanged:** Commands already using plugin-namespaced prefixes (`/sprint-*`, `/cmdb-*`, `/labels-sync`, `/branch-*`, `/git-status`, `/git-config`, `/pr-review`, `/pr-summary`, `/pr-findings`, `/pr-diff`, `/project-init`, `/project-sync`, `/config-*`, `/design-*`, `/data-quality`, `/data-review`, `/data-gate`, `/lineage-viz`, `/dbt-test`, `/accessibility-check`, `/validate-contracts`, `/check-agent`, `/list-interfaces`, `/dependency-graph`, `/doc-audit`, `/doc-sync`, `/security-scan`, `/refactor`, `/refactor-dry`, `/clarify`, `/suggest-version`, `/proposal-status`, `/rfc`, `/change-audit`, `/ip-conflicts`) are **not affected**. ### Added diff --git a/CLAUDE.md b/CLAUDE.md index c336a61..32059fb 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -146,7 +146,7 @@ When user says "fix the sprint-plan command", edit the SOURCE code. ## Project Overview **Repository:** leo-claude-mktplace -**Version:** 5.9.0 +**Version:** 7.0.0 **Status:** Production Ready A plugin marketplace for Claude Code containing: @@ -508,4 +508,4 @@ The script will: --- -**Last Updated:** 2026-02-02 +**Last Updated:** 2026-02-03 diff --git a/README.md b/README.md index 3a850d4..b6a55a0 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Leo Claude Marketplace - v5.10.0 +# Leo Claude Marketplace - v7.0.0 A collection of Claude Code plugins for project management, infrastructure automation, and development workflows. -- 2.49.1 From da628a3774999bec84a396abce2bbe624a25bc6c Mon Sep 17 00:00:00 2001 From: lmiranda Date: Tue, 3 Feb 2026 21:31:29 -0500 Subject: [PATCH 5/5] docs: fix remaining stale command references in UPDATING.md and CONFIGURATION.md Co-Authored-By: Claude Opus 4.5 --- docs/CONFIGURATION.md | 6 +++--- docs/UPDATING.md | 10 +++++----- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/docs/CONFIGURATION.md b/docs/CONFIGURATION.md index 4ef59c3..a838496 100644 --- a/docs/CONFIGURATION.md +++ b/docs/CONFIGURATION.md @@ -182,7 +182,7 @@ This marketplace uses a **hybrid configuration** approach: **Benefits:** - Single token per service (update once, use everywhere) -- Easy multi-project setup (just run `/setup` in each project) +- Easy multi-project setup (just run `/pm-setup` in each project) - Security (tokens never committed to git, never typed into AI chat) - Project isolation (each project can override defaults) @@ -190,7 +190,7 @@ This marketplace uses a **hybrid configuration** approach: ## Prerequisites -Before running `/setup`: +Before running `/pm-setup`: 1. **Python 3.10+** installed ```bash @@ -741,7 +741,7 @@ cat .env 3. **Never type tokens into AI chat** - Always edit config files directly in your editor - - The `/setup` wizard respects this + - The `/pm-setup` wizard respects this 4. **Rotate tokens periodically** - Every 6-12 months diff --git a/docs/UPDATING.md b/docs/UPDATING.md index b8ab16c..1375b72 100644 --- a/docs/UPDATING.md +++ b/docs/UPDATING.md @@ -46,9 +46,9 @@ cd ~/.claude/plugins/marketplaces/leo-claude-mktplace && ./scripts/setup.sh ## After Updating: Re-run Setup if Needed -### When to Re-run `/initial-setup` +### When to Re-run Setup -You typically **don't need** to re-run setup after updates. However, re-run if: +You typically **don't need** to re-run setup after updates. However, re-run your plugin's setup command (e.g., `/pm-setup`, `/pr-setup`, `/cmdb-setup`) if: - Changelog mentions **new required environment variables** - Changelog mentions **breaking changes** to configuration @@ -97,7 +97,7 @@ When updating, review if changes affect the setup workflow: 1. **Check for setup command changes:** ```bash - git diff HEAD~1 plugins/*/commands/initial-setup.md + git diff HEAD~1 plugins/*/commands/*-setup.md git diff HEAD~1 plugins/*/commands/project-init.md git diff HEAD~1 plugins/*/commands/project-sync.md ``` @@ -114,7 +114,7 @@ When updating, review if changes affect the setup workflow: **If setup commands changed:** - Review what's new (new validation steps, new prompts, etc.) -- Consider re-running `/initial-setup` or `/project-init` to benefit from improvements +- Consider re-running your plugin's setup command or `/project-init` to benefit from improvements - Existing configurations remain valid unless changelog notes breaking changes **If hooks changed:** @@ -142,7 +142,7 @@ deactivate ### Configuration no longer works 1. Check CHANGELOG.md for breaking changes -2. Run `/initial-setup` to re-validate and fix configuration +2. Run your plugin's setup command (e.g., `/pm-setup`) to re-validate and fix configuration 3. Compare your config files with documentation in `docs/CONFIGURATION.md` ### MCP server won't start after update -- 2.49.1