diff --git a/NOTICE b/NOTICE
new file mode 100644
index 000000000..0f346d30f
--- /dev/null
+++ b/NOTICE
@@ -0,0 +1,53 @@
+OpenCode-GraphAgent
+===================
+
+This repository is a fork of opencode (https://github.com/anomalyco/opencode),
+an AI coding agent. It is not affiliated with or endorsed by the OpenCode team.
+
+License boundaries
+------------------
+
+1. Upstream opencode code (the vast majority of this repository)
+
+ License: MIT
+ Text: ./LICENSE
+ Copyright (c) 2025 opencode
+
+ All code inherited from the upstream project, plus fork modifications that
+ are minor patches to upstream files (bug fixes, localization fixes, hook
+ system, tool improvements), remains under the upstream MIT license.
+
+2. DAG workflow engine (self-developed by the fork author)
+
+ License: GNU Affero General Public License v3.0 or later (AGPL-3.0-or-later)
+ Text: ./packages/core/src/dag/LICENSE
+ ./packages/opencode/src/dag/LICENSE
+ Copyright (c) 2026 LeXwDeX
+
+ Covered directories and files:
+
+ - packages/core/src/dag/ DAG core: state machine, dependency
+ graph, scheduling, event projection,
+ SQLite read model
+ - packages/opencode/src/dag/ DAG runtime: workflow service,
+ execution loop, node spawn,
+ admission, review lifecycle,
+ crash recovery, templates
+ - packages/opencode/src/tool/workflow.ts The `workflow` agent tool
+ - packages/schema/src/dag-event.ts DAG event schema definitions
+ - packages/tui/src/feature-plugins/system/dag-inspector.tsx
+ - packages/tui/src/feature-plugins/system/dag-inspector-utils.ts
+ - packages/tui/src/feature-plugins/sidebar/dag-panel.tsx
+ TUI DAG inspector and sidebar panel
+ - packages/opencode/src/server/routes/instance/httpapi/groups/dag.ts
+ - packages/opencode/src/server/routes/instance/httpapi/handlers/dag.ts
+ DAG HTTP API routes
+ - .opencode/dag-prompts/ DAG node prompt templates
+
+ The AGPL applies to these files and to derivative works of them, including
+ network-server deployments. Using the rest of the repository without the
+ DAG engine is governed by the MIT license alone.
+
+When a file under an AGPL-covered directory imports MIT-licensed upstream
+modules, the upstream modules remain MIT; only the AGPL-covered files and
+their derivatives carry AGPL obligations.
diff --git a/README.md b/README.md
index eb9c4b1f0..d934def00 100644
--- a/README.md
+++ b/README.md
@@ -1,142 +1,145 @@
-
-
English ·
简体中文
-# OpenCode-DAG
+# OpenCode-GraphAgent
-> **An enhanced fork of [opencode](https://github.com/anomalyco/opencode) with a production-grade DAG workflow engine for multi-agent orchestration.**
+> A fork of [opencode](https://github.com/anomalyco/opencode) that adds a DAG workflow engine: the coding agent decomposes a task into a dependency graph of child agents and drives it to completion. State is durable, crashes are recoverable, and the whole thing can be inspected and controlled from the terminal.
Built on top of the MIT-licensed [opencode](https://github.com/anomalyco/opencode) terminal AI agent. **Not affiliated with or endorsed by the OpenCode team.**
---
-## Branch Status
+## Why a DAG
-| Branch | Base | Content | Status |
-|--------|------|---------|--------|
-| **`main`** | v1.17.11 | Hooks + Goal + Tools optimization | ✅ **Stable** |
-| **`dag-branch`** | main + DAG | DAG workflow engine (114 files) | 🔧 **In Development** — adapting to v1.17.11 APIs |
+A single agent loop struggles once a task has staged dependencies, parallelizable independent work, or a quality gate in the middle. Four judgments shaped this engine:
-> [!IMPORTANT]
-> The **DAG workflow engine is currently being ported** from v1.15.10 to the v1.17.11 codebase.
-> It lives on the `dag-branch` and is **not yet functional**. The `main` branch is fully usable
-> with Hooks, Goal auto-loop, and Tools exception exposure — all production-ready.
+1. **Split decisions from volume.** Work that must be correct (decomposition, gates, arbitration, final synthesis) runs on an advanced model tier; volume work (exploration, implementation, per-angle analysis) fans out on a standard tier. The standard tier buys accuracy with redundancy: breadth means independent parallel slices fanning into one arbiter, depth means claims get re-verified against code and tests across waves.
+2. **Ask before building the graph.** Complex work (`deep` mode) goes through a bounded Q&A pass first (1, 3, or 5 rounds), producing a versioned, fingerprinted Requirement Brief with a `READY` / `NOT_READY` / `WAIVED` verdict. If the question budget runs out with blockers still open, the verdict is `NOT_READY`. There is no silent pass.
+3. **Gate verdicts need a follow-up.** When a checkpoint returns `REVISE` / `REJECT` / `BLOCKED`, the parent agent has to dispose of it in the same wake turn: extend, replan, start a new workflow, or stop with stated reasons. Summarizing the verdict and ending the turn counts as an orchestration failure under the contract.
+4. **Recover from evidence, not guesses.** Every state change is a durable event, transitions go through a declared state machine's guards, terminal states are irreversible (one exception, written into the spec), and the read model is a CQRS projection. After a crash, recovery reconciles from durable evidence and never fabricates provider work.
----
+## DAG workflow engine
-## What makes this fork different
+The engine lives in [`packages/core/src/dag`](./packages/core/src/dag) (state machine, dependency graph, scheduling, event projection, SQLite read model) and [`packages/opencode/src/dag`](./packages/opencode/src/dag) (workflow service, execution loop, node spawn, admission, review lifecycle, crash recovery, templates). Agents drive it through a single `workflow` tool; humans watch and control it through the TUI or HTTP API.
-### 📌 Stable on `main`
+### Graph definition
-#### Hooks API (26 events × 5 execution types)
+Each node declares:
-Full Claude Code hooks protocol compatibility: `command`, `mcp`, `http`, `prompt`, `agent` hook types with 26 hook events including `PreToolUse`, `PostToolUse`, `SessionStart`, `PermissionRequest`, `WorktreeCreate`, and more. Hooks load from a global / project / worktree `hooks.json` chain, or can be registered per-session at runtime over the HTTP API; optional workspace-trust gating (`requireTrust` + the `/trust` command) limits hook execution to directories you have approved.
+| Field | Purpose |
+|---|---|
+| `depends_on` | Dependency edges; cycle detection and dangling-reference validation at creation |
+| `worker_type` | Which agent runs the node (`explore`, `build`, `general`, or any configured agent) |
+| `prompt_template` | Prompt by `id` (from `.opencode/dag-prompts/`, 12 templates ship in-repo) or `inline`, with `{{var}}` interpolation |
+| `input_mapping` | Map upstream node outputs into template variables (`"count": "node-b.output.count"`) |
+| `condition` | Expression over upstream outputs; false → node skipped, pure descendants cascade-skip |
+| `output_schema` | JSON Schema; the child agent must call `submit_result` with a matching structured payload |
+| `required` | Failure of a required node fails the workflow |
+| `report_to_parent` | Wake the parent agent when this node reaches a terminal state |
+| `model` | Optional per-node model pin; otherwise resolves node → `node_defaults` → agent → `dag.jsonc` tier → parent session |
+| `review` | `design` or `diff` review phase with an implementation-fingerprint contract (below) |
-See [hooks reference](./packages/core/src/plugin/skill/configure-hooks.md).
+Workflow-level knobs: `max_concurrency` (default 5), `max_node_replan_attempts` (5), `max_total_nodes` (100), per-node `timeout_ms` (default 10 min, queue wait counts toward the deadline).
-#### Goal Auto-Loop
+### Scheduling & execution
-An autonomous agent loop that continuously drives an agent toward a user-defined goal. An LLM judge decides after each turn whether the goal is achieved or needs more turns, within a configurable turn budget. `/goal ` to set, `/subgoal` to add sub-goals, `/goal resume` to continue a paused goal.
+- Nodes spawn as real child sessions through the same code path as the `task` tool, wave by wave in dependency order, bounded by a concurrency semaphore. A node is durably `queued` at admission and the child session only materializes inside the permit, so a 100-node fan-out never creates 100 sessions at once.
+- **Dynamic replanning**, pause-first: `pause` freezes scheduling instantly, `replan` merges a fragment (add / replace / cancel / restart nodes) atomically against the live graph, `resume` continues. Terminal nodes are immutable; retrying a failed node means adding a replacement under a new id. `extend` appends nodes, and may reopen a naturally-completed workflow (the single sanctioned exception to terminal irreversibility).
+- **Step mode** runs one node at a time for debugging.
+- **The parent does not poll.** Synthetic messages wake it when a `report_to_parent` node or the workflow terminalizes. Checkpoint nodes emit a normalized verdict (`ACCEPT` / `REVISE` / `REJECT` / `BLOCKED`), and the disposal contract governs what happens next. Iteration is a bounded, verdict-driven replan wave; the graph never contains a cyclic edge.
-#### Tools Exception Exposure
+### State machine & persistence
-- **JSON repair**: `safeParseJson` + `fixJsonUnicodeEscapes` — repairs broken multi-byte Unicode escapes in LLM-generated JSON
-- **Question tool validation**: structured error formatting with field-level hints and correct-call examples
-- **Tool descriptions**: expanded `.txt` docs for `question`, `task`, `skill`, `webfetch`, `websearch` with Parameters + Returns sections
-- **Shell pipe fix**: `stdout/stderr: "pipe"` on all `ChildProcess.make` calls + reader fiber grace drain
+- Declared transition tables for workflow and node status; every mutation goes through a guard, invalid transitions and terminal violations are typed errors (HTTP 409, not 500).
+- All changes are published as durable `dag.*` events; a projector writes the SQLite read model *inside* the publish transaction. History is event replay, not a log table. A drift test fails whenever the projector's guards and the declared transition tables are edited out of sync.
+- **Crash recovery** is lazy, per-workflow, and evidence-based: nodes left `running` are reconciled against their child session's durable state. Sessions that finished back-fill their captured output; when execution ownership was genuinely lost, the workflow pauses and the parent decides disposition (replan / resume / cancel). Recovery never adopts or restarts provider work on its own.
-### 🔧 In Development on `dag-branch`
+### Deep mode: admission & review
-#### DAG Workflow Engine (AGPL-3.0)
+- Admission Q&A covers six dimensions (goal, scope, constraints/assumptions, acceptance criteria, evidence, risks) under a bounded policy: `LIGHT` (1 round), `STANDARD` (3), `GRILL` (5, adversarial). The resulting Requirement Brief is fingerprinted (SHA-256 over a canonical form); material changes invalidate the fingerprint and return admission to questioning. A consumed record is persisted with the workflow and never replayed.
+- Review nodes declare their phase honestly: `design` reviews pre-implementation artifacts; `diff` reviews the actual implementation and requires the implementation node, a passing verification node, and a fingerprint echo. Changing the implementation changes the fingerprint, so a stale `ACCEPT` cannot satisfy the gate.
-A **directed acyclic graph (DAG) workflow engine** that lets LLM agents orchestrate complex multi-node parallel tasks within a single session.
+### Observing & controlling
-> ⚠️ **Status**: Raw-copied from the v1.15.10 fork (114 files). 217 type errors pending API adaptation (sync `Database.use` → Effect-based `Database.Service`, `Bus` → `EventV2Bridge`, etc.). Not yet compilable.
+- **TUI DAG inspector** (command palette → `dag.open`): workflow list, wave-ordered node view with live status, node detail (deps, errors, output preview, deadline countdown), and `p`/`r`/`s`/`x` for pause/resume/step/cancel; `enter` drops into a node's child session.
+- **Sidebar panel**: per-session workflow progress (completed/running/failed/queued), expandable node list, driven by ephemeral summary events, with a fetch-on-open safety net instead of polling.
+- **HTTP API** (same code path as the tool surface):
-| Capability | Description |
-|---|---|
-| **Auto-scheduling** | Spawns child agents based on dependency order, parallel where possible |
-| **Dynamic replanning** | Add/remove/update nodes and adjust concurrency mid-run |
-| **State machine integrity** | Four iron laws: state machine bypass forbidden, terminal states irreversible, events must broadcast, persist before mutate |
-| **Terminal TUI** | Full DAG control panel with block-char topology map, tree view, node dialogs, real-time updates |
-| **Crash recovery** | Detects and resumes orphaned running workflows on restart |
-| **Conditional branching** | Nodes can conditionally execute or skip based on upstream output |
-| **Sub-DAG nesting** | Worker type `dag` spawns recursive sub-workflows (max depth 3) |
-| **Persistent audit** | 6-table SQLite schema, all state transitions traceable |
+ ```
+ GET /dag list workflows
+ POST /dag start a workflow
+ GET /dag/session/:sessionID workflows for a session
+ GET /dag/session/:sessionID/summary progress summaries
+ GET /dag/:dagID workflow detail
+ GET /dag/:dagID/nodes node list
+ GET /dag/:dagID/nodes/:nodeID node detail
+ POST /dag/:dagID/control pause/resume/cancel/replan/extend/step/complete
+ ```
-### CJK & localization fixes
+### Configuration
-Extensive fixes for Chinese/Japanese/Korean text handling: tokenization, full-width punctuation, file paths, IME input in the terminal UI. See [fixes list](./docs/localization/zh-hans-fixes.md).
+`dag.jsonc` (project `.opencode/` overrides global config dir; a commented default is seeded on first use) sets two model tiers: `advanced` for critical nodes (`required: true`, review workers), `standard` for everything else, plus a `thinking_depth` reasoning variant for child sessions. Everything else inherits the main opencode configuration.
-### Dual isolation: Sandbox + Worktree
+---
+
+## Other changes in this fork
-- **Sandbox** — ephemeral temp dirs with LSP diagnostics for safe code experiments
-- **Worktree** — `git worktree` per-workflow isolation for parallel multi-agent editing
+- **Hooks API**: Claude Code hooks protocol compatibility. 26 hook events (`PreToolUse`, `PostToolUse`, `SessionStart`, `PermissionRequest`, `WorktreeCreate`, …) × 5 execution types (`command`, `mcp`, `http`, `prompt`, `agent`), loaded from a global/project/worktree `hooks.json` chain or registered per-session over HTTP, with optional workspace-trust gating. See the [hooks reference](./packages/core/src/plugin/skill/configure-hooks.md).
+- **Tool robustness**: JSON repair for broken multi-byte Unicode escapes in LLM output, structured validation errors with field-level hints, expanded tool docs, child-process pipe fixes.
+- **CJK & IME fixes**: corrections for Chinese/Japanese/Korean input in the terminal UI (IME composition flushing, full-width text handling), plus a Korean IME fix script under [`patches/`](./patches).
+- **Worktree isolation**: per-workflow `git worktree` isolation, with experimental sandbox-worktree HTTP endpoints.
+- An earlier "Goal auto-loop" and the `/goal`, `/subgoal`, `/workflow` slash commands are gone; autonomous execution now goes through the `workflow` tool and its wake mechanism.
+
+All upstream capabilities (multi-provider, built-in LSP, client/server architecture, TUI/desktop/web clients) are preserved.
---
## Install
+Prebuilt CLI binaries (Linux / macOS / Windows, with SHA256SUMS) are published on the [releases page](https://github.com/LeXwDeX/OpenCode-GraphAgent/releases). Builds from `main` are formal releases; builds from `dev` are prereleases.
+
+From source (requires [Bun](https://bun.sh) 1.3+):
+
```bash
-curl -fsSL https://opencode.ai/install | bash
+bun install
+bun dev # TUI
+bun dev serve # headless API server (port 4096)
-# Package managers
-npm i -g opencode-ai@latest
-brew install anomalyco/tap/opencode
-scoop install opencode
-# ...and more — see upstream docs
+# standalone binary
+./packages/opencode/script/build.ts --single
```
-> [!TIP]
-> Remove versions older than 0.1.x before installing.
+> This fork is not published to npm/brew/scoop. The upstream `opencode-ai` package installs upstream opencode, not this fork.
---
-## Keep the upstream — plus more
-
-All upstream MIT-licensed capabilities are fully preserved:
-
-- **Desktop app** (macOS / Windows / Linux) — download from [releases](https://github.com/anomalyco/opencode/releases)
-- **Build & Plan agents** — `Tab` to switch between full-access and read-only modes
-- **Multi-provider** — Claude, OpenAI, Google, local models via [OpenCode Zen](https://opencode.ai/zen)
-- **Built-in LSP** — real-time diagnostics from language servers
-- **Client/server architecture** — run locally, drive remotely from mobile
-
-This fork adds the DAG engine, CJK fixes, sandbox coding workspace, and goal tracking on top — without breaking anything.
+## Quality gates
----
+- **CI**: typecheck on every PR; the `main` gate additionally runs the full unit suite (Linux), Playwright e2e (Linux + Windows), an HTTP API contract exerciser, and generated-SDK freshness checks.
+- **DAG-specific tests**: core scheduling unit tests, projector/state-machine drift tests, workflow lifecycle integration tests, and HTTP API exercise scenarios for every DAG route.
+- **Specs**: engine behavior is pinned by [openspec](./openspec/specs) specifications (execution engine, state-machine enforcement, scheduler recovery, step semantics, structured output, replay idempotency, and more).
## License
-This repository uses a **mixed license model**:
-
-| Content | License | Location |
-|---------|---------|----------|
-| Upstream opencode code (the vast majority) | **MIT** | [`LICENSE`](./LICENSE) |
-| Self-developed DAG workflow engine | **GNU AGPL v3** | [`packages/opencode/src/dag/LICENSE`](./packages/opencode/src/dag/LICENSE) |
+Mixed license model:
-Full boundary details in [`NOTICE`](./NOTICE).
+| Content | License | Text |
+|---------|---------|------|
+| Upstream opencode code (the vast majority) | MIT | [`LICENSE`](./LICENSE) |
+| DAG workflow engine (fork-authored) | AGPL-3.0-or-later | [`packages/core/src/dag/LICENSE`](./packages/core/src/dag/LICENSE), [`packages/opencode/src/dag/LICENSE`](./packages/opencode/src/dag/LICENSE) |
-> ⚖️ **Why AGPL?** The DAG engine is the core differentiated work. AGPL ensures any derivative — including SaaS deployments — must contribute back.
-
----
+Exact file boundaries are listed in [`NOTICE`](./NOTICE). The AGPL covers the DAG engine and derivatives of it, including network-server deployments. If you don't touch the DAG engine, the rest of the repository is plain MIT.
## Docs
-- [`docs/harness-dag.md`](./docs/harness-dag.md) — DAG engine architecture & usage
-- [`docs/localization/zh-hans-fixes.md`](./docs/localization/zh-hans-fixes.md) — CJK fixes catalogue
-- [`NOTICE`](./NOTICE) — license boundaries & attribution
+- [`docs/harness-dag.md`](./docs/harness-dag.md) — deep-mode admission & review lifecycle
+- [`openspec/specs`](./openspec/specs) — engine behavior specifications
+- [`.opencode/dag-prompts`](./.opencode/dag-prompts) — built-in node prompt templates
- [`AGENTS.md`](./AGENTS.md) — contribution & development guide
-## Community
+## Links
-- 📖 [Upstream opencode community](https://opencode.ai)
-- 📝 [Fork issue tracker](./issues)
-- 🔗 [GitHub](https://github.com/LeXwDeX/OpenCode-DAG)
+- [GitHub](https://github.com/LeXwDeX/OpenCode-GraphAgent) · [Issues](https://github.com/LeXwDeX/OpenCode-GraphAgent/issues)
+- [Upstream opencode](https://opencode.ai)
diff --git a/README.zh.md b/README.zh.md
index 0b8c20368..45b45e1d0 100644
--- a/README.zh.md
+++ b/README.zh.md
@@ -1,142 +1,145 @@
-
-
English ·
简体中文
-# OpenCode-DAG
+# OpenCode-GraphAgent
-> **[opencode](https://github.com/anomalyco/opencode) 的增强版 fork,内置生产级 DAG 工作流引擎,用于多智能体编排。**
+> [opencode](https://github.com/anomalyco/opencode) 的 fork,加了一个 DAG 工作流引擎:编码智能体把任务拆成一张子智能体依赖图,然后驱动它跑完。状态持久化,崩溃能恢复,在终端里就能看图、控图。
基于 MIT 许可的 [opencode](https://github.com/anomalyco/opencode) 终端 AI 智能体构建。**与 OpenCode 团队无任何隶属或背书关系。**
---
-## 分支状态
+## 为什么是 DAG
-| 分支 | 基线 | 内容 | 状态 |
-|--------|------|---------|--------|
-| **`main`** | v1.17.11 | Hooks + Goal + 工具优化 | ✅ **稳定** |
-| **`dag-branch`** | main + DAG | DAG 工作流引擎(114 files) | 🔧 **开发中** —— 适配 v1.17.11 API 中 |
+任务一旦涉及分阶段依赖、可并行的独立工作,或者中间需要一道质量门禁,单智能体循环就不太够用了。这个引擎的设计基于四个判断:
-> [!IMPORTANT]
-> **DAG 工作流引擎正在从 v1.15.10 移植**到 v1.17.11 代码库。
-> 它位于 `dag-branch` 上,**目前尚不可用**。`main` 分支已完全可用,
-> 包含 Hooks、Goal 自动循环和工具异常暴露——全部为生产就绪状态。
+1. **决策和跑量分开。** 必须做对的事(任务分解、门禁、仲裁、最终综合)交给 advanced 模型层;量大的事(探索、实现、分角度分析)在 standard 层扇出。standard 层靠冗余换精度:横向是独立并行的切片汇入一个仲裁节点,纵向是结论跨波次对照代码和测试重新验证。
+2. **先把需求问清楚,再建图。** 复杂任务(`deep` 模式)建图前要过一轮有界问答(1、3 或 5 轮),产出带版本号和指纹的 Requirement Brief,裁定只有 `READY`、`NOT_READY`、`WAIVED` 三种。轮数用完还有阻塞问题,结果就是 `NOT_READY`,不会悄悄放行。
+3. **门禁结论必须有下文。** 检查点返回 `REVISE` / `REJECT` / `BLOCKED` 时,父智能体要在同一个唤醒回合里处置它:extend、replan、开新工作流,或者说明理由后停下。只复述结论就结束回合,按契约算编排失败。
+4. **恢复靠证据,不靠猜。** 所有状态变更都是持久化事件,状态转换要过声明式状态机的守卫,终态不可逆(只有一个写进规范的例外),读模型是 CQRS 投影。崩溃后只依据持久化证据和解现场,不会凭空重放模型调用。
----
+## DAG 工作流引擎
-## 本 fork 的独特之处
+引擎位于 [`packages/core/src/dag`](./packages/core/src/dag)(状态机、依赖图、调度、事件投影、SQLite 读模型)和 [`packages/opencode/src/dag`](./packages/opencode/src/dag)(工作流服务、执行循环、节点生成、准入、审查生命周期、崩溃恢复、模板)。智能体通过单个 `workflow` 工具驱动它;人通过 TUI 或 HTTP API 观察和控制它。
-### 📌 `main` 上的稳定功能
+### 图定义
-#### Hooks API(26 events × 5 execution types)
+每个节点可声明:
-完整的 Claude Code hooks 协议兼容性:`command`、`mcp`、`http`、`prompt`、`agent` 五种 hook 类型,共 26 个 hook 事件,涵盖 `PreToolUse`、`PostToolUse`、`SessionStart`、`PermissionRequest`、`WorktreeCreate` 等。Hooks 从全局 / 项目 / worktree 的 `hooks.json` 链中加载,也可在运行时通过 HTTP API 按会话注册;可选的工作区信任门控(`requireTrust` + `/trust` 命令)将 hook 执行限制在你已批准的目录内。
+| 字段 | 用途 |
+|---|---|
+| `depends_on` | 依赖边;创建时做环检测和悬空引用校验 |
+| `worker_type` | 执行节点的智能体(`explore`、`build`、`general` 或任意已配置 agent) |
+| `prompt_template` | 通过 `id` 引用模板(`.opencode/dag-prompts/`,随仓库附带 12 个)或 `inline` 内联,支持 `{{var}}` 插值 |
+| `input_mapping` | 把上游节点输出映射为模板变量(`"count": "node-b.output.count"`) |
+| `condition` | 基于上游输出的表达式;为假则跳过节点,纯依赖它的下游级联跳过 |
+| `output_schema` | JSON Schema;子智能体必须调用 `submit_result` 提交匹配的结构化结果 |
+| `required` | 必需节点失败会使整个工作流失败 |
+| `report_to_parent` | 节点到达终态时唤醒父智能体 |
+| `model` | 可选的节点级模型指定;否则按 节点 → `node_defaults` → agent → `dag.jsonc` 分层 → 父会话 解析 |
+| `review` | `design` 或 `diff` 审查阶段,带实现指纹契约(见下) |
-详见 [hooks 参考](./packages/core/src/plugin/skill/configure-hooks.md)。
+工作流级参数:`max_concurrency`(默认 5)、`max_node_replan_attempts`(5)、`max_total_nodes`(100)、节点级 `timeout_ms`(默认 10 分钟,排队等待计入预算)。
-#### Goal 自动循环
+### 调度与执行
-一个自主智能体循环,持续驱动智能体朝用户定义的目标推进。LLM 评判器在每个回合后判断目标是否已达成或是否需要更多回合,整个过程在可配置的回合预算内运行。`/goal ` 设置目标,`/subgoal` 添加子目标,`/goal resume` 继续一个暂停的目标。
+- 节点通过与 `task` 工具相同的代码路径生成真实子会话,按依赖顺序逐波执行,由并发信号量约束。节点在准入时持久化为 `queued`,子会话拿到并发许可后才创建,所以 100 个节点的扇出不会一次拉起 100 个会话。
+- **动态重规划**,暂停优先:`pause` 立即冻结调度,`replan` 将片段(添加 / 替换 / 取消 / 重启节点)原子性合并进运行中的图,`resume` 继续。终态节点不可变,想重试失败的节点,就换个新 id 加一个替代节点。`extend` 追加节点,也允许重新打开一个自然完成的工作流(终态不可逆的唯一例外,写进了规范)。
+- **单步模式**逐节点执行,便于调试。
+- **父智能体不轮询。** `report_to_parent` 节点或工作流到达终态时,引擎用合成消息唤醒父智能体。检查点节点输出规范化裁定(`ACCEPT` / `REVISE` / `REJECT` / `BLOCKED`),下一步走向由处置契约约束。迭代是一轮轮有界的、由裁定触发的重规划,图里不存在环形边。
-#### 工具异常暴露
+### 状态机与持久化
-- **JSON 修复**:`safeParseJson` + `fixJsonUnicodeEscapes` —— 修复 LLM 生成的 JSON 中损坏的多字节 Unicode 转义
-- **Question 工具校验**:结构化的错误格式化,带字段级提示和正确调用示例
-- **工具描述**:扩展了 `question`、`task`、`skill`、`webfetch`、`websearch` 的 `.txt` 文档,新增 Parameters + Returns 章节
-- **Shell 管道修复**:所有 `ChildProcess.make` 调用使用 `stdout/stderr: "pipe"` + reader fiber 优雅排空
+- 工作流和节点状态各有声明式转换表;所有变更先过守卫,非法转换和终态违规是类型化错误(HTTP 返回 409 而非 500)。
+- 所有变更以持久化 `dag.*` 事件发布;投影器在发布事务*内部*写入 SQLite 读模型。历史来自事件回放,没有日志表。另有一个漂移测试盯着投影器守卫和声明的转换表,改了一边没改另一边,测试会挂。
+- **崩溃恢复**是惰性的、按工作流、基于证据:残留 `running` 的节点对照其子会话的持久化状态和解。子会话已经跑完的,回填捕获输出;执行权确实丢了的,工作流转入暂停,交给父智能体决定处置(replan / resume / cancel)。恢复过程不会自行接管或重启模型调用。
-### 🔧 `dag-branch` 上的开发中功能
+### deep 模式:准入与审查
-#### DAG 工作流引擎(AGPL-3.0)
+- 准入问答覆盖六个维度(目标、范围、约束与假设、验收标准、证据、风险),策略有界:`LIGHT`(1 轮)、`STANDARD`(3 轮)、`GRILL`(5 轮,对抗式)。产出的 Requirement Brief 计算指纹(规范化形式的 SHA-256);实质性变更使指纹失效并回到问答。消费后的准入记录随工作流持久化,恢复时不重放问答。
+- 审查节点必须如实声明阶段:`design` 审查实现前的产物;`diff` 审查实际实现,要求声明实现节点、通过验证的验证节点,并回显实现指纹。实现一变指纹就变,旧的 `ACCEPT` 过不了门禁。
-一个**有向无环图(DAG)工作流引擎**,让 LLM 智能体在单个会话内编排复杂的多节点并行任务。
+### 观察与控制
-> ⚠️ **状态**:从 v1.15.10 fork 原样复制(114 files)。217 个类型错误待 API 适配(将同步 `Database.use` → 基于 Effect 的 `Database.Service`、`Bus` → `EventV2Bridge` 等)。尚不可编译。
+- **TUI DAG 检查器**(命令面板 → `dag.open`):工作流列表、按波次排序的节点视图(实时状态)、节点详情(依赖、错误、输出预览、截止倒计时),`p`/`r`/`s`/`x` 对应暂停/恢复/单步/取消,`enter` 进入节点的子会话。
+- **侧边栏面板**:按会话展示工作流进度(完成/运行/失败/排队),可展开节点列表,由瞬态摘要事件驱动,打开时再拉一次兜底,不做轮询。
+- **HTTP API**(与工具入口共用同一代码路径):
-| 能力 | 描述 |
-|---|---|
-| **自动调度** | 按依赖顺序生成子智能体,尽可能并行 |
-| **动态重规划** | 运行中添加/删除/更新节点并调整并发度 |
-| **状态机完整性** | 四条铁律:禁止绕过状态机、终态不可逆、事件必须广播、先持久化再变更 |
-| **终端 TUI** | 完整的 DAG 控制面板,带块字符拓扑图、树视图、节点对话框、实时更新 |
-| **崩溃恢复** | 重启时检测并恢复孤立的运行中工作流 |
-| **条件分支** | 节点可根据上游输出有条件地执行或跳过 |
-| **子 DAG 嵌套** | `dag` worker 类型生成递归子工作流(max depth 3) |
-| **持久化审计** | 6-table SQLite schema,所有状态转换可追溯 |
+ ```
+ GET /dag 列出工作流
+ POST /dag 创建工作流
+ GET /dag/session/:sessionID 按会话列出工作流
+ GET /dag/session/:sessionID/summary 进度摘要
+ GET /dag/:dagID 工作流详情
+ GET /dag/:dagID/nodes 节点列表
+ GET /dag/:dagID/nodes/:nodeID 节点详情
+ POST /dag/:dagID/control pause/resume/cancel/replan/extend/step/complete
+ ```
-### CJK 与本地化修复
+### 配置
-针对中文/日文/韩文文本处理的全面修复:分词、全角标点、文件路径、终端 UI 中的 IME 输入。详见[修复列表](./docs/localization/zh-hans-fixes.md)。
+`dag.jsonc`(项目 `.opencode/` 优先于全局配置目录,首次使用时自动生成带注释的默认文件)里设置两个模型层:`advanced` 给关键节点(`required: true` 和审查类 worker),`standard` 给其余节点,另外还有子会话的 `thinking_depth` 推理深度。其余全部继承 opencode 主配置。
-### 双重隔离:Sandbox + Worktree
+---
+
+## 本 fork 的其他改动
-- **Sandbox** —— 带 LSP 诊断的临时目录,用于安全的代码实验
-- **Worktree** —— 每个工作流一个 `git worktree`,实现并行多智能体编辑隔离
+- **Hooks API**:兼容 Claude Code hooks 协议,26 个 hook 事件(`PreToolUse`、`PostToolUse`、`SessionStart`、`PermissionRequest`、`WorktreeCreate` 等)× 5 种执行类型(`command`、`mcp`、`http`、`prompt`、`agent`),从全局/项目/worktree 的 `hooks.json` 链加载,也可以经 HTTP 按会话注册,支持可选的工作区信任门控。详见 [hooks 参考](./packages/core/src/plugin/skill/configure-hooks.md)。
+- **工具健壮性**:修复 LLM 输出里损坏的多字节 Unicode 转义(JSON 修复),校验错误带字段级提示,工具文档扩充,子进程管道修复。
+- **CJK 与 IME 修复**:终端 UI 里中日韩文输入的修正(IME 组字刷新、全角文本处理),另有 [`patches/`](./patches) 下的韩文 IME 修复脚本。
+- **Worktree 隔离**:按工作流的 `git worktree` 隔离,附实验性的 sandbox-worktree HTTP 端点。
+- 早期的「Goal 自动循环」和 `/goal`、`/subgoal`、`/workflow` 斜杠命令已经移除,自主执行统一走 `workflow` 工具和它的唤醒机制。
+
+上游全部能力(多 Provider、内置 LSP、客户端/服务器架构、TUI/桌面/Web 客户端)均完整保留。
---
## 安装
+预构建 CLI 二进制(Linux / macOS / Windows,附 SHA256SUMS)发布在 [releases 页面](https://github.com/LeXwDeX/OpenCode-GraphAgent/releases)。从 `main` 构建的是正式版;从 `dev` 构建的是预发布版。
+
+从源码构建(需要 [Bun](https://bun.sh) 1.3+):
+
```bash
-curl -fsSL https://opencode.ai/install | bash
+bun install
+bun dev # TUI
+bun dev serve # headless API 服务(端口 4096)
-# Package managers
-npm i -g opencode-ai@latest
-brew install anomalyco/tap/opencode
-scoop install opencode
-# ...and more — see upstream docs
+# 独立二进制
+./packages/opencode/script/build.ts --single
```
-> [!TIP]
-> 安装前请移除低于 0.1.x 的旧版本。
+> 本 fork 未发布到 npm/brew/scoop。上游的 `opencode-ai` 包安装的是上游 opencode,不是本 fork。
---
-## 保留上游全部能力 —— 并提供更多
-
-所有上游 MIT 许可的能力均完整保留:
-
-- **桌面应用**(macOS / Windows / Linux)—— 从 [releases](https://github.com/anomalyco/opencode/releases) 下载
-- **Build 与 Plan 智能体** —— 用 `Tab` 在完全访问和只读模式间切换
-- **多 Provider** —— Claude、OpenAI、Google、本地模型,通过 [OpenCode Zen](https://opencode.ai/zen)
-- **内置 LSP** —— 来自语言服务器的实时诊断
-- **客户端/服务器架构** —— 本地运行,从移动端远程驱动
-
-本 fork 在此基础上新增了 DAG 引擎、CJK 修复、sandbox 编码工作区和目标跟踪——且不破坏任何现有功能。
+## 质量门禁
----
+- **CI**:每个 PR 跑 typecheck;`main` 门禁额外运行全量单元测试(Linux)、Playwright e2e(Linux + Windows)、HTTP API 契约测试器、以及生成 SDK 的新鲜度校验。
+- **DAG 专项测试**:核心调度单元测试、投影器/状态机漂移测试、工作流生命周期集成测试、每条 DAG 路由的 HTTP API 演练场景。
+- **规范**:引擎行为由 [openspec](./openspec/specs) 规范固定(执行引擎、状态机强制、调度器恢复、单步语义、结构化输出、回放幂等性等)。
## 许可证
-本仓库采用**混合许可证模型**:
-
-| 内容 | 许可证 | 位置 |
-|---------|---------|----------|
-| 上游 opencode 代码(绝大多数) | **MIT** | [`LICENSE`](./LICENSE) |
-| 自研 DAG 工作流引擎 | **GNU AGPL v3** | [`packages/opencode/src/dag/LICENSE`](./packages/opencode/src/dag/LICENSE) |
+混合许可证模型:
-完整的边界详情见 [`NOTICE`](./NOTICE)。
+| 内容 | 许可证 | 文本 |
+|---------|---------|------|
+| 上游 opencode 代码(绝大多数) | MIT | [`LICENSE`](./LICENSE) |
+| DAG 工作流引擎(fork 自研) | AGPL-3.0-or-later | [`packages/core/src/dag/LICENSE`](./packages/core/src/dag/LICENSE)、[`packages/opencode/src/dag/LICENSE`](./packages/opencode/src/dag/LICENSE) |
-> ⚖️ **为何用 AGPL?** DAG 引擎是核心差异化成果。AGPL 确保任何衍生品——包括 SaaS 部署——都必须回馈开源。
-
----
+精确的文件边界列在 [`NOTICE`](./NOTICE) 中。AGPL 覆盖 DAG 引擎及其衍生品,包括网络服务部署;不碰 DAG 引擎的话,仓库其余部分按 MIT 用就行。
## 文档
-- [`docs/harness-dag.md`](./docs/harness-dag.md) —— DAG 引擎架构与用法
-- [`docs/localization/zh-hans-fixes.md`](./docs/localization/zh-hans-fixes.md) —— CJK 修复目录
-- [`NOTICE`](./NOTICE) —— 许可证边界与归属
+- [`docs/harness-dag.md`](./docs/harness-dag.md) —— deep 模式准入与审查生命周期
+- [`openspec/specs`](./openspec/specs) —— 引擎行为规范
+- [`.opencode/dag-prompts`](./.opencode/dag-prompts) —— 内置节点 prompt 模板
- [`AGENTS.md`](./AGENTS.md) —— 贡献与开发指南
-## 社区
+## 链接
-- 📖 [上游 opencode 社区](https://opencode.ai)
-- 📝 [Fork issue 跟踪](./issues)
-- 🔗 [GitHub](https://github.com/LeXwDeX/OpenCode-DAG)
+- [GitHub](https://github.com/LeXwDeX/OpenCode-GraphAgent) · [Issues](https://github.com/LeXwDeX/OpenCode-GraphAgent/issues)
+- [上游 opencode](https://opencode.ai)
diff --git a/config_assistant/cmd/ocfg/main.go b/config_assistant/cmd/ocfg/main.go
index 116450754..07b429b76 100644
--- a/config_assistant/cmd/ocfg/main.go
+++ b/config_assistant/cmd/ocfg/main.go
@@ -6,7 +6,7 @@ import (
tea "github.com/charmbracelet/bubbletea"
- "github.com/opencode-dag/config_assistant/internal/tui"
+ "github.com/LeXwDeX/OpenCode-GraphAgent/config_assistant/internal/tui"
)
const banner = `配置助手 — opencode 配置管理工具
diff --git a/config_assistant/go.mod b/config_assistant/go.mod
index 1ff0b49fe..52efd8d56 100644
--- a/config_assistant/go.mod
+++ b/config_assistant/go.mod
@@ -1,4 +1,4 @@
-module github.com/opencode-dag/config_assistant
+module github.com/LeXwDeX/OpenCode-GraphAgent/config_assistant
go 1.26.5
diff --git a/config_assistant/internal/config/write.go b/config_assistant/internal/config/write.go
index 207939788..f3eb126b7 100644
--- a/config_assistant/internal/config/write.go
+++ b/config_assistant/internal/config/write.go
@@ -11,7 +11,7 @@ import (
"strings"
"time"
- "github.com/opencode-dag/config_assistant/internal/models"
+ "github.com/LeXwDeX/OpenCode-GraphAgent/config_assistant/internal/models"
)
// WriteTarget 是生成配置的写入目标。
diff --git a/config_assistant/internal/config/write_test.go b/config_assistant/internal/config/write_test.go
index 212c1ce00..2b86df480 100644
--- a/config_assistant/internal/config/write_test.go
+++ b/config_assistant/internal/config/write_test.go
@@ -5,7 +5,7 @@ import (
"path/filepath"
"testing"
- "github.com/opencode-dag/config_assistant/internal/models"
+ "github.com/LeXwDeX/OpenCode-GraphAgent/config_assistant/internal/models"
)
func TestGenerateFromModelsSetsMainModel(t *testing.T) {
diff --git a/config_assistant/internal/tui/app.go b/config_assistant/internal/tui/app.go
index 6a3467e42..e32700eab 100644
--- a/config_assistant/internal/tui/app.go
+++ b/config_assistant/internal/tui/app.go
@@ -7,8 +7,8 @@ import (
tea "github.com/charmbracelet/bubbletea"
"github.com/charmbracelet/lipgloss"
- "github.com/opencode-dag/config_assistant/internal/config"
- "github.com/opencode-dag/config_assistant/internal/models"
+ "github.com/LeXwDeX/OpenCode-GraphAgent/config_assistant/internal/config"
+ "github.com/LeXwDeX/OpenCode-GraphAgent/config_assistant/internal/models"
)
type mode int
diff --git a/config_assistant/internal/tui/browser.go b/config_assistant/internal/tui/browser.go
index 09743e1d4..6e035021d 100644
--- a/config_assistant/internal/tui/browser.go
+++ b/config_assistant/internal/tui/browser.go
@@ -8,8 +8,8 @@ import (
tea "github.com/charmbracelet/bubbletea"
"github.com/charmbracelet/lipgloss"
- "github.com/opencode-dag/config_assistant/internal/config"
- "github.com/opencode-dag/config_assistant/internal/models"
+ "github.com/LeXwDeX/OpenCode-GraphAgent/config_assistant/internal/config"
+ "github.com/LeXwDeX/OpenCode-GraphAgent/config_assistant/internal/models"
)
func (a *app) updateBrowse(msg tea.Msg) (tea.Model, tea.Cmd) {
diff --git a/config_assistant/internal/tui/confirm.go b/config_assistant/internal/tui/confirm.go
index b7c3bc91e..eda91c646 100644
--- a/config_assistant/internal/tui/confirm.go
+++ b/config_assistant/internal/tui/confirm.go
@@ -8,7 +8,7 @@ import (
tea "github.com/charmbracelet/bubbletea"
"github.com/charmbracelet/lipgloss"
- "github.com/opencode-dag/config_assistant/internal/config"
+ "github.com/LeXwDeX/OpenCode-GraphAgent/config_assistant/internal/config"
)
func (a *app) updateConfirm(msg tea.Msg) (tea.Model, tea.Cmd) {
diff --git a/config_assistant/internal/tui/generate.go b/config_assistant/internal/tui/generate.go
index 7990e18cc..e6e36bb08 100644
--- a/config_assistant/internal/tui/generate.go
+++ b/config_assistant/internal/tui/generate.go
@@ -3,8 +3,8 @@ package tui
import (
"encoding/json"
- "github.com/opencode-dag/config_assistant/internal/config"
- "github.com/opencode-dag/config_assistant/internal/models"
+ "github.com/LeXwDeX/OpenCode-GraphAgent/config_assistant/internal/config"
+ "github.com/LeXwDeX/OpenCode-GraphAgent/config_assistant/internal/models"
)
// generatePreview 用当前选中的模型 + provider 选项 + 目标映射构建预览产物。
diff --git a/config_assistant/internal/tui/helpers.go b/config_assistant/internal/tui/helpers.go
index 80919facd..310e96a7f 100644
--- a/config_assistant/internal/tui/helpers.go
+++ b/config_assistant/internal/tui/helpers.go
@@ -4,7 +4,7 @@ import (
"os"
"strings"
- "github.com/opencode-dag/config_assistant/internal/config"
+ "github.com/LeXwDeX/OpenCode-GraphAgent/config_assistant/internal/config"
)
func managedDisplay() string {
diff --git a/config_assistant/internal/tui/input.go b/config_assistant/internal/tui/input.go
index 38995d446..870f71335 100644
--- a/config_assistant/internal/tui/input.go
+++ b/config_assistant/internal/tui/input.go
@@ -8,7 +8,7 @@ import (
tea "github.com/charmbracelet/bubbletea"
"github.com/charmbracelet/lipgloss"
- "github.com/opencode-dag/config_assistant/internal/config"
+ "github.com/LeXwDeX/OpenCode-GraphAgent/config_assistant/internal/config"
)
func (a *app) updateInput(msg tea.Msg) (tea.Model, tea.Cmd) {
diff --git a/config_assistant/internal/tui/step1.go b/config_assistant/internal/tui/step1.go
index 000ddd6ed..4150515d6 100644
--- a/config_assistant/internal/tui/step1.go
+++ b/config_assistant/internal/tui/step1.go
@@ -7,7 +7,7 @@ import (
tea "github.com/charmbracelet/bubbletea"
"github.com/charmbracelet/lipgloss"
- "github.com/opencode-dag/config_assistant/internal/config"
+ "github.com/LeXwDeX/OpenCode-GraphAgent/config_assistant/internal/config"
)
func (a *app) updateStep1(msg tea.Msg) (tea.Model, tea.Cmd) {
diff --git a/config_assistant/internal/tui/step2.go b/config_assistant/internal/tui/step2.go
index 50e6ada3e..f4ce8d8a6 100644
--- a/config_assistant/internal/tui/step2.go
+++ b/config_assistant/internal/tui/step2.go
@@ -8,7 +8,7 @@ import (
tea "github.com/charmbracelet/bubbletea"
"github.com/charmbracelet/lipgloss"
- "github.com/opencode-dag/config_assistant/internal/config"
+ "github.com/LeXwDeX/OpenCode-GraphAgent/config_assistant/internal/config"
)
func (a *app) updateStep2(msg tea.Msg) (tea.Model, tea.Cmd) {
diff --git a/config_assistant/internal/tui/view.go b/config_assistant/internal/tui/view.go
index 2d81fc7a3..9f6bca736 100644
--- a/config_assistant/internal/tui/view.go
+++ b/config_assistant/internal/tui/view.go
@@ -8,7 +8,7 @@ import (
tea "github.com/charmbracelet/bubbletea"
"github.com/charmbracelet/lipgloss"
- "github.com/opencode-dag/config_assistant/internal/config"
+ "github.com/LeXwDeX/OpenCode-GraphAgent/config_assistant/internal/config"
)
func (a *app) updateView(msg tea.Msg) (tea.Model, tea.Cmd) {
diff --git a/oc b/oc
index b5740e5c9..52da44d15 100755
--- a/oc
+++ b/oc
@@ -1,11 +1,11 @@
#!/usr/bin/env bash
# oc — opencode (LeXwDeX fork) version manager TUI
-# 升级渠道:https://github.com/LeXwDeX/OpenCode-DAG/releases
+# 升级渠道:https://github.com/LeXwDeX/OpenCode-GraphAgent/releases
# 依赖:bash, curl, tar/unzip, fzf(必需);gh(可选,无 token 走 curl)
set -euo pipefail
-REPO="LeXwDeX/OpenCode-DAG"
+REPO="LeXwDeX/OpenCode-GraphAgent"
RELEASES_URL="https://github.com/${REPO}/releases"
INSTALL_DIR="${OC_INSTALL_DIR:-/usr/local/bin}"
INSTALL_NAME="${OC_OPENCODE_NAME:-opencode}"
diff --git a/packages/core/src/dag/LICENSE b/packages/core/src/dag/LICENSE
new file mode 100644
index 000000000..0c97efd25
--- /dev/null
+++ b/packages/core/src/dag/LICENSE
@@ -0,0 +1,235 @@
+GNU AFFERO GENERAL PUBLIC LICENSE
+Version 3, 19 November 2007
+
+Copyright (C) 2007 Free Software Foundation, Inc.
+
+Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed.
+
+ Preamble
+
+The GNU Affero General Public License is a free, copyleft license for software and other kinds of works, specifically designed to ensure cooperation with the community in the case of network server software.
+
+The licenses for most software and other practical works are designed to take away your freedom to share and change the works. By contrast, our General Public Licenses are intended to guarantee your freedom to share and change all versions of a program--to make sure it remains free software for all its users.
+
+When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for them if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs, and that you know you can do these things.
+
+Developers that use our General Public Licenses protect your rights with two steps: (1) assert copyright on the software, and (2) offer you this License which gives you legal permission to copy, distribute and/or modify the software.
+
+A secondary benefit of defending all users' freedom is that improvements made in alternate versions of the program, if they receive widespread use, become available for other developers to incorporate. Many developers of free software are heartened and encouraged by the resulting cooperation. However, in the case of software used on network servers, this result may fail to come about. The GNU General Public License permits making a modified version and letting the public access it on a server without ever releasing its source code to the public.
+
+The GNU Affero General Public License is designed specifically to ensure that, in such cases, the modified source code becomes available to the community. It requires the operator of a network server to provide the source code of the modified version running there to the users of that server. Therefore, public use of a modified version, on a publicly accessible server, gives the public access to the source code of the modified version.
+
+An older license, called the Affero General Public License and published by Affero, was designed to accomplish similar goals. This is a different license, not a version of the Affero GPL, but Affero has released a new version of the Affero GPL which permits relicensing under this license.
+
+The precise terms and conditions for copying, distribution and modification follow.
+
+ TERMS AND CONDITIONS
+
+0. Definitions.
+
+"This License" refers to version 3 of the GNU Affero General Public License.
+
+"Copyright" also means copyright-like laws that apply to other kinds of works, such as semiconductor masks.
+
+"The Program" refers to any copyrightable work licensed under this License. Each licensee is addressed as "you". "Licensees" and "recipients" may be individuals or organizations.
+
+To "modify" a work means to copy from or adapt all or part of the work in a fashion requiring copyright permission, other than the making of an exact copy. The resulting work is called a "modified version" of the earlier work or a work "based on" the earlier work.
+
+A "covered work" means either the unmodified Program or a work based on the Program.
+
+To "propagate" a work means to do anything with it that, without permission, would make you directly or secondarily liable for infringement under applicable copyright law, except executing it on a computer or modifying a private copy. Propagation includes copying, distribution (with or without modification), making available to the public, and in some countries other activities as well.
+
+To "convey" a work means any kind of propagation that enables other parties to make or receive copies. Mere interaction with a user through a computer network, with no transfer of a copy, is not conveying.
+
+An interactive user interface displays "Appropriate Legal Notices" to the extent that it includes a convenient and prominently visible feature that (1) displays an appropriate copyright notice, and (2) tells the user that there is no warranty for the work (except to the extent that warranties are provided), that licensees may convey the work under this License, and how to view a copy of this License. If the interface presents a list of user commands or options, such as a menu, a prominent item in the list meets this criterion.
+
+1. Source Code.
+The "source code" for a work means the preferred form of the work for making modifications to it. "Object code" means any non-source form of a work.
+
+A "Standard Interface" means an interface that either is an official standard defined by a recognized standards body, or, in the case of interfaces specified for a particular programming language, one that is widely used among developers working in that language.
+
+The "System Libraries" of an executable work include anything, other than the work as a whole, that (a) is included in the normal form of packaging a Major Component, but which is not part of that Major Component, and (b) serves only to enable use of the work with that Major Component, or to implement a Standard Interface for which an implementation is available to the public in source code form. A "Major Component", in this context, means a major essential component (kernel, window system, and so on) of the specific operating system (if any) on which the executable work runs, or a compiler used to produce the work, or an object code interpreter used to run it.
+
+The "Corresponding Source" for a work in object code form means all the source code needed to generate, install, and (for an executable work) run the object code and to modify the work, including scripts to control those activities. However, it does not include the work's System Libraries, or general-purpose tools or generally available free programs which are used unmodified in performing those activities but which are not part of the work. For example, Corresponding Source includes interface definition files associated with source files for the work, and the source code for shared libraries and dynamically linked subprograms that the work is specifically designed to require, such as by intimate data communication or control flow between those
+subprograms and other parts of the work.
+
+The Corresponding Source need not include anything that users can regenerate automatically from other parts of the Corresponding Source.
+
+The Corresponding Source for a work in source code form is that same work.
+
+2. Basic Permissions.
+All rights granted under this License are granted for the term of copyright on the Program, and are irrevocable provided the stated conditions are met. This License explicitly affirms your unlimited permission to run the unmodified Program. The output from running a covered work is covered by this License only if the output, given its content, constitutes a covered work. This License acknowledges your rights of fair use or other equivalent, as provided by copyright law.
+
+You may make, run and propagate covered works that you do not convey, without conditions so long as your license otherwise remains in force. You may convey covered works to others for the sole purpose of having them make modifications exclusively for you, or provide you with facilities for running those works, provided that you comply with the terms of this License in conveying all material for which you do not control copyright. Those thus making or running the covered works for you must do so exclusively on your behalf, under your direction and control, on terms that prohibit them from making any copies of your copyrighted material outside their relationship with you.
+
+Conveying under any other circumstances is permitted solely under the conditions stated below. Sublicensing is not allowed; section 10 makes it unnecessary.
+
+3. Protecting Users' Legal Rights From Anti-Circumvention Law.
+No covered work shall be deemed part of an effective technological measure under any applicable law fulfilling obligations under article 11 of the WIPO copyright treaty adopted on 20 December 1996, or similar laws prohibiting or restricting circumvention of such measures.
+
+When you convey a covered work, you waive any legal power to forbid circumvention of technological measures to the extent such circumvention is effected by exercising rights under this License with respect to the covered work, and you disclaim any intention to limit operation or modification of the work as a means of enforcing, against the work's users, your or third parties' legal rights to forbid circumvention of technological measures.
+
+4. Conveying Verbatim Copies.
+You may convey verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice; keep intact all notices stating that this License and any non-permissive terms added in accord with section 7 apply to the code; keep intact all notices of the absence of any warranty; and give all recipients a copy of this License along with the Program.
+
+You may charge any price or no price for each copy that you convey, and you may offer support or warranty protection for a fee.
+
+5. Conveying Modified Source Versions.
+You may convey a work based on the Program, or the modifications to produce it from the Program, in the form of source code under the terms of section 4, provided that you also meet all of these conditions:
+
+ a) The work must carry prominent notices stating that you modified it, and giving a relevant date.
+
+ b) The work must carry prominent notices stating that it is released under this License and any conditions added under section 7. This requirement modifies the requirement in section 4 to "keep intact all notices".
+
+ c) You must license the entire work, as a whole, under this License to anyone who comes into possession of a copy. This License will therefore apply, along with any applicable section 7 additional terms, to the whole of the work, and all its parts, regardless of how they are packaged. This License gives no permission to license the work in any other way, but it does not invalidate such permission if you have separately received it.
+
+ d) If the work has interactive user interfaces, each must display Appropriate Legal Notices; however, if the Program has interactive interfaces that do not display Appropriate Legal Notices, your work need not make them do so.
+
+A compilation of a covered work with other separate and independent works, which are not by their nature extensions of the covered work, and which are not combined with it such as to form a larger program, in or on a volume of a storage or distribution medium, is called an "aggregate" if the compilation and its resulting copyright are not used to limit the access or legal rights of the compilation's users beyond what the individual works permit. Inclusion of a covered work in an aggregate does not cause this License to apply to the other parts of the aggregate.
+
+6. Conveying Non-Source Forms.
+You may convey a covered work in object code form under the terms of sections 4 and 5, provided that you also convey the machine-readable Corresponding Source under the terms of this License, in one of these ways:
+
+ a) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by the Corresponding Source fixed on a durable physical medium customarily used for software interchange.
+
+ b) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by a written offer, valid for at least three years and valid for as long as you offer spare parts or customer support for that product model, to give anyone who possesses the object code either (1) a copy of the Corresponding Source for all the software in the product that is covered by this License, on a durable physical medium customarily used for software interchange, for a price no more than your reasonable cost of physically performing this conveying of source, or (2) access to copy the Corresponding Source from a network server at no charge.
+
+ c) Convey individual copies of the object code with a copy of the written offer to provide the Corresponding Source. This alternative is allowed only occasionally and noncommercially, and only if you received the object code with such an offer, in accord with subsection 6b.
+
+ d) Convey the object code by offering access from a designated place (gratis or for a charge), and offer equivalent access to the Corresponding Source in the same way through the same place at no further charge. You need not require recipients to copy the Corresponding Source along with the object code. If the place to copy the object code is a network server, the Corresponding Source may be on a different server (operated by you or a third party) that supports equivalent copying facilities, provided you maintain clear directions next to the object code saying where to find the Corresponding Source. Regardless of what server hosts the Corresponding Source, you remain obligated to ensure that it is available for as long as needed to satisfy these requirements.
+
+ e) Convey the object code using peer-to-peer transmission, provided you inform other peers where the object code and Corresponding Source of the work are being offered to the general public at no charge under subsection 6d.
+
+A separable portion of the object code, whose source code is excluded from the Corresponding Source as a System Library, need not be included in conveying the object code work.
+
+A "User Product" is either (1) a "consumer product", which means any tangible personal property which is normally used for personal, family, or household purposes, or (2) anything designed or sold for incorporation into a dwelling. In determining whether a product is a consumer product, doubtful cases shall be resolved in favor of coverage. For a particular product received by a particular user, "normally used" refers to a typical or common use of that class of product, regardless of the status of the particular user or of the way in which the particular user actually uses, or expects or is expected to use, the product. A product is a consumer product regardless of whether the product has substantial commercial, industrial or non-consumer uses, unless such uses represent the only significant mode of use of the product.
+
+"Installation Information" for a User Product means any methods, procedures, authorization keys, or other information required to install and execute modified versions of a covered work in that User Product from a modified version of its Corresponding Source. The information must suffice to ensure that the continued functioning of the modified object code is in no case prevented or interfered with solely because modification has been made.
+
+If you convey an object code work under this section in, or with, or specifically for use in, a User Product, and the conveying occurs as part of a transaction in which the right of possession and use of the User Product is transferred to the recipient in perpetuity or for a fixed term (regardless of how the transaction is characterized), the Corresponding Source conveyed under this section must be accompanied by the Installation Information. But this requirement does not apply if neither you nor any third party retains the ability to install modified object code on the User Product (for example, the work has been installed in ROM).
+
+The requirement to provide Installation Information does not include a requirement to continue to provide support service, warranty, or updates for a work that has been modified or installed by the recipient, or for the User Product in which it has been modified or installed. Access to a network may be denied when the modification itself materially and adversely affects the operation of the network or violates the rules and protocols for communication across the network.
+
+Corresponding Source conveyed, and Installation Information provided, in accord with this section must be in a format that is publicly documented (and with an implementation available to the public in source code form), and must require no special password or key for unpacking, reading or copying.
+
+7. Additional Terms.
+"Additional permissions" are terms that supplement the terms of this License by making exceptions from one or more of its conditions. Additional permissions that are applicable to the entire Program shall be treated as though they were included in this License, to the extent that they are valid under applicable law. If additional permissions apply only to part of the Program, that part may be used separately under those permissions, but the entire Program remains governed by this License without regard to the additional permissions.
+
+When you convey a copy of a covered work, you may at your option remove any additional permissions from that copy, or from any part of it. (Additional permissions may be written to require their own removal in certain cases when you modify the work.) You may place additional permissions on material, added by you to a covered work, for which you have or can give appropriate copyright permission.
+
+Notwithstanding any other provision of this License, for material you add to a covered work, you may (if authorized by the copyright holders of that material) supplement the terms of this License with terms:
+
+ a) Disclaiming warranty or limiting liability differently from the terms of sections 15 and 16 of this License; or
+
+ b) Requiring preservation of specified reasonable legal notices or author attributions in that material or in the Appropriate Legal Notices displayed by works containing it; or
+
+ c) Prohibiting misrepresentation of the origin of that material, or requiring that modified versions of such material be marked in reasonable ways as different from the original version; or
+
+ d) Limiting the use for publicity purposes of names of licensors or authors of the material; or
+
+ e) Declining to grant rights under trademark law for use of some trade names, trademarks, or service marks; or
+
+ f) Requiring indemnification of licensors and authors of that material by anyone who conveys the material (or modified versions of it) with contractual assumptions of liability to the recipient, for any liability that these contractual assumptions directly impose on those licensors and authors.
+
+All other non-permissive additional terms are considered "further restrictions" within the meaning of section 10. If the Program as you received it, or any part of it, contains a notice stating that it is governed by this License along with a term that is a further restriction, you may remove that term. If a license document contains a further restriction but permits relicensing or conveying under this License, you may add to a covered work material governed by the terms of that license document, provided that the further restriction does not survive such relicensing or conveying.
+
+If you add terms to a covered work in accord with this section, you must place, in the relevant source files, a statement of the additional terms that apply to those files, or a notice indicating where to find the applicable terms.
+
+Additional terms, permissive or non-permissive, may be stated in the form of a separately written license, or stated as exceptions; the above requirements apply either way.
+
+8. Termination.
+
+You may not propagate or modify a covered work except as expressly provided under this License. Any attempt otherwise to propagate or modify it is void, and will automatically terminate your rights under this License (including any patent licenses granted under the third paragraph of section 11).
+
+However, if you cease all violation of this License, then your license from a particular copyright holder is reinstated (a) provisionally, unless and until the copyright holder explicitly and finally terminates your license, and (b) permanently, if the copyright holder fails to notify you of the violation by some reasonable means prior to 60 days after the cessation.
+
+Moreover, your license from a particular copyright holder is reinstated permanently if the copyright holder notifies you of the violation by some reasonable means, this is the first time you have received notice of violation of this License (for any work) from that copyright holder, and you cure the violation prior to 30 days after your receipt of the notice.
+
+Termination of your rights under this section does not terminate the licenses of parties who have received copies or rights from you under this License. If your rights have been terminated and not permanently reinstated, you do not qualify to receive new licenses for the same material under section 10.
+
+9. Acceptance Not Required for Having Copies.
+
+You are not required to accept this License in order to receive or run a copy of the Program. Ancillary propagation of a covered work occurring solely as a consequence of using peer-to-peer transmission to receive a copy likewise does not require acceptance. However, nothing other than this License grants you permission to propagate or modify any covered work. These actions infringe copyright if you do not accept this License. Therefore, by modifying or propagating a covered work, you indicate your acceptance of this License to do so.
+
+10. Automatic Licensing of Downstream Recipients.
+
+Each time you convey a covered work, the recipient automatically receives a license from the original licensors, to run, modify and propagate that work, subject to this License. You are not responsible for enforcing compliance by third parties with this License.
+
+An "entity transaction" is a transaction transferring control of an organization, or substantially all assets of one, or subdividing an organization, or merging organizations. If propagation of a covered work results from an entity transaction, each party to that transaction who receives a copy of the work also receives whatever licenses to the work the party's predecessor in interest had or could give under the previous paragraph, plus a right to possession of the Corresponding Source of the work from the predecessor in interest, if the predecessor has it or can get it with reasonable efforts.
+
+You may not impose any further restrictions on the exercise of the rights granted or affirmed under this License. For example, you may not impose a license fee, royalty, or other charge for exercise of rights granted under this License, and you may not initiate litigation (including a cross-claim or counterclaim in a lawsuit) alleging that any patent claim is infringed by making, using, selling, offering for sale, or importing the Program or any portion of it.
+
+11. Patents.
+
+A "contributor" is a copyright holder who authorizes use under this License of the Program or a work on which the Program is based. The work thus licensed is called the contributor's "contributor version".
+
+A contributor's "essential patent claims" are all patent claims owned or controlled by the contributor, whether already acquired or hereafter acquired, that would be infringed by some manner, permitted by this License, of making, using, or selling its contributor version, but do not include claims that would be infringed only as a consequence of further modification of the contributor version. For purposes of this definition, "control" includes the right to grant patent sublicenses in a manner consistent with the requirements of this License.
+
+Each contributor grants you a non-exclusive, worldwide, royalty-free patent license under the contributor's essential patent claims, to make, use, sell, offer for sale, import and otherwise run, modify and propagate the contents of its contributor version.
+
+In the following three paragraphs, a "patent license" is any express agreement or commitment, however denominated, not to enforce a patent (such as an express permission to practice a patent or covenant not to sue for patent infringement). To "grant" such a patent license to a party means to make such an agreement or commitment not to enforce a patent against the party.
+
+If you convey a covered work, knowingly relying on a patent license, and the Corresponding Source of the work is not available for anyone to copy, free of charge and under the terms of this License, through a publicly available network server or other readily accessible means, then you must either (1) cause the Corresponding Source to be so available, or (2) arrange to deprive yourself of the benefit of the patent license for this particular work, or (3) arrange, in a manner consistent with the requirements of this License, to extend the patent
+license to downstream recipients. "Knowingly relying" means you have actual knowledge that, but for the patent license, your conveying the covered work in a country, or your recipient's use of the covered work in a country, would infringe one or more identifiable patents in that country that you have reason to believe are valid.
+
+If, pursuant to or in connection with a single transaction or arrangement, you convey, or propagate by procuring conveyance of, a covered work, and grant a patent license to some of the parties receiving the covered work authorizing them to use, propagate, modify or convey a specific copy of the covered work, then the patent license you grant is automatically extended to all recipients of the covered work and works based on it.
+
+A patent license is "discriminatory" if it does not include within the scope of its coverage, prohibits the exercise of, or is conditioned on the non-exercise of one or more of the rights that are specifically granted under this License. You may not convey a covered work if you are a party to an arrangement with a third party that is in the business of distributing software, under which you make payment to the third party based on the extent of your activity of conveying the work, and under which the third party grants, to any of the parties who would receive the covered work from you, a discriminatory patent license (a) in connection with copies of the covered work conveyed by you (or copies made from those copies), or (b) primarily for and in connection with specific products or compilations that contain the covered work, unless you entered into that arrangement, or that patent license was granted, prior to 28 March 2007.
+
+Nothing in this License shall be construed as excluding or limiting any implied license or other defenses to infringement that may otherwise be available to you under applicable patent law.
+
+12. No Surrender of Others' Freedom.
+
+If conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot convey a covered work so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may
+not convey it at all. For example, if you agree to terms that obligate you to collect a royalty for further conveying from those to whom you convey the Program, the only way you could satisfy both those terms and this License would be to refrain entirely from conveying the Program.
+
+13. Remote Network Interaction; Use with the GNU General Public License.
+
+Notwithstanding any other provision of this License, if you modify the Program, your modified version must prominently offer all users interacting with it remotely through a computer network (if your version supports such interaction) an opportunity to receive the Corresponding Source of your version by providing access to the Corresponding Source from a network server at no charge, through some standard or customary means of facilitating copying of software. This Corresponding Source shall include the Corresponding Source for any work covered by version 3 of the GNU General Public License that is incorporated pursuant to the following paragraph.
+
+Notwithstanding any other provision of this License, you have permission to link or combine any covered work with a work licensed under version 3 of the GNU General Public License into a single combined work, and to convey the resulting work. The terms of this License will continue to apply to the part which is the covered work, but the work with which it is combined will remain governed by version 3 of the GNU General Public License.
+
+14. Revised Versions of this License.
+
+The Free Software Foundation may publish revised and/or new versions of the GNU Affero General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns.
+
+Each version is given a distinguishing version number. If the Program specifies that a certain numbered version of the GNU Affero General Public License "or any later version" applies to it, you have the option of following the terms and conditions either of that numbered version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of the GNU Affero General Public License, you may choose any version ever published by the Free Software Foundation.
+
+If the Program specifies that a proxy can decide which future versions of the GNU Affero General Public License can be used, that proxy's public statement of acceptance of a version permanently authorizes you to choose that version for the Program.
+
+Later license versions may give you additional or different permissions. However, no additional obligations are imposed on any author or copyright holder as a result of your choosing to follow a later version.
+
+15. Disclaimer of Warranty.
+
+THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
+
+16. Limitation of Liability.
+
+IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
+
+17. Interpretation of Sections 15 and 16.
+
+If the disclaimer of warranty and limitation of liability provided above cannot be given local legal effect according to their terms, reviewing courts shall apply local law that most closely approximates an absolute waiver of all civil liability in connection with the Program, unless a warranty or assumption of liability accompanies a copy of the Program in return for a fee.
+
+END OF TERMS AND CONDITIONS
+
+ How to Apply These Terms to Your New Programs
+
+If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms.
+
+To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively state the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found.
+
+
+ Copyright (C)
+
+ This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details.
+
+ You should have received a copy of the GNU Affero General Public License along with this program. If not, see .
+
+Also add information on how to contact you by electronic and paper mail.
+
+If your software can interact with users remotely through a computer network, you should also make sure that it provides a way for users to get its source. For example, if your program is a web application, its interface could display a "Source" link that leads users to an archive of the code. There are many ways you could offer source, and different solutions will be better for different programs; see section 13 for the specific requirements.
+
+You should also get your employer (if you work as a programmer) or school, if any, to sign a "copyright disclaimer" for the program, if necessary. For more information on this, and how to apply and follow the GNU AGPL, see .
diff --git a/packages/opencode/src/dag/LICENSE b/packages/opencode/src/dag/LICENSE
new file mode 100644
index 000000000..0c97efd25
--- /dev/null
+++ b/packages/opencode/src/dag/LICENSE
@@ -0,0 +1,235 @@
+GNU AFFERO GENERAL PUBLIC LICENSE
+Version 3, 19 November 2007
+
+Copyright (C) 2007 Free Software Foundation, Inc.
+
+Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed.
+
+ Preamble
+
+The GNU Affero General Public License is a free, copyleft license for software and other kinds of works, specifically designed to ensure cooperation with the community in the case of network server software.
+
+The licenses for most software and other practical works are designed to take away your freedom to share and change the works. By contrast, our General Public Licenses are intended to guarantee your freedom to share and change all versions of a program--to make sure it remains free software for all its users.
+
+When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for them if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs, and that you know you can do these things.
+
+Developers that use our General Public Licenses protect your rights with two steps: (1) assert copyright on the software, and (2) offer you this License which gives you legal permission to copy, distribute and/or modify the software.
+
+A secondary benefit of defending all users' freedom is that improvements made in alternate versions of the program, if they receive widespread use, become available for other developers to incorporate. Many developers of free software are heartened and encouraged by the resulting cooperation. However, in the case of software used on network servers, this result may fail to come about. The GNU General Public License permits making a modified version and letting the public access it on a server without ever releasing its source code to the public.
+
+The GNU Affero General Public License is designed specifically to ensure that, in such cases, the modified source code becomes available to the community. It requires the operator of a network server to provide the source code of the modified version running there to the users of that server. Therefore, public use of a modified version, on a publicly accessible server, gives the public access to the source code of the modified version.
+
+An older license, called the Affero General Public License and published by Affero, was designed to accomplish similar goals. This is a different license, not a version of the Affero GPL, but Affero has released a new version of the Affero GPL which permits relicensing under this license.
+
+The precise terms and conditions for copying, distribution and modification follow.
+
+ TERMS AND CONDITIONS
+
+0. Definitions.
+
+"This License" refers to version 3 of the GNU Affero General Public License.
+
+"Copyright" also means copyright-like laws that apply to other kinds of works, such as semiconductor masks.
+
+"The Program" refers to any copyrightable work licensed under this License. Each licensee is addressed as "you". "Licensees" and "recipients" may be individuals or organizations.
+
+To "modify" a work means to copy from or adapt all or part of the work in a fashion requiring copyright permission, other than the making of an exact copy. The resulting work is called a "modified version" of the earlier work or a work "based on" the earlier work.
+
+A "covered work" means either the unmodified Program or a work based on the Program.
+
+To "propagate" a work means to do anything with it that, without permission, would make you directly or secondarily liable for infringement under applicable copyright law, except executing it on a computer or modifying a private copy. Propagation includes copying, distribution (with or without modification), making available to the public, and in some countries other activities as well.
+
+To "convey" a work means any kind of propagation that enables other parties to make or receive copies. Mere interaction with a user through a computer network, with no transfer of a copy, is not conveying.
+
+An interactive user interface displays "Appropriate Legal Notices" to the extent that it includes a convenient and prominently visible feature that (1) displays an appropriate copyright notice, and (2) tells the user that there is no warranty for the work (except to the extent that warranties are provided), that licensees may convey the work under this License, and how to view a copy of this License. If the interface presents a list of user commands or options, such as a menu, a prominent item in the list meets this criterion.
+
+1. Source Code.
+The "source code" for a work means the preferred form of the work for making modifications to it. "Object code" means any non-source form of a work.
+
+A "Standard Interface" means an interface that either is an official standard defined by a recognized standards body, or, in the case of interfaces specified for a particular programming language, one that is widely used among developers working in that language.
+
+The "System Libraries" of an executable work include anything, other than the work as a whole, that (a) is included in the normal form of packaging a Major Component, but which is not part of that Major Component, and (b) serves only to enable use of the work with that Major Component, or to implement a Standard Interface for which an implementation is available to the public in source code form. A "Major Component", in this context, means a major essential component (kernel, window system, and so on) of the specific operating system (if any) on which the executable work runs, or a compiler used to produce the work, or an object code interpreter used to run it.
+
+The "Corresponding Source" for a work in object code form means all the source code needed to generate, install, and (for an executable work) run the object code and to modify the work, including scripts to control those activities. However, it does not include the work's System Libraries, or general-purpose tools or generally available free programs which are used unmodified in performing those activities but which are not part of the work. For example, Corresponding Source includes interface definition files associated with source files for the work, and the source code for shared libraries and dynamically linked subprograms that the work is specifically designed to require, such as by intimate data communication or control flow between those
+subprograms and other parts of the work.
+
+The Corresponding Source need not include anything that users can regenerate automatically from other parts of the Corresponding Source.
+
+The Corresponding Source for a work in source code form is that same work.
+
+2. Basic Permissions.
+All rights granted under this License are granted for the term of copyright on the Program, and are irrevocable provided the stated conditions are met. This License explicitly affirms your unlimited permission to run the unmodified Program. The output from running a covered work is covered by this License only if the output, given its content, constitutes a covered work. This License acknowledges your rights of fair use or other equivalent, as provided by copyright law.
+
+You may make, run and propagate covered works that you do not convey, without conditions so long as your license otherwise remains in force. You may convey covered works to others for the sole purpose of having them make modifications exclusively for you, or provide you with facilities for running those works, provided that you comply with the terms of this License in conveying all material for which you do not control copyright. Those thus making or running the covered works for you must do so exclusively on your behalf, under your direction and control, on terms that prohibit them from making any copies of your copyrighted material outside their relationship with you.
+
+Conveying under any other circumstances is permitted solely under the conditions stated below. Sublicensing is not allowed; section 10 makes it unnecessary.
+
+3. Protecting Users' Legal Rights From Anti-Circumvention Law.
+No covered work shall be deemed part of an effective technological measure under any applicable law fulfilling obligations under article 11 of the WIPO copyright treaty adopted on 20 December 1996, or similar laws prohibiting or restricting circumvention of such measures.
+
+When you convey a covered work, you waive any legal power to forbid circumvention of technological measures to the extent such circumvention is effected by exercising rights under this License with respect to the covered work, and you disclaim any intention to limit operation or modification of the work as a means of enforcing, against the work's users, your or third parties' legal rights to forbid circumvention of technological measures.
+
+4. Conveying Verbatim Copies.
+You may convey verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice; keep intact all notices stating that this License and any non-permissive terms added in accord with section 7 apply to the code; keep intact all notices of the absence of any warranty; and give all recipients a copy of this License along with the Program.
+
+You may charge any price or no price for each copy that you convey, and you may offer support or warranty protection for a fee.
+
+5. Conveying Modified Source Versions.
+You may convey a work based on the Program, or the modifications to produce it from the Program, in the form of source code under the terms of section 4, provided that you also meet all of these conditions:
+
+ a) The work must carry prominent notices stating that you modified it, and giving a relevant date.
+
+ b) The work must carry prominent notices stating that it is released under this License and any conditions added under section 7. This requirement modifies the requirement in section 4 to "keep intact all notices".
+
+ c) You must license the entire work, as a whole, under this License to anyone who comes into possession of a copy. This License will therefore apply, along with any applicable section 7 additional terms, to the whole of the work, and all its parts, regardless of how they are packaged. This License gives no permission to license the work in any other way, but it does not invalidate such permission if you have separately received it.
+
+ d) If the work has interactive user interfaces, each must display Appropriate Legal Notices; however, if the Program has interactive interfaces that do not display Appropriate Legal Notices, your work need not make them do so.
+
+A compilation of a covered work with other separate and independent works, which are not by their nature extensions of the covered work, and which are not combined with it such as to form a larger program, in or on a volume of a storage or distribution medium, is called an "aggregate" if the compilation and its resulting copyright are not used to limit the access or legal rights of the compilation's users beyond what the individual works permit. Inclusion of a covered work in an aggregate does not cause this License to apply to the other parts of the aggregate.
+
+6. Conveying Non-Source Forms.
+You may convey a covered work in object code form under the terms of sections 4 and 5, provided that you also convey the machine-readable Corresponding Source under the terms of this License, in one of these ways:
+
+ a) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by the Corresponding Source fixed on a durable physical medium customarily used for software interchange.
+
+ b) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by a written offer, valid for at least three years and valid for as long as you offer spare parts or customer support for that product model, to give anyone who possesses the object code either (1) a copy of the Corresponding Source for all the software in the product that is covered by this License, on a durable physical medium customarily used for software interchange, for a price no more than your reasonable cost of physically performing this conveying of source, or (2) access to copy the Corresponding Source from a network server at no charge.
+
+ c) Convey individual copies of the object code with a copy of the written offer to provide the Corresponding Source. This alternative is allowed only occasionally and noncommercially, and only if you received the object code with such an offer, in accord with subsection 6b.
+
+ d) Convey the object code by offering access from a designated place (gratis or for a charge), and offer equivalent access to the Corresponding Source in the same way through the same place at no further charge. You need not require recipients to copy the Corresponding Source along with the object code. If the place to copy the object code is a network server, the Corresponding Source may be on a different server (operated by you or a third party) that supports equivalent copying facilities, provided you maintain clear directions next to the object code saying where to find the Corresponding Source. Regardless of what server hosts the Corresponding Source, you remain obligated to ensure that it is available for as long as needed to satisfy these requirements.
+
+ e) Convey the object code using peer-to-peer transmission, provided you inform other peers where the object code and Corresponding Source of the work are being offered to the general public at no charge under subsection 6d.
+
+A separable portion of the object code, whose source code is excluded from the Corresponding Source as a System Library, need not be included in conveying the object code work.
+
+A "User Product" is either (1) a "consumer product", which means any tangible personal property which is normally used for personal, family, or household purposes, or (2) anything designed or sold for incorporation into a dwelling. In determining whether a product is a consumer product, doubtful cases shall be resolved in favor of coverage. For a particular product received by a particular user, "normally used" refers to a typical or common use of that class of product, regardless of the status of the particular user or of the way in which the particular user actually uses, or expects or is expected to use, the product. A product is a consumer product regardless of whether the product has substantial commercial, industrial or non-consumer uses, unless such uses represent the only significant mode of use of the product.
+
+"Installation Information" for a User Product means any methods, procedures, authorization keys, or other information required to install and execute modified versions of a covered work in that User Product from a modified version of its Corresponding Source. The information must suffice to ensure that the continued functioning of the modified object code is in no case prevented or interfered with solely because modification has been made.
+
+If you convey an object code work under this section in, or with, or specifically for use in, a User Product, and the conveying occurs as part of a transaction in which the right of possession and use of the User Product is transferred to the recipient in perpetuity or for a fixed term (regardless of how the transaction is characterized), the Corresponding Source conveyed under this section must be accompanied by the Installation Information. But this requirement does not apply if neither you nor any third party retains the ability to install modified object code on the User Product (for example, the work has been installed in ROM).
+
+The requirement to provide Installation Information does not include a requirement to continue to provide support service, warranty, or updates for a work that has been modified or installed by the recipient, or for the User Product in which it has been modified or installed. Access to a network may be denied when the modification itself materially and adversely affects the operation of the network or violates the rules and protocols for communication across the network.
+
+Corresponding Source conveyed, and Installation Information provided, in accord with this section must be in a format that is publicly documented (and with an implementation available to the public in source code form), and must require no special password or key for unpacking, reading or copying.
+
+7. Additional Terms.
+"Additional permissions" are terms that supplement the terms of this License by making exceptions from one or more of its conditions. Additional permissions that are applicable to the entire Program shall be treated as though they were included in this License, to the extent that they are valid under applicable law. If additional permissions apply only to part of the Program, that part may be used separately under those permissions, but the entire Program remains governed by this License without regard to the additional permissions.
+
+When you convey a copy of a covered work, you may at your option remove any additional permissions from that copy, or from any part of it. (Additional permissions may be written to require their own removal in certain cases when you modify the work.) You may place additional permissions on material, added by you to a covered work, for which you have or can give appropriate copyright permission.
+
+Notwithstanding any other provision of this License, for material you add to a covered work, you may (if authorized by the copyright holders of that material) supplement the terms of this License with terms:
+
+ a) Disclaiming warranty or limiting liability differently from the terms of sections 15 and 16 of this License; or
+
+ b) Requiring preservation of specified reasonable legal notices or author attributions in that material or in the Appropriate Legal Notices displayed by works containing it; or
+
+ c) Prohibiting misrepresentation of the origin of that material, or requiring that modified versions of such material be marked in reasonable ways as different from the original version; or
+
+ d) Limiting the use for publicity purposes of names of licensors or authors of the material; or
+
+ e) Declining to grant rights under trademark law for use of some trade names, trademarks, or service marks; or
+
+ f) Requiring indemnification of licensors and authors of that material by anyone who conveys the material (or modified versions of it) with contractual assumptions of liability to the recipient, for any liability that these contractual assumptions directly impose on those licensors and authors.
+
+All other non-permissive additional terms are considered "further restrictions" within the meaning of section 10. If the Program as you received it, or any part of it, contains a notice stating that it is governed by this License along with a term that is a further restriction, you may remove that term. If a license document contains a further restriction but permits relicensing or conveying under this License, you may add to a covered work material governed by the terms of that license document, provided that the further restriction does not survive such relicensing or conveying.
+
+If you add terms to a covered work in accord with this section, you must place, in the relevant source files, a statement of the additional terms that apply to those files, or a notice indicating where to find the applicable terms.
+
+Additional terms, permissive or non-permissive, may be stated in the form of a separately written license, or stated as exceptions; the above requirements apply either way.
+
+8. Termination.
+
+You may not propagate or modify a covered work except as expressly provided under this License. Any attempt otherwise to propagate or modify it is void, and will automatically terminate your rights under this License (including any patent licenses granted under the third paragraph of section 11).
+
+However, if you cease all violation of this License, then your license from a particular copyright holder is reinstated (a) provisionally, unless and until the copyright holder explicitly and finally terminates your license, and (b) permanently, if the copyright holder fails to notify you of the violation by some reasonable means prior to 60 days after the cessation.
+
+Moreover, your license from a particular copyright holder is reinstated permanently if the copyright holder notifies you of the violation by some reasonable means, this is the first time you have received notice of violation of this License (for any work) from that copyright holder, and you cure the violation prior to 30 days after your receipt of the notice.
+
+Termination of your rights under this section does not terminate the licenses of parties who have received copies or rights from you under this License. If your rights have been terminated and not permanently reinstated, you do not qualify to receive new licenses for the same material under section 10.
+
+9. Acceptance Not Required for Having Copies.
+
+You are not required to accept this License in order to receive or run a copy of the Program. Ancillary propagation of a covered work occurring solely as a consequence of using peer-to-peer transmission to receive a copy likewise does not require acceptance. However, nothing other than this License grants you permission to propagate or modify any covered work. These actions infringe copyright if you do not accept this License. Therefore, by modifying or propagating a covered work, you indicate your acceptance of this License to do so.
+
+10. Automatic Licensing of Downstream Recipients.
+
+Each time you convey a covered work, the recipient automatically receives a license from the original licensors, to run, modify and propagate that work, subject to this License. You are not responsible for enforcing compliance by third parties with this License.
+
+An "entity transaction" is a transaction transferring control of an organization, or substantially all assets of one, or subdividing an organization, or merging organizations. If propagation of a covered work results from an entity transaction, each party to that transaction who receives a copy of the work also receives whatever licenses to the work the party's predecessor in interest had or could give under the previous paragraph, plus a right to possession of the Corresponding Source of the work from the predecessor in interest, if the predecessor has it or can get it with reasonable efforts.
+
+You may not impose any further restrictions on the exercise of the rights granted or affirmed under this License. For example, you may not impose a license fee, royalty, or other charge for exercise of rights granted under this License, and you may not initiate litigation (including a cross-claim or counterclaim in a lawsuit) alleging that any patent claim is infringed by making, using, selling, offering for sale, or importing the Program or any portion of it.
+
+11. Patents.
+
+A "contributor" is a copyright holder who authorizes use under this License of the Program or a work on which the Program is based. The work thus licensed is called the contributor's "contributor version".
+
+A contributor's "essential patent claims" are all patent claims owned or controlled by the contributor, whether already acquired or hereafter acquired, that would be infringed by some manner, permitted by this License, of making, using, or selling its contributor version, but do not include claims that would be infringed only as a consequence of further modification of the contributor version. For purposes of this definition, "control" includes the right to grant patent sublicenses in a manner consistent with the requirements of this License.
+
+Each contributor grants you a non-exclusive, worldwide, royalty-free patent license under the contributor's essential patent claims, to make, use, sell, offer for sale, import and otherwise run, modify and propagate the contents of its contributor version.
+
+In the following three paragraphs, a "patent license" is any express agreement or commitment, however denominated, not to enforce a patent (such as an express permission to practice a patent or covenant not to sue for patent infringement). To "grant" such a patent license to a party means to make such an agreement or commitment not to enforce a patent against the party.
+
+If you convey a covered work, knowingly relying on a patent license, and the Corresponding Source of the work is not available for anyone to copy, free of charge and under the terms of this License, through a publicly available network server or other readily accessible means, then you must either (1) cause the Corresponding Source to be so available, or (2) arrange to deprive yourself of the benefit of the patent license for this particular work, or (3) arrange, in a manner consistent with the requirements of this License, to extend the patent
+license to downstream recipients. "Knowingly relying" means you have actual knowledge that, but for the patent license, your conveying the covered work in a country, or your recipient's use of the covered work in a country, would infringe one or more identifiable patents in that country that you have reason to believe are valid.
+
+If, pursuant to or in connection with a single transaction or arrangement, you convey, or propagate by procuring conveyance of, a covered work, and grant a patent license to some of the parties receiving the covered work authorizing them to use, propagate, modify or convey a specific copy of the covered work, then the patent license you grant is automatically extended to all recipients of the covered work and works based on it.
+
+A patent license is "discriminatory" if it does not include within the scope of its coverage, prohibits the exercise of, or is conditioned on the non-exercise of one or more of the rights that are specifically granted under this License. You may not convey a covered work if you are a party to an arrangement with a third party that is in the business of distributing software, under which you make payment to the third party based on the extent of your activity of conveying the work, and under which the third party grants, to any of the parties who would receive the covered work from you, a discriminatory patent license (a) in connection with copies of the covered work conveyed by you (or copies made from those copies), or (b) primarily for and in connection with specific products or compilations that contain the covered work, unless you entered into that arrangement, or that patent license was granted, prior to 28 March 2007.
+
+Nothing in this License shall be construed as excluding or limiting any implied license or other defenses to infringement that may otherwise be available to you under applicable patent law.
+
+12. No Surrender of Others' Freedom.
+
+If conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot convey a covered work so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may
+not convey it at all. For example, if you agree to terms that obligate you to collect a royalty for further conveying from those to whom you convey the Program, the only way you could satisfy both those terms and this License would be to refrain entirely from conveying the Program.
+
+13. Remote Network Interaction; Use with the GNU General Public License.
+
+Notwithstanding any other provision of this License, if you modify the Program, your modified version must prominently offer all users interacting with it remotely through a computer network (if your version supports such interaction) an opportunity to receive the Corresponding Source of your version by providing access to the Corresponding Source from a network server at no charge, through some standard or customary means of facilitating copying of software. This Corresponding Source shall include the Corresponding Source for any work covered by version 3 of the GNU General Public License that is incorporated pursuant to the following paragraph.
+
+Notwithstanding any other provision of this License, you have permission to link or combine any covered work with a work licensed under version 3 of the GNU General Public License into a single combined work, and to convey the resulting work. The terms of this License will continue to apply to the part which is the covered work, but the work with which it is combined will remain governed by version 3 of the GNU General Public License.
+
+14. Revised Versions of this License.
+
+The Free Software Foundation may publish revised and/or new versions of the GNU Affero General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns.
+
+Each version is given a distinguishing version number. If the Program specifies that a certain numbered version of the GNU Affero General Public License "or any later version" applies to it, you have the option of following the terms and conditions either of that numbered version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of the GNU Affero General Public License, you may choose any version ever published by the Free Software Foundation.
+
+If the Program specifies that a proxy can decide which future versions of the GNU Affero General Public License can be used, that proxy's public statement of acceptance of a version permanently authorizes you to choose that version for the Program.
+
+Later license versions may give you additional or different permissions. However, no additional obligations are imposed on any author or copyright holder as a result of your choosing to follow a later version.
+
+15. Disclaimer of Warranty.
+
+THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
+
+16. Limitation of Liability.
+
+IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
+
+17. Interpretation of Sections 15 and 16.
+
+If the disclaimer of warranty and limitation of liability provided above cannot be given local legal effect according to their terms, reviewing courts shall apply local law that most closely approximates an absolute waiver of all civil liability in connection with the Program, unless a warranty or assumption of liability accompanies a copy of the Program in return for a fee.
+
+END OF TERMS AND CONDITIONS
+
+ How to Apply These Terms to Your New Programs
+
+If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms.
+
+To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively state the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found.
+
+
+ Copyright (C)
+
+ This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details.
+
+ You should have received a copy of the GNU Affero General Public License along with this program. If not, see .
+
+Also add information on how to contact you by electronic and paper mail.
+
+If your software can interact with users remotely through a computer network, you should also make sure that it provides a way for users to get its source. For example, if your program is a web application, its interface could display a "Source" link that leads users to an archive of the code. There are many ways you could offer source, and different solutions will be better for different programs; see section 13 for the specific requirements.
+
+You should also get your employer (if you work as a programmer) or school, if any, to sign a "copyright disclaimer" for the program, if necessary. For more information on this, and how to apply and follow the GNU AGPL, see .
diff --git a/test-black-screen.sh b/test-black-screen.sh
index 2081bef1c..40cef4d41 100644
--- a/test-black-screen.sh
+++ b/test-black-screen.sh
@@ -44,7 +44,7 @@ case "$VERSION" in
fork-release)
echo "=== 测试 GitHub FORK-RELEASE 版本 ==="
echo "请从 GitHub Actions 下载最新的 release binary:"
- echo " https://github.com/LeXwDeX/OpenCode-DAG/actions/runs/28419729354"
+ echo " https://github.com/LeXwDeX/OpenCode-GraphAgent/actions/runs/28419729354"
echo ""
echo "下载后解压测试:"
echo " tar -xzf opencode-linux-x64.tar.gz"