fix(minimal-template): remove phantom memory search / route CLI commands from docs (#48)#52
Open
ruvnet wants to merge 1 commit into
Open
fix(minimal-template): remove phantom memory search / route CLI commands from docs (#48)#52ruvnet wants to merge 1 commit into
memory search / route CLI commands from docs (#48)#52ruvnet wants to merge 1 commit into
Conversation
… / `route` CLI commands (#48) The minimal template's CLAUDE.md.tmpl advertised `memory search` and `route` commands that bin/cli.js.tmpl never implements (they fall through to the Unknown- command default, exit 2). The kernel exposes memory-ranking/routing as library primitives, not turnkey CLI commands. Fixed the docs to list only the commands the CLI actually implements (init, doctor, --version, --help) and corrected the behavioral-rules line that reinforced the false promise. Closes #48 Co-Authored-By: claude-flow <ruv@ruv.net>
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.
Fixes #48 (thanks @Tovli for the precise report).
The
minimaltemplate'sCLAUDE.md.tmpldocumented two CLI commands —memory search <query>androute <task>— thatbin/cli.js.tmplnever implements; both fall through to thedefault:Unknown commandbranch (exit 2). An agent reading the generated CLAUDE.md would confidently invoke commands that always error.As the issue notes, the published
@metaharness/kernelsurface doesn't make these turnkey (memory exposesrankWithDecay/distillTriggerre-rankers, not a string→embed→search; routing is a library subsystem). So the honest fix is docs↔code fidelity, not faking the commands:init,doctor,--version,--help) — matching cli.js's own--helptext.Scope: one file,
templates/minimal/CLAUDE.md.tmpl. No code/behavior change. Verified (per the issue) that no template implements amemory/routedispatch and only the minimal docs made the claim.🤖 Generated with claude-flow