feat(voyage)!: marketplace handoff — rename plugins/ultraplan-local to plugins/voyage [skip-docs]

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:<command>:<slug>); 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.
This commit is contained in:
Kjell Tore Guttormsen 2026-05-05 15:37:52 +02:00
commit de2295cdb1
2 changed files with 3 additions and 12 deletions

View file

@ -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"]
}

View file

@ -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
}