Fix reg_list/reg_get command docs to match implementation#261
Merged
Conversation
- reg_list/reg_get take a positional registry path, not a --reg_path flag - Paths must use short hive prefixes (hklm, etc.), not HKEY_LOCAL_MACHINE - reg_list response event is REGISTRY_LIST_REP, not REG_LIST_REP Co-Authored-By: Claude Opus 4.8 (1M context) <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.
Corrects the
reg_listandreg_getentries indocs/8-reference/endpoint-commands.mdto match the actual parser inlegion_tasking-go/service/command_parser/command/{reg_list,reg_get}.go.Fixes
arg:"required,positional"), not a--reg_pathflag.reg_get's value name is likewise a positionalname, not--value_name.hkcr,hkcc,hkcu,hklm, orhku(e.g.hklm\software). A long form likeHKEY_LOCAL_MACHINEfails theregistryHives.Existscheck withINVALID_REGISTRY_PREFIX.reg_list's response event isREGISTRY_LIST_REP, notREG_LIST_REP(confirmed inedr-events.md).🤖 Generated with Claude Code