@dungle-scrubs/harness-cli-normalizer 0.4.3 → 0.4.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cli/help.d.ts +1 -1
- package/dist/cli/help.js +1 -1
- package/package.json +1 -1
- package/src/cli/help.ts +1 -1
package/dist/cli/help.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export declare const TOP_LEVEL_HELP = "hcn - One stable interface to four coding-agent CLIs\n\nUsage: hcn <command> [options] [prompt]\n\nCommands:\n run <harness> [prompt] One-shot headless turn (streamTurn)\n session <harness> Interactive session (openSession,
|
|
1
|
+
export declare const TOP_LEVEL_HELP = "hcn - One stable interface to four coding-agent CLIs\n\nUsage: hcn <command> [options] [prompt]\n\nCommands:\n run <harness> [prompt] One-shot headless turn (streamTurn)\n session <harness> Interactive session (openSession, claude + pi)\n inspect <harness> Descriptor / argv / capability inspection (no spawn)\n ls List harnesses with verifiedAgainst versions\n check Drift check (published version vs verifiedAgainst)\n\nOptions:\n -h, --help Show help\n -V, --version Show version\n\nRun 'hcn <command> --help' for command-specific help.\n";
|
|
2
2
|
export declare const RUN_HELP = "hcn run - One-shot headless turn\n\nUsage: hcn run <harness> [prompt] [options]\n\nArguments:\n <harness> claude | codex | pi | muse\n [prompt] Prompt text (positional). Must not start with '-'.\n Use --prompt or --prompt-file for leading '-' or multi-line.\n\nOptions:\n --prompt <text> Prompt text (alternative to positional)\n --prompt-file <path|-> Read prompt from file, or stdin when '-'\n --model <id> Model id (validated per harness)\n --effort <value> Effort level (validated per harness/model)\n --sandbox <value> Sandbox mode (codex only)\n --provider <value> Provider (pi only)\n --tools <a,b> Tool grant allowlist (claude, pi; a bare name\n matching a configured toolset expands to it)\n --exclude-tools <a,b> Complement over known tools (claude, pi;\n mutually exclusive with --tools)\n --autonomy Enable autonomy flag (claude/codex/muse)\n --no-autonomy Disable autonomy\n --write Enable write (muse)\n --no-write Disable write\n --shell Enable shell (muse)\n --no-shell Disable shell\n --escalate-questions Let the worker ask the caller's user when a\n genuine decision blocks progress (DEFAULT;\n prompt-preamble transport, question event +\n done cause \"awaiting-input\", exit 0)\n --no-escalate-questions Worker never asks: it states the assumption it\n proceeded under and continues\n --max-steps <n> Max steps (muse, 1-10000)\n --timeout <seconds> Wall-clock budget for the run (all harnesses,\n hcn-enforced; 0 disables; no default)\n --no-tools Disable tools discovery facet\n --no-instruction-files Disable instructionFiles discovery facet\n --no-extensions Disable extensions discovery facet\n --no-skills Disable skills discovery facet\n --cwd <path> Working directory for spawn\n --env KEY=VAL Environment (repeatable; KEY= deletes)\n --resume <uuid> Resume session id (UUID). The answer path for\n question escalation: resume with the chosen\n answer as the prompt; id continuity per\n harness (claude stable, pi/muse caller-assigned,\n codex minted via identity event)\n -- Passthrough: native harness args verbatim\n (failures surface as labeled native errors)\n --json NDJSON HarnessEvent to stdout\n -h, --help Show help\n -V, --version Show version\n\nDefaults with no flags:\n Every launch resolves args > project config (.hcn/config.json at the\n git root) > user config (~/.config/hcn/config.json) > built-in profile\n > harness default. The profile pins: effort medium, sandbox\n workspace-write (codex only; other harnesses report divergence),\n discovery on, autonomy off, write/shell on. timeout and max-steps have\n no default. Question escalation defaults ON (config key\n \"escalateQuestions\"; it is a prompt preamble, never a harness flag).\n Provenance prints to stderr on every run; see\n 'hcn inspect <harness>' for the resolved argv of a bare run.\n";
|
|
3
3
|
export declare const SESSION_HELP = "hcn session - Interactive session (claude, pi)\n\nUsage: hcn session <harness> [options]\n\nArguments:\n <harness> claude | pi (others have no sessionMode)\n\nOptions:\n --model <id> Model for the session\n --session-id <uuid> Session id (UUID, else random; re-enters an\n existing session)\n --escalate-questions Worker may ask; question renders as a pickable\n menu, the answer flows back into the SAME live\n session (DEFAULT)\n --no-escalate-questions Worker never asks; states its assumption\n --cwd <path> Working directory\n --help Show help\n --version Show version\n";
|
|
4
4
|
export declare const INSPECT_HELP = "hcn inspect - Descriptor / argv inspection\n\nUsage: hcn inspect <harness> [options]\n\nArguments:\n <harness> claude | codex | pi | muse\n\nOptions:\n --argv Preview argv that would be spawned\n --prompt <text> Prompt for argv preview\n --prompt-file <path|-> Read prompt from file\n --model <id> Model\n --effort <value> Effort\n --sandbox <value> Sandbox\n --provider <value> Provider\n --tools <a,b> Tools\n --autonomy / --no-autonomy\n --write / --no-write\n --shell / --no-shell\n --escalate-questions / --no-escalate-questions\n (accepted; renders nothing - rides the run prompt)\n --max-steps <n>\n --no-tools, --no-instruction-files, --no-extensions, --no-skills\n --escalate-questions / --no-escalate-questions\n Accepted; renders nothing in argv (the mode\n rides the run prompt, not a harness flag)\n --cwd <path>\n --env KEY=VAL\n --resume <uuid>\n -h, --help Show help\n";
|
package/dist/cli/help.js
CHANGED
|
@@ -4,7 +4,7 @@ Usage: hcn <command> [options] [prompt]
|
|
|
4
4
|
|
|
5
5
|
Commands:
|
|
6
6
|
run <harness> [prompt] One-shot headless turn (streamTurn)
|
|
7
|
-
session <harness> Interactive session (openSession,
|
|
7
|
+
session <harness> Interactive session (openSession, claude + pi)
|
|
8
8
|
inspect <harness> Descriptor / argv / capability inspection (no spawn)
|
|
9
9
|
ls List harnesses with verifiedAgainst versions
|
|
10
10
|
check Drift check (published version vs verifiedAgainst)
|
package/package.json
CHANGED
package/src/cli/help.ts
CHANGED
|
@@ -4,7 +4,7 @@ Usage: hcn <command> [options] [prompt]
|
|
|
4
4
|
|
|
5
5
|
Commands:
|
|
6
6
|
run <harness> [prompt] One-shot headless turn (streamTurn)
|
|
7
|
-
session <harness> Interactive session (openSession,
|
|
7
|
+
session <harness> Interactive session (openSession, claude + pi)
|
|
8
8
|
inspect <harness> Descriptor / argv / capability inspection (no spawn)
|
|
9
9
|
ls List harnesses with verifiedAgainst versions
|
|
10
10
|
check Drift check (published version vs verifiedAgainst)
|