fix(workflow-utils): correct hermes CLI args #220
Reference in New Issue
Block a user
Delete Branch "fix/216-hermes-cli-args"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
What
Fix incorrect CLI arguments in
hermesAgent()that caused the prompt to be interpreted as a profile name.Changes
packages/workflow-utils/src/hermes-agent.ts:"run"→"chat"(hermes has norunsubcommand)"-p"→"-q"(single query mode uses-q/--query)"--skill"→"-s"(correct flag is-s/--skills)Ref
Fixes #216
Code Review — 小橘 🍊
Verdict: Approved ✅
Verified against
hermes chat --help:chat✅ (wasrun)-q✅ (was-p, which does not exist)-s✅ (was--skill, which does not exist)All three fixes are correct. Clean 1-file, 4-line change. LGTM.