fix: replace stale unprefixed slash command refs with uf.* namespace - #94
Merged
yvonnedevlinrh merged 1 commit intoSep 1, 2026
Conversation
After the uf.* namespace migration, several docs, agent prompts, and command files still referenced old unprefixed command names. Update all live references to the renamed commands: - /review-council -> /uf.review-council - /review-pr -> /uf.review-pr - /address-feedback-> /uf.address-feedback - /finale -> /uf.finale - /unleash -> /uf.unleash - /cobalt-crush -> /uf.cobalt-crush Files touched: AGENTS.md, .specify/memory/constitution.md, cobalt-crush-dev.md, review-context/SKILL.md, uf.review-council.md (self-refs), uf.finale.md (self-refs), opsx-propose.md, uf.init.md, and 8 speckit.* command files (shared next-step guidance line). Left intentionally unchanged: CHANGELOG.md (documents the rename as history), openspec/ archived prose (describes past behavior in another repo), and commands not renamed (/speckit.implement, /opsx-apply). Resolves unbound-force#93. Addresses unbound-force#84.
em-redhat
approved these changes
Sep 1, 2026
em-redhat
left a comment
Contributor
There was a problem hiding this comment.
APPROVE — Clean, complete documentation fix. All 17 files correctly update stale unprefixed slash-command references to the uf.* namespace. Both linked issues (#93, #84) fully satisfied. Zero remaining stale references confirmed by git grep against PR HEAD. No governance gates weakened.
This review was generated by /uf.review-pr (AI-assisted).
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What & Why
After the
uf.*slash-command namespace migration (unbound-force#304), numerous docs, agent prompts, and command files still referenced the old unprefixed command names. Agents following these instructions literally would invoke commands that no longer resolve — most critically the Review Council PR gate inAGENTS.mdand the highest-authority constitution, creating a fail-open risk where a governance gate could be silently skipped.This PR is the comprehensive sweep tracked by #84 and also resolves the AGENTS.md-scoped subset #93.
Changes
All live references to renamed commands updated to the
uf.*namespace:/review-council/uf.review-council/review-pr/uf.review-pr/address-feedback/uf.address-feedback/finale/uf.finale/unleash/uf.unleash/cobalt-crush/uf.cobalt-crushFiles touched (17):
AGENTS.md— Review Council PR-prerequisite section (L158, L169).specify/memory/constitution.md— Code Review governance rule (L94).opencode/agents/cobalt-crush-dev.md— review-findings step.opencode/skills/review-context/SKILL.md— command dispatch table.opencode/commands/uf.review-council.md— self-references.opencode/commands/uf.finale.md— self-references.opencode/commands/opsx-propose.md— guardrail command names.opencode/commands/uf.init.md— scaffold next-step guidance.opencode/commands/speckit.*.md— shared next-step guidance lineIntentionally NOT changed
CHANGELOG.md— documents the rename as historical recordopenspec/changes/harden-handoff-dcp/*— archived prose describing past behavior in another repo, not live command dispatch/speckit.implementand/opsx-apply— not part of the renamed setVerification
Substring-safe grep (negative-lookbehind, excluding history/archive) returns zero remaining stale references to renamed commands:
Documentation/agent-prompt-only change — exempt from spec workflow and review council per AGENTS.md and the constitution. No Go source, tests, or CI config affected.
Resolves #93
Closes #84