@kbediako/codex-orchestrator 0.1.34 → 0.1.36
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 +49 -25
- package/codex.orchestrator.json +39 -0
- package/dist/bin/codex-orchestrator.js +243 -32
- package/dist/orchestrator/src/cli/codexDefaultsSetup.js +274 -0
- package/dist/orchestrator/src/cli/doctor.js +132 -1
- package/dist/orchestrator/src/cli/doctorIssueLog.js +42 -16
- package/dist/orchestrator/src/cli/doctorUsage.js +4 -4
- package/dist/orchestrator/src/cli/rlm/alignment.js +956 -0
- package/dist/orchestrator/src/cli/rlm/symbolic.js +96 -0
- package/dist/orchestrator/src/cli/rlmRunner.js +148 -1
- package/dist/scripts/lib/pr-watch-merge.js +170 -9
- package/dist/scripts/run-review.js +1983 -0
- package/docs/README.md +12 -10
- package/package.json +3 -1
- package/skills/agent-first-adoption-steering/SKILL.md +116 -0
- package/skills/chrome-devtools/SKILL.md +6 -0
- package/skills/collab-deliberation/SKILL.md +6 -0
- package/skills/collab-evals/SKILL.md +15 -0
- package/skills/collab-subagents-first/SKILL.md +14 -1
- package/skills/delegate-early/SKILL.md +6 -0
- package/skills/delegation-usage/DELEGATION_GUIDE.md +7 -4
- package/skills/delegation-usage/SKILL.md +21 -4
- package/skills/docs-first/SKILL.md +13 -0
- package/skills/elegance-review/SKILL.md +4 -0
- package/skills/long-poll-wait/SKILL.md +82 -0
- package/skills/release/SKILL.md +6 -2
- package/skills/standalone-review/SKILL.md +9 -3
- package/templates/README.md +5 -0
- package/templates/codex/.codex/agents/awaiter-high.toml +38 -0
- package/templates/codex/.codex/agents/explorer-fast.toml +2 -0
- package/templates/codex/.codex/agents/worker-complex.toml +2 -0
- package/templates/codex/.codex/config.toml +19 -0
- package/templates/codex/AGENTS.md +10 -4
|
@@ -1,9 +1,10 @@
|
|
|
1
|
-
<!-- codex:instruction-stamp
|
|
1
|
+
<!-- codex:instruction-stamp 3599cb54f155d730dfc088b0ee6792ebe91e701cc288930064d73eae562b829a -->
|
|
2
2
|
# Agent Instructions (Template)
|
|
3
3
|
|
|
4
4
|
## Orchestrator-first workflow
|
|
5
5
|
- Use `codex-orchestrator` pipelines for planning, implementation, validation, and review.
|
|
6
6
|
- Default to `docs-review` before implementation and `implementation-gate` after code changes.
|
|
7
|
+
- Use `docs-relevance-advisory` when you need semantic docs relevance signal without hard-gate behavior.
|
|
7
8
|
- Prefer cloud mode when runs are long-running/parallel and cloud prerequisites are ready.
|
|
8
9
|
- Before cloud mode, verify branch availability, non-interactive setup commands, and required secrets/variables; if missing, run in local `mcp` mode and record why.
|
|
9
10
|
- Before implementation, run a standalone review of the task/spec against the user’s intent and record the approval in the spec + checklist notes.
|
|
@@ -49,19 +50,24 @@
|
|
|
49
50
|
- `P2/P3` findings are tracked follow-ups.
|
|
50
51
|
|
|
51
52
|
## Agent role baseline
|
|
52
|
-
- Built-in roles are `default`, `explorer`, and `
|
|
53
|
+
- Built-in roles are `default`, `explorer`, `worker`, and `awaiter`; `researcher` is user-defined.
|
|
53
54
|
- `spawn_agent` defaults to `default` when `agent_type` is omitted; always set `agent_type` explicitly.
|
|
54
55
|
- For symbolic collab runs, prefix spawned prompts with `[agent_type:<role>]` on line one so role intent is auditable from JSONL/manifests.
|
|
55
56
|
- Keep top-level defaults on latest codex by setting `model = "gpt-5.3-codex"` in `~/.codex/config.toml`.
|
|
56
|
-
-
|
|
57
|
+
- Set `model_reasoning_effort` to at least `high` (CO default: `xhigh`) so spawned agents inherit high reasoning unless role overrides change it.
|
|
58
|
+
- Built-in `explorer` inherits top-level model defaults unless you attach a `config_file`.
|
|
57
59
|
- Spark caveat: `gpt-5.3-codex-spark` is text-only.
|
|
58
|
-
-
|
|
60
|
+
- Keep RLM/collab built-ins-first by default; add custom specialist roles only when there is measured value, clear ownership, and validation evidence.
|
|
61
|
+
- Use `[agents] max_threads = 12` with `max_depth = 4` and `max_spawn_depth = 4` as the default multi-agent baseline.
|
|
62
|
+
- Keep fallback usage explicit and rare: `8/2/2` for constrained/high-risk lanes, `6/1/1` only as break-glass.
|
|
59
63
|
- Add an explicit `worker_complex` role (`gpt-5.3-codex`, `xhigh`) for high-risk implementation streams.
|
|
64
|
+
- Use `codex-orchestrator doctor` as an advisory drift check for Codex defaults; remediate additively via `codex-orchestrator codex defaults --yes`.
|
|
60
65
|
|
|
61
66
|
## Completion discipline (patience-first)
|
|
62
67
|
- Wait/poll for terminal state on long-running operations (CI checks, reviews, cloud jobs, orchestrator runs) before reporting completion.
|
|
63
68
|
- Reset waiting windows when checks restart or new feedback appears.
|
|
64
69
|
- Do not hand off mid-flight work unless the user explicitly asks to stop.
|
|
70
|
+
- Awaiter triage: treat long waits as expected unless progress is flat across multiple polling windows; increase timeouts before declaring a stall.
|
|
65
71
|
|
|
66
72
|
## Instruction stamp
|
|
67
73
|
- If you edit this file, refresh the instruction stamp.
|