Help
Fix Common Sonde Issues
Common Sonde CLI failures and direct fixes.
Purpose
Resolve common setup and execution failures quickly.
Inputs
- Command being executed.
- Current working directory.
- CLI stderr or JSON error payload.
Outputs
- Root-cause identification.
- Corrective command or configuration change.
Common issues
MISSING_FILE: Manifest file not found
Cause:
run,score, orservewas executed withoutsondage.manifest.json.
Fix:
sonde generate <cli> --jsonThen rerun run, score, or serve from the same directory.
Unexpected extra arguments for '<command>'
Cause:
- Command received more positional args than supported.
Fix:
- Use exact forms:
sonde generate <cli> [--json]sonde manifest [--json]sonde run <cli> [--json]sonde score <cli> [--json]sonde serve [--json]
Usage: sonde <command> [options]
Cause:
- Unknown command or missing command.
Fix:
sonde --helpUnknown tool '<name>' in serve mode
Cause:
tools/callrequested a command not present in manifestcommands.
Fix:
- Call
tools/listfirst, then use one returned tool name exactly.
Run result indicates interactive prompt detection
Cause:
- Target CLI emitted prompt-like output (for example
[y/n],Are you sure,password).
Fix:
- Prefer non-interactive target CLI flags.
- Ensure manifest options include supported non-interactive flags.
Edge cases
--helpand--versionalways return plain text even when--jsonis present.--versionis top-level only (sonde --version).