sisyphi 1.1.38 → 1.1.40
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/README.md +10 -0
- package/dist/cli.js +847 -468
- package/dist/cli.js.map +1 -1
- package/dist/daemon.js +251 -173
- package/dist/daemon.js.map +1 -1
- package/dist/tui.js +307 -160
- package/dist/tui.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -439,6 +439,16 @@ sis session delete <session-id> --cwd /path/to/project
|
|
|
439
439
|
|
|
440
440
|
`sis --help` or `sis <command> --help` for full usage.
|
|
441
441
|
|
|
442
|
+
## Output and exit codes
|
|
443
|
+
|
|
444
|
+
**JSON output** — `-j, --json` is available on `status`, `list`, `await`, `read`, and `admin history`. Each command emits data to stdout: a single JSON object or array, or JSONL (one object per line) for `read`.
|
|
445
|
+
|
|
446
|
+
**ANSI color** — auto-detected from stdout TTY. Disable with `NO_COLOR=1`; force-enable with `FORCE_COLOR=1`.
|
|
447
|
+
|
|
448
|
+
**Exit codes** — `0` on success, `1` on error (message on stderr).
|
|
449
|
+
|
|
450
|
+
**stdout vs stderr** — stdout is reserved for data (use it with `jq`, pipes, or `$()`). All diagnostics, progress, and status messages go to stderr.
|
|
451
|
+
|
|
442
452
|
## License
|
|
443
453
|
|
|
444
454
|
MIT
|