Conversation
Models writing workflow YAML by hand drift on field names and structure (live-observed: objective at top level, worker instead of worker_type) even with the reference template in context — YAML is an unvalidated text channel, so prompting alone cannot reach zero. This closes the gap at three layers: - workflow(action="draft"): pass the structured config through the tool parameter schema; the harness renders YAML to .opencode/workflow-drafts/, validates it, and returns the spec_path. Unknown fields are rejected by the provider-side schema before any file is written; YAML syntax errors disappear because rendering is code. spec_path contract unchanged. - routing guide now carries the minimal complete start-spec example inline (one hop) plus the field-ownership rules; description budget 5k -> 6.5k. - schemaDiagnostics maps high-frequency drift fields (worker/agent -> worker_type, prompt -> instruction, top-level objective -> config) to "Did you mean" hints, matching both message text and diagnostic path. Verified: test/dag 496/496 green incl. 5 new draft tests (render round-trip, bad-dependency diagnostics, unsafe-name rejection, schema drift rejection, drift hint); core command tests 21/21; tsgo clean in both packages.
The draft action commit (76df802) added the 11th parameter-union branch but missed test/tool/__snapshots__/parameters.test.ts.snap; the stale snapshot failed 'tool parameters > JSON Schema (wire shape) > workflow' deterministically (surfaced as an external red gate during a concurrent verification run). Regenerated via bun test --update-snapshots; full test/tool + workflow-tool suites green (384 pass).
The draft-action commit spliced the heading onto the preceding paragraph line, dropping it from rendered markdown structure.
The RegExp escape forms tripped two unnecessary-escape warnings, pushing CI's oxlint count past the --max-warnings=4852 ratchet. Diagnostic paths are JSON.stringify-segmented, so a plain ["field"] substring check covers the same matches without the regex.
…time-prefix wrap
Root cause (proven from live logs): identifier create() encoded
value = timestamp*0x1000 + counter into a 48-bit prefix. The shift eats 12
bits, so the prefix space covers only 2^36 ms (~795 days) and wrapped at
epoch 1786706395136 = 2026-08-14 19:19:55.136 +08. Post-wrap ids (prefix
0009...) sort BELOW pre-wrap ids (fff...): observed msg_fffac212c001 at
09:48 UTC and msg_00090cb0400141 at 13:58 UTC match the computed prefixes.
Sessions resumed across the boundary hit the runLoop exit condition
(lastUser.id < lastAssistant.id) and never call the model ('loop step=0'
followed 13ms later by 'exiting loop', no stream); the TUI binary-inserted
new messages at the transcript top instead of the bottom.
Two-layer repair:
- Generator (schema/identifier + opencode id + core id): the prefix is now
the raw 48-bit millisecond value behind a per-process monotonic latch
(max(ts, last+1)) — no shift, 8925-year runway, same-ms bursts stay
ascending, clock regression absorbed. 26-char format and the injected
timestamp param are unchanged; descending() keeps the bitwise NOT.
- Comparisons: every behavior-gating id ordering now uses time.created
(id tiebreak for same-ms): runLoop exit (MessageV2.before), MessageV2
.latest() bindings and tasks filter, revert stage/cleanup ranges, session
fork cutoff, TUI sync-store insertion/removal + session list order, TUI
pending/queued/undo/revert-boundary filters, child-session ordering.
This also revives already-corrupted cross-era sessions: a session whose
last assistant message has a pre-wrap id accepts a new user message and
runs the model again (pinned by the cross-era prompt test).
Truncate cleanup no longer decodes ids at all (file mtime); the legacy
timestamp() decoders keep the new encoding and have no remaining callers
that read historical ids.
Evidence: 4 deterministic red reproductions (identifier wrap boundary,
cross-era runLoop, latest() cross-era, TUI store insert position) all
green; mutation proof — reverting only the identifier encoding re-reddens
the wrap tests and restore is byte-identical (sha256); typecheck clean in
schema/core/opencode/tui; schema full 16/16, tui full 241/241, opencode
test/session test/tool green.
…cern Independent verification of the wrap fix caught a P1 regression it introduced: listSessions() was re-sorted by time.updated (descending), which broke the id-ascending invariant every session event handler's binary search relies on. Touching an old session (session.updated after a prompt) then duplicated its row in the store, session.deleted could miss and leave a ghost, and session.get returned undefined for existing sessions — reproduced with the sync fixture. The store now restores codepoint id order in listSessions(); the session-list dialog applies recency ordering at the display layer (search fallback re-sorts by time.updated, matching search results). Two sync-store regression tests pin the invariant: session.updated reconciles in place (no duplicate) and session.deleted removes when recency order diverges from id order. Both are red on the regressed ordering and green here.
The wrap-boundary tests used ! on already-string expressions, adding four no-unnecessary-type-assertion warnings that push CI past the --max-warnings=4852 ratchet.
feat(dag): add workflow draft action for schema-checked graph authoring
… and wake (DAG-LOC-01) The DAG runtime is per-directory InstanceState, but the durable store, the event bus, and the workflow rows are process-global. Guards keyed on the PROJECT ID let sibling worktrees of one project (same id, distinct directories) all adopt, recover-cancel, wake, and spawn for each other's workflows. This change installs a single execution-location authority and routes every adoption/recovery/wake guard through it. Authority — packages/opencode/src/dag/location.ts (single module): - ownsWorkflow(workflowID, directory): re-reads the durable workflow row on every check; project id is the fast-reject, the stamped DIRECTORY (realpath-normalized, raw-path fallback) is the deciding guard. R6 identity revalidation falls out of the re-read: a repainted project_id stops the stale in-memory entry from publishing transitions. - ownsSession(sessionID, directory): every durable workflow row of the session must match (vacuous-true for workflow-less sessions so goal-only sessions keep working). Key lives on the workflow row only — no session-table reads (R7's negative half). - Database is resolved lazily via Effect.serviceOption so the loops' static layer requirements stay unchanged (the optional-cross-dependency pattern). Join vs column: the round-1 analysis allowed either. R7 mandates the key on the workflow row itself and forbids session.directory reads in dag sources, so the column wins: WorkflowTable.directory, stamped at dag.create from the creating instance (WorkflowCreated.directory, optional for legacy decodes), plus migration 20260813040429_workflow_directory (generated by script/migration.ts) with a session-join backfill so in-flight workflows survive upgrades. A NULL stamp matches no instance (never adopted). Guard regions replaced in packages/opencode/src/dag/runtime/loop.ts: - recoverWorkflow (~L328): projectId guard -> ownsWorkflow(wf.id, ctx.directory) - recoverOrphanPending (~L439): same replacement - WorkflowStarted first-wave adoption (~L487): same replacement - startup wake sweep (~L1308): snapshot projectId check -> ownsSession - tryDeliverWake entry (~L1048, previously unguarded): ownsSession - checkCompletion (~L282): new revalidation gate (R6) - SessionV1.Event.Deleted teardown subscription (~L1233, R5): drops the session's runtime entries and interrupts their fibers/watchers, mirroring the workflow-terminal cleanup pattern GoalLoop idle trigger (packages/opencode/src/goal/loop.ts ~L120): routed through ownsSession — aligns the idle path with the directory-scoped goal scan. Probes (test/dag/dag-location-guards.test.ts): RED 7/7 before (/tmp/dag-loc-red-full.log), GREEN 7/7 after — R1 adoption, R2 startup recovery, R3 idle wake, R4 startup sweep, R5 deletion teardown, R6 identity migration, R7 static contract. R5/R6's negative-window assertions used pollWithTimeout (a positive-wait tool whose timeout errors the effect, so the "nothing must happen" outcome could never pass); their mechanics were fixed to settle-then-sleep-and-assert with identical intent. Pre-existing seeds gained the directory stamp (dag-wake-integration, dag-adoption-step-races, dag-orphan-pending-recovery, workflow-tool/summary-publisher fixtures). Mutations: bypassing the tryDeliverWake authority guard -> R3 red (6 pass); removing the Deleted teardown subscription -> R5 red (6 pass); both restored. Verification: packages/opencode test/dag + test/goal = 560 pass / 0 fail; core dag-projector-drift + dag-store-summaries pass; test:dag-core pass; test:httpapi 227 pass / 0 fail; bun typecheck clean (root); bun lint 4850 (ratchet tightened 4852 -> 4850: probe harness's `as never` fixture shims file-scoped suppressed like the dag-loop-guards template; two pre-existing `as never` casts replaced); check:generated clean for sdk/js and client. Co-Authored-By: Claude <noreply@anthropic.com>
…alidation, session-sourced stamp (DAG-LOC-01 follow-up) Two-lens review follow-up on 3498dd670. All six introduced P2s closed; each is pinned by a probe (or an argument where the defect is structurally unobservable). P2-A (goal vacuous-true): the dag-side ownsSession is keyed on workflow rows and is vacuously true for goal-only sessions, so instance B could drive instance A's goal-only sessions (cross-directory continuation, double judge, spurious pauses). Fix: Goal.ownsSession (goal.ts) — a REAL directory check against the durable session row (SessionTable.directory; legal there — the goal module is outside the dag trees R7 scans). Vacuous-own remains only where no durable answer exists (rowless synthetic sessions, or a runtime graph without Database). The session-row read lives in a new session-domain accessor (packages/opencode/src/session/location.ts, sessionDirectory) so the R7 constraint (no session.directory reads in dag sources) holds and Dag.create (P2-F) shares the same single source. Applied in the GoalLoop idle handler (goal/loop.ts). P2-B (goal idle subscription killable): the new guard was the first defect-capable durable read in the goal idle handler; a store defect would have permanently killed the runForEach subscription (Effect.ignore does not absorb defects). Fix: the handler body is wrapped in catchCause with a logged warning — a store defect degrades to a skipped evaluation, never a dead loop (mirrors DagLoop's guarded()). P2-C (R6 gates only checkCompletion): after an identity repaint the stale entry could still win nodeQueued and materialize a child under the stale directory, and the deadline watcher could still write escalations. Fix: spawnReady revalidates ownership at its entry (all seven spawn call sites funnel through it) and drops the stale entry when ownership no longer holds; makeDeadlineWatcher revalidates before its write section (escalate + cap enforcement) and ends its mandate on ownership loss — the check only runs when it can disprove ownership (instance context and Database present), so supervision still never ends in graphs without them (R13). P2-D (NULL zombie — silent): workflows created by old builds after the one-shot backfill keep directory=NULL and are skipped silently forever. Fix: DagLocation logs a WARN, deduped per workflow per process, whenever an adoption/recovery/wake path skips a NULL-directory row. The conservative never-match policy is unchanged. P2-E (Deleted sweep race): recoverWorkflow could pass the ownership guard, the session deletion could cascade the rows and run the Deleted sweep before the entry was published, then runtimes.set leaked an inert entry forever. Fix: ownership is re-checked after the recovery body and before runtimes.set (same for the WorkflowStarted first-wave path, whose getNodes yield opens the same window); the ensuring still clears the recovering reservation. No probe: the leak is behaviorally inert (every post-deletion stimulus is filtered by runtimes.has or no-ops against the missing row), so the race is not observably constructible — the re-check closes it structurally. P2-F (create boundary): Dag.create stamped the ambient REQUEST instance's directory, so a request on directory A could create a workflow for B's session stamped A, orphaning it from B's loops. Fix: the stamp now comes from the TARGET session's durable directory (sessionDirectory), falling back to the ambient instance only when the session has no durable row. The API validation tightening was left out of this slice (HTTP handler territory); the stamp fix is the required part. Probes (test/dag/dag-location-guards.test.ts, "DAG-LOC-01 P2 follow-ups"): 12/12 green (7 original + P2-A, P2-F, P2-C, P2-B, P2-D). P2-B injects a one-shot synchronous store defect through a Database proxy and proves the NEXT idle event is still evaluated; P2-D captures the warning via Effect.withLogger and asserts exactly one emission for two checks. Mutations (all restored): - bypass the goal-side guard -> P2-A red (P2-B also red: its defect lands on the guard's read), 10 pass - revert the create stamp to the ambient instance -> P2-F red, 11 pass - bypass the spawnReady revalidation -> P2-C red, 11 pass Verification: packages/opencode test/dag + test/goal = 565 pass / 0 fail; test:dag-core pass; test:httpapi 227 pass / 0 fail; bun typecheck clean (root); bun lint 4850 / 0 errors (ratchet unchanged). Co-Authored-By: Claude <noreply@anthropic.com>
…(DAG-LOC-01 follow-up)
The deadline watcher's ownership revalidation (makeDeadlineWatcher, the DAG-LOC-01 P2-C write-section gate) was the only store read in the watcher without R13 protection: ownsWorkflow's orDie read defects on a transient store failure, the outer catchCause logs it and completes the fiber, and deadline supervision ends permanently for a still-running node — no escalation, no cap, unbounded run; nothing re-forks the watcher.
Fix: wrap the revalidation in the same exit+retry pattern as the watcher's readNode (1 attempt + 3 retries with 500ms backoff, then log-and-continue). A failed read is now "cannot disprove ownership" — supervision continues — and only a POSITIVE ownership loss (successful read returning false) ends the mandate. The instance/Database presence gate is unchanged: absent either, the check does not run and supervision must not end (R13).
Probe (red-first, deterministic): new P2-watcher probe in test/dag/dag-location-guards.test.ts drives makeDeadlineWatcher through the same direct-call seam the R13 watcher tests use — readNode is a mock with no Database traffic, so the watcher's only real store query is the ownership-revalidation read, and a one-shot synchronous select defect (Proxy Database, disarmed after one hit) lands exactly there. The node is past its deadline; the probe asserts the watcher still escalates (supervision survived). Red on HEAD ("watcher ended deadline supervision after a transient ownership-revalidation store defect"), green with the fix; stashing the fix re-trips the probe red, restored it is green alongside all 13 dag-location-guards probes.
Verification: bun test test/dag test/goal 566 pass / 0 fail (incl. the existing R13 watcher tests), bun typecheck clean, bun lint 4850 warnings / 0 errors (ratchet unchanged).
Co-Authored-By: Claude <noreply@anthropic.com>
… invariant (DAG-LOC-01 rebase integration) Root cause: the GOAL-FP-01 lease-lifecycle tests seed workflow rows via raw SQL with no execution-location stamp. The rebased DAG-LOC-01 ownership authority is fail-closed on NULL-directory rows (P2-D zombie policy: never adopted, recovered, or woken), so the startup wake sweep stopped registering the ghost row and the runtime-less terminal-release test lost its swept-registration precondition. Fix: stamp all four seed rows with the instance directory (process.cwd(), matching InstanceRef in the harness) — the same idiom the sibling guard tests use — so the rows represent legitimately owned workflows and the lease assertions exercise their original intent.
…ublish races (DAG-LOC-01 H1) Root cause: the WorkflowStarted handler was the only adoption path without an in-flight reservation — recoverWorkflow and recoverOrphanPending both reserve the `recovering` slot before their first yield, but the live handler checked the runtimes/recovering guard and then yielded through getWorkflow/getNodes with nothing reserved. Two concurrent WorkflowStarted events (a duplicate publish racing the live handler) both passed the guard and both reached runtimes.set; the second overwrote the first entry, orphaning its fibers/watchers from every interrupt sweep and double-registering the automation lease. Fix: reserve recovering.add(dagID) synchronously right after the guard (no yield between check and add, so the loser's guard observes the reservation) and release it via Effect.ensuring — exactly mirroring recoverWorkflow's idempotency discipline. The latch also supersedes the WorkflowReplanned no-entry re-adoption race: a replan arriving mid-adoption drops out of recoverWorkflow instead of overwriting the entry, and the adoption's own getNodes reads the already-replanned rows. The vs-deletion tail of the P2-E window is NOT closed here (that would require DB-level atomic adoption = ownership-token redesign, out of scope pre-clustering); eviction-on-next-stimulus in spawnReady's ownership revalidation is the accepted mitigation for that remainder.
…once barrier (DAG-LOC-01) Pin the four evidence questions the hardening review left open, each on a deterministic seam (no timing dependence): - C1 concurrent live adoption: both instances booted before the workflow exists; only the stamped directory adopts and spawns, the sibling does not. - C3 cascade-in-window orphan: direct row deletion (no Deleted event) leaves the live entry unreachable by the sweep; later stimuli spawn nothing — every action path revalidates ownership against the missing row. - C4 moved-session wedge pin: mixed directory stamps across a session's workflows leave NO directory owner (create-time-stamp semantics; re-stamping on SessionEvent.Moved stays out of scope pre-clustering). - C5 teardown replay idempotency: replaying a deleted workflow's durable journal through EventV2 replay does not resurrect the read-model (seq dedup skips projection). - R7-ext static barrier: the directory stamp is write-once (no UPDATE writes it anywhere in the dag trees) and spawnReady / checkCompletion / makeDeadlineWatcher / the GoalLoop idle guard each carry the ownership authority.
…k gates (DAG-LOC-01) The two remaining evidence questions were async negative-test barriers — failure absorption that had no regression probe because the race window was not deterministically reachable. Add two reusable park gates to the two-instance harness and pin both paths through them: - parkGetNodes: every DagStore.getNodes call flags parked and awaits a caller promise before delegating, so a probe can interleave a mutation inside a recovery sequence. - parkWakeDelivery: SessionPrompt.prepareIfIdle (the wake-delivery admission seam tryDeliverWake actually uses) parks the admission result on a caller promise before release, and afterwards returns none while still counting the call. Probes: - C2 Session.remove racing an in-flight wake: delete the session while the wake delivery is parked; the raced defect is absorbed by tryDeliverWake's catchCause (no escape, wakeInFlight freed) and the idle wake subscription still processes a later session's idle (prepareIfIdle called again). - C6 recoverOrphanPending racing Session.remove: delete the session while the orphan sweep is parked between getNodes and dag.fail; dag.fail on the gone workflow fails, the startup-scan catchCause absorbs it, the Effect.ensuring frees the recovering slot, and init completes cleanly.
fix(schema): stop lexicographic id ordering breakage from the 48-bit time-prefix wrap
…tch (DAG-LOC-01) Root cause of the coverage gap: the recovering-reservation latch added in 959bae7 had no mutation-falsifiable coverage — reverting it left all 930 tests green, so the REJECT review could not prove the latch matters. The probe parks the owner's live WorkflowStarted adoption at the getWorkflow/getNodes seam (parkGetNodes harness, now with a call counter) and publishes a reentrant WorkflowReplanned from the sibling directory's ambient context. Within one subscription duplicate WorkflowStarted events are serialized by Stream.runForEach, so the falsifiable duplicate-publish race is the replan's no-entry recoverWorkflow path on a separate subscription fiber — exactly the second adoption the latch repels. Assertions: exactly one adoption sequence at the seam while parked (single runtimes.set / single lease registration-to-be), one first-wave spawn, and a follow-up duplicate WorkflowStarted from the sibling directory driving no second adoption, re-spawn, or cancel. RED proof (scratch worktree, only 959bae7 reverted): the probe fails at 'expect(adoptionsAtTheSeam).toBe(1)' with 'Expected: 1, Received: 2' — the replan's recoverWorkflow parked a second gated getNodes inside reconcileWorkflow and double-adopted (spawn transition rejected, loser child cancelled).
fix(dag): enforce execution-location ownership on adoption, recovery, and wake (DAG-LOC-01)
…on authority Two CI-only failures from the DAG-LOC-01 merge (PR #266), both outside the PR's gate set: - license-scope (linux unit job) flagged packages/opencode/src/dag/location.ts as an AGPL source without SPDX headers — the file was created without the repository's copyright banner. Add the standard two-line header. - bootstrap-dag-wiring 'recovers a persisted workflow' seeds its WorkflowTable row via raw SQL without the new directory column, so the fail-closed NULL stamp policy (a NULL stamp matches no instance) leaves the workflow unadopted and the scheduler never starts. Stamp the seed with the instance's directory (same sibling-test idiom as dag-wake-integration). Root cause for both: the PR's verify gate ran test/dag test/goal test/tool but not test/project or the core license manifest; the follow-up gate list should include them. Gates: core license-scope 5/5, opencode bootstrap-dag-wiring 1/1, test/dag test/goal 607/0, lint 4849/4852, typecheck clean.
fix(dag): close two CI-only failures from the DAG-LOC-01 merge
This was referenced Aug 14, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Promote to main for the next official release. Four trains merged on dev since the last main promotion:
ts*0x1000+counterinto 48 bits, wrapping at 2026-08-14 19:19:55 +08; post-wrap IDs sort below pre-wrap ones, so resumed sessions with a pre-wrap last assistant message never ran the model and the TUI mis-inserted new messages. Generator now uses the raw 48-bit ms value behind a monotonic latch; every behavior-gating comparison moved totime.created. Revives already-corrupted cross-era sessions; regression-pinned with 4 red-first suites + mutation proof.workflow(action="draft")renders a structured config into a validated YAML spec file via the tool schema (field drift rejected at the provider boundary), inline start-spec example in the routing guide, drift-aware "Did you mean" diagnostics.WorkflowTable.directorystamp, session-sourced, durable revalidation) closing cross-directory adopt/recover/wake/spawn for sibling worktrees; H1 duplicate-adoption latch with a mutation-falsifiable probe; 7 async/race probes; wire-shape snapshot follow-up in fix(dag): close two CI-only failures from the DAG-LOC-01 merge #267.Dev validation
Known limitations (pinned, tracked)
packages/app/src/utils/id.tsencoder (desktop-side).Release plan
On merge: dispatch release-fork from main (official, not prerelease).