diff options
| author | Adam Malczewski <[email protected]> | 2026-06-24 15:35:18 +0900 |
|---|---|---|
| committer | Adam Malczewski <[email protected]> | 2026-06-24 15:35:18 +0900 |
| commit | 62b55b84c8814025313824127367374143c23b87 (patch) | |
| tree | 8543320d17b40b9b881c2a618a7fc7c361d1fef4 | |
| parent | a1c31604ecabd6e3c40f2604f1fdd57f15f4ec58 (diff) | |
| download | dispatch-62b55b84c8814025313824127367374143c23b87.tar.gz dispatch-62b55b84c8814025313824127367374143c23b87.zip | |
docs: update paths from arch-rewrite to dispatch-backend
After consolidating to the dev branch and renaming the worktree,
update all path references in ORCHESTRATOR.md and .skills/ORCHESTRATOR.md.
| -rw-r--r-- | .skills/ORCHESTRATOR.md | 14 | ||||
| -rw-r--r-- | ORCHESTRATOR.md | 10 |
2 files changed, 12 insertions, 12 deletions
diff --git a/.skills/ORCHESTRATOR.md b/.skills/ORCHESTRATOR.md index 27e3c95..4d5f213 100644 --- a/.skills/ORCHESTRATOR.md +++ b/.skills/ORCHESTRATOR.md @@ -1,4 +1,4 @@ -Operating manual for the dispatch arch-rewrite orchestrator: plan topological waves of single-owner agents, summon via opencode run, verify from contracts + tests (never read implementation), resolve contract gaps. Project-specific to this repo. +Operating manual for the dispatch orchestrator: plan topological waves of single-owner agents, summon via dispatch CLI, verify from contracts + tests (never read implementation), resolve contract gaps. Project-specific to this repo. --- # ORCHESTRATOR.md — how to drive this project @@ -69,7 +69,7 @@ they justify every rule below. OpenCode CLI is the summon mechanism (see `notes/opencode-agents.md`). **Working dir:** always the repo root, -`/home/tradam/projects/dispatch/arch-rewrite` (so the agents' `lsp` tool works — +`/home/tradam/projects/dispatch/dispatch-backend` (so the agents' `lsp` tool works — TS language server is configured globally). **Model:** use `opencode-go/mimo-v2.5-pro` for BUILDING agents (capable coder). @@ -81,8 +81,8 @@ scoped rules + the per-summon TASK. The invariant guardrails live ONCE in the br `prompts/<unit>.md` is now JUST the TASK block (§3). Do NOT use `-f` (see gotcha); ALWAYS redirect output to a file. ```bash -cd /home/tradam/projects/dispatch/arch-rewrite && \ -opencode run --dir /home/tradam/projects/dispatch/arch-rewrite \ +cd /home/tradam/projects/dispatch/dispatch-backend && \ +opencode run --dir /home/tradam/projects/dispatch/dispatch-backend \ -m opencode-go/mimo-v2.5-pro \ "$(cat .dispatch/package-agent.md) $(cat .dispatch/extension-agent.md) @@ -222,7 +222,7 @@ fix it. You diagnose from symptoms; the agent reads the code. After every agent, independently: ```bash -cd /home/tradam/projects/dispatch/arch-rewrite +cd /home/tradam/projects/dispatch/dispatch-backend bun run typecheck # tsc -b --pretty — must be clean (EXIT 0) bun run test # vitest — note the pass count bun run check # biome — must be clean @@ -338,7 +338,7 @@ live runs (§8 bracket trick), since a leak silently poisons the next run's coun ## 7. Repo geography ``` -/home/tradam/projects/dispatch/arch-rewrite # THE worktree (branch arch/rewrite) +/home/tradam/projects/dispatch/dispatch-backend # THE worktree (branch dev) AGENTS.md the subagent constitution (auto-loaded by opencode; you enforce it) ORCHESTRATOR.md the orchestrator's operating manual (this file) @@ -402,7 +402,7 @@ See `tasks.md` for the live checklist. As of MVP completion: **Boot + smoke test:** ```bash -cd /home/tradam/projects/dispatch/arch-rewrite +cd /home/tradam/projects/dispatch/dispatch-backend KEY1=$(grep DISPATCH_API_KEY_OPENCODE1 .env | cut -d= -f2) PORT=4567 DISPATCH_API_KEY="$KEY1" bun packages/host-bin/src/main.ts # boots server # in another shell: diff --git a/ORCHESTRATOR.md b/ORCHESTRATOR.md index 8f6c156..a812294 100644 --- a/ORCHESTRATOR.md +++ b/ORCHESTRATOR.md @@ -93,9 +93,9 @@ per the §3 map; the `--file` ORDER is the assembly order: constitution → brie omit `--file .dispatch/extension-agent.md` for non-extension units): ```bash -cd /home/tradam/projects/dispatch/arch-rewrite +cd /home/tradam/projects/dispatch/dispatch-backend dispatch umans/umans-glm-5.2 \ - --cwd /home/tradam/projects/dispatch/arch-rewrite \ + --cwd /home/tradam/projects/dispatch/dispatch-backend \ --text "You are the single owner-agent for packages/<unit>/. The attached files are your constitution, brief, rules, and task — follow them exactly in the order given. Then IMPLEMENT the task now: edit ONLY files under packages/<unit>/, run tsc -b / vitest / biome for your package, and write your report to reports/<unit>.md. Reply with ONLY a one-line status + the path reports/<unit>.md — no diffs, no logs." \ --file AGENTS.md \ --file .dispatch/package-agent.md \ @@ -230,7 +230,7 @@ fix it. You diagnose from symptoms; the agent reads the code. After every agent, independently: ```bash -cd /home/tradam/projects/dispatch/arch-rewrite +cd /home/tradam/projects/dispatch/dispatch-backend bun run typecheck # tsc -b --pretty — must be clean (EXIT 0) bun run test # vitest — note the pass count bun run check # biome — must be clean @@ -347,7 +347,7 @@ live runs (§8 bracket trick), since a leak silently poisons the next run's coun ## 7. Repo geography ``` -/home/tradam/projects/dispatch/arch-rewrite # THE worktree (branch arch/rewrite) +/home/tradam/projects/dispatch/dispatch-backend # THE worktree (branch dev) AGENTS.md the subagent constitution (the summon points each agent at it; you enforce it) ORCHESTRATOR.md the orchestrator's operating manual (this file) @@ -417,7 +417,7 @@ provider silently fails to register: "No providers registered"). `.env` also pin `BACKEND_PORT`, which beats `PORT` — so set `BACKEND_PORT` explicitly, and ISOLATE the data paths or you'll share SQLite files + spawn a duplicate collector against the dev stack: ```bash -cd /home/tradam/projects/dispatch/arch-rewrite +cd /home/tradam/projects/dispatch/dispatch-backend BACKEND_PORT=4567 SURFACE_WS_PORT=4569 \ DISPATCH_DB=/tmp/opencode/probe/dispatch.db \ DISPATCH_TRACE_DB=/tmp/opencode/probe/traces.db \ |
