From da628a3774999bec84a396abce2bbe624a25bc6c Mon Sep 17 00:00:00 2001 From: lmiranda Date: Tue, 3 Feb 2026 21:31:29 -0500 Subject: [PATCH] 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