cli: make bundled help self-describing

This commit is contained in:
2026-03-22 23:37:38 +08:00
parent 5859ff219e
commit 4d8c90eb26
49 changed files with 792 additions and 29 deletions
+1
View File
@@ -12,6 +12,7 @@ Use the bundled `./assets/inbox` CLI to communicate through a durable SQLite-bac
- Invoke `./assets/inbox` relative to this skill directory.
- Pass `--db` explicitly for every command.
- Prefer `--json` whenever another agent or script will read the output.
- The bundled CLI help is intended to be self-describing; start with `./assets/inbox --help` or `./assets/inbox <command> --help` when you need command usage.
- Run `init` before first use on a new database path.
## Rules
Binary file not shown.
+1
View File
@@ -31,6 +31,7 @@ Use the bundled `./assets/orch` CLI to control leader-side orchestration through
- Invoke `./assets/orch` relative to this skill directory.
- Pass `--db` explicitly for every command.
- Prefer `--json` whenever another agent or script will read the output.
- The bundled CLI help is intended to be self-describing; start with `./assets/orch --help` or `./assets/orch <command> --help` when you need command usage.
- Initialize a new database path once through the bundled `inbox init` command before the first real run.
- Use `status` as the main operational view. It reconciles worker thread state first, then returns run, task, latest-attempt, and latest-message context.
- For Codex worker launch, standardize the handoff through `./assets/orch-worker-brief` instead of improvising the worker prompt every time.
Binary file not shown.
+1
View File
@@ -11,6 +11,7 @@ Use the bundled `./assets/repo-memory` CLI to maintain and query durable reposit
- Invoke `./assets/repo-memory` relative to this skill directory.
- Default database path: `~/.codex/data/repo-memory.db`.
- The bundled CLI help is intended to be self-describing; start with `./assets/repo-memory --help`, `./assets/repo-memory help <command>`, or `./assets/repo-memory <command> --help`.
- Prefer searching before a deep repo dive so repeated work starts from existing knowledge.
- Run `init` before first use on a new database path.
Binary file not shown.