fix(agents): restore canonical viberaven check command so agent-discovery-gate passes#68
Merged
Merged
Conversation
The agent-discovery-gate runs `viberaven doctor --agents`, which requires every core agent file to reference the canonical `npx -y viberaven check` command. These 7 files still declared the legacy `--agent-mode` command only, so the gate failed on main and on every PR. Update the canonical-command line in AGENTS.md, CLAUDE.md, GEMINI.md, .cursor/rules/viberaven-core.mdc, .github/copilot-instructions.md, .viberaven/agent-context.md, and .viberaven/mission-map.md to lead with `viberaven check` (terminal verdict) and `npx -y viberaven` (Studio), keeping `--agent-mode` as the legacy loop reference. Verified locally: `npx -y viberaven doctor --agents` now reports "All agent injection checks passed." Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
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.
Problem
agent-discovery-gaterunsnpx -y viberaven doctor --agents, which requires every core agent file to contain the canonicalnpx -y viberaven checkcommand. Seven agent files still declared only the legacy--agent-modecommand, so the gate has been failing onmain(and on every PR, e.g. #66 / #67 — which had nothing to do with the failure).Doctor output before this change:
Fix
Update the canonical-command line in each of the 7 files to lead with
npx -y viberaven check(terminal verdict) andnpx -y viberaven(Studio), keeping--agent-modeas the legacy-loop reference. One line per file, nothing else touched.Verification
npx -y viberaven doctor --agents(published 1.4.3) now reports "All agent injection checks passed." The gate on this PR should go green.🤖 Generated with Claude Code