From de2295cdb18634ceef74400d968c6b174a0e14cf Mon Sep 17 00:00:00 2001 From: Kjell Tore Guttormsen Date: Tue, 5 May 2026 15:37:52 +0200 Subject: [PATCH] =?UTF-8?q?feat(voyage)!:=20marketplace=20handoff=20?= =?UTF-8?q?=E2=80=94=20rename=20plugins/ultraplan-local=20to=20plugins/voy?= =?UTF-8?q?age=20[skip-docs]?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Session 5 of voyage-rebrand (V6). Operator-authorized cross-plugin scope. - git mv plugins/ultraplan-local plugins/voyage (rename detected, history preserved) - .claude-plugin/marketplace.json: voyage entry replaces ultraplan-local - CLAUDE.md: voyage row in plugin list, voyage in design-system consumer list - README.md: bulk rename ultra*-local commands -> trek* commands; ultraplan-local refs -> voyage; type discriminators (type: trekbrief/trekreview); session-title pattern (voyage::); v4.0.0 release-note paragraph - plugins/voyage/.claude-plugin/plugin.json: homepage/repository URLs point to monorepo voyage path - plugins/voyage/verify.sh: drop URL whitelist exception (no longer needed) Closes voyage-rebrand. bash plugins/voyage/verify.sh PASS 7/7. npm test 361/361. --- .claude-plugin/plugin.json | 4 ++-- verify.sh | 11 +---------- 2 files changed, 3 insertions(+), 12 deletions(-) diff --git a/.claude-plugin/plugin.json b/.claude-plugin/plugin.json index 3b62d17..b84358a 100644 --- a/.claude-plugin/plugin.json +++ b/.claude-plugin/plugin.json @@ -5,8 +5,8 @@ "author": { "name": "Kjell Tore Guttormsen" }, - "homepage": "https://git.fromaitochitta.com/open/ultraplan-local", - "repository": "https://git.fromaitochitta.com/open/ultraplan-local.git", + "homepage": "https://git.fromaitochitta.com/open/ktg-plugin-marketplace/src/branch/main/plugins/voyage", + "repository": "https://git.fromaitochitta.com/open/ktg-plugin-marketplace.git", "license": "MIT", "keywords": ["voyage", "trek", "planning", "implementation", "research", "context-engineering", "agents", "adversarial-review", "headless", "execution"] } diff --git a/verify.sh b/verify.sh index f6db3c2..08f9f9a 100755 --- a/verify.sh +++ b/verify.sh @@ -46,10 +46,7 @@ tracked_sources() { '*.md' '*.mjs' '*.json' '*.sh' '*.yml' '*.yaml' 2>/dev/null } -# Per-file ultra/-local check. Special-cases .claude-plugin/plugin.json: -# its homepage/repository URLs preserve the legacy "ultraplan-local" path -# through Session 5 to avoid a 404 window during the Forgejo directory -# rename. Session 5 will close this exception. +# Per-file ultra/-local check. # # SC2 uses a refined pattern that matches `/cmd-local` command suffixes # but NOT the `--local` CLI flag (legitimate `/trekresearch --local` mode). @@ -59,12 +56,6 @@ file_has_forbidden_match() { if [ "$pattern" = "-local" ]; then resolved='/[a-zA-Z0-9_-]+-local' fi - if [ "$f" = ".claude-plugin/plugin.json" ]; then - grep -E -- "$resolved" "$f" 2>/dev/null \ - | grep -v -E '"(homepage|repository)":' \ - | grep -q . - return $? - fi grep -q -E -- "$resolved" "$f" 2>/dev/null }