sub-agy 运行时契约
sub-agy 是 Antigravity CLI (agy) 的异步作业封装层。Kimi Code 通过插件命令把代码执行任务派发到后台,agy 在独立 git worktree 里执行,规划侧只负责编排,不占用 Kimi 调用额度。
CLI 命令全集
sub-agy run --plan <file.md> --cwd <project> [--model ...] [--effort ...] [--timeout ...] [--no-worktree]
- 创建作业,写入 plan/prompt/schema/meta,spawn detached supervisor,默认立即返回
job_id, state, queue_position, worktree, branch, events_log。
- 不会因并发上限失败:超出
max_concurrent 时作业以 queued 落盘等槽位,queue_position 给出 1 起的 FIFO 位次(null = 已拿到槽位直接跑)。
sub-agy watch <job-id ...> [--cwd <project>] [--interval 秒, 默认 2] [--timeout 时长, 默认 60m] [--strict] [--pretty]
- 轮询每个作业直到全部进入终态。barrier 语义:传多个 id 时要等最后一个才退出。增量汇报场景请一个 id 一个 watcher。
- 任一 id 不存在时立即 exit 3。
- interval 越界(不在 0.5–60 秒之间)exit 64。
- 全部终态时输出 JSON 数组,每个元素包含:
job_id, state, round, agy_status, summary, contract_ok, tests_passed, elapsed_seconds, tokens, diff_stat, result_path, events_path, worktree, branch。--pretty 表格包含 elapsed 与 tokens 列。
- 退出码:全部作业进入终态 → 0;job 不存在 → 3;超时 → 124。
--strict:把成败也编码进退出码——全部 done → 0,任一 error/cancelled/interrupted → 1。不传时沿用旧行为(只要终态就 0)。
--timeout 默认 60m,未把排队等待计入,排队靠后的作业要显式加大。
sub-agy status <job-id> | --all [--json] [--pretty]
- 查看作业状态、队列位次、已运行时间、tokens 消耗、最近一步摘要。包含惰性 interrupted 和解。
--pretty 表格包含 queue/elapsed/tokens 列。
sub-agy result <job-id> [--cwd <project>] [--events]
- 输出
result.json + git diff --stat。作业未完成时 exit 4。
sub-agy feedback <job-id> "<message>" [--cwd <project>] [--timeout <时长>]
- 在保留 conversation 的前提下启动新一轮修复。要求状态为 done/error 且 conversation_id 存在。
sub-agy cancel <job-id> [--cwd <project>]
- 向 supervisor 发送 SIGTERM;由 supervisor 杀掉 agy 进程组并落
cancelled 状态。
sub-agy list [--state ...] [--cwd <project>] [--pretty]
sub-agy cleanup <job-id> [--cwd <project>] [--purge] [--delete-branch] [--force]
- 移除 worktree,可选删除分支与日志。默认拒绝清理 running/queued 作业。
sub-agy doctor [--pretty]
- 检查 agy/PATH/git/Python/配置。
sub-agy pending [--cwd P] [--pretty]
- 列出
done/error/interrupted 且未收割(meta.harvested_at 为空)的作业,JSON 数组,恒 exit 0。Stop hook 兜底提醒的数据源。
- 收割标记:
result <id> 首次成功读取即写 harvested_at;feedback 打回会重置,新一轮需重新收割。
sub-agy quota [--oneline] [--pretty]
- 无头额度查询,0 token。优先解析结构化数据,缺失时降级解析 TSV。
- 退出码:
0 成功;1 失败;127 agy 未安装。
作业状态机
queued → running → done | error | cancelled | interrupted
queued:已创建,supervisor 尚未拿到运行槽位。
running:supervisor 已占住一个槽位并正在运行 agy。
done:agy exit 0 且 status SUCCESS,已写 result.json。
error:agy 非零退出、status ERROR/INVALID、无结果事件且无 transcript 兜底,或等槽位超过 queue_timeout。
cancelled:用户主动 cancel(含还在排队、agy 尚未拉起时)。
interrupted:惰性和解状态。当 state=running 但 supervisor pid 已不存在且 finished_at 为空时,status/list 会现场改写为 interrupted。
result.json 字段解释
{
"job_id": "...",
"state": "done",
"agy_status": "SUCCESS",
"round": 1,
"summary": "...",
"structured_output": {...}|null,
"contract_ok": true,
"response_text": "agy 原始 response",
"files_changed_git": ["..."],
"diff_stat": "git diff --stat 输出",
"usage": {...},
"conversation_id": "...",
"duration_seconds": 0,
"num_turns": 0,
"recovered_from_transcript": false,
"attempts": 1,
"worktree": "...",
"branch": "agy/<id>",
"base_sha": "..."
}
contract_ok:结构化输出存在且满足 schema 时为 true;若 round>=2 因兼容性丢弃 schema,则为 false。
recovered_from_transcript:agy stdout bug 触发,从 transcript 兜底恢复时为 true。
structured_output:agy 按 JSON schema 返回的对象;缺失时 contract_ok=false。
response_text:agy 原始文本响应。
summary 取值顺序:structured_output.summary → response_text 前 500 字符。
false_error(§19.2):当 agy 状态为 ERROR 但实际代码执行和验收正常(例:agy 输出 "not a valid artifact path" 误报)时会在此标 "artifact_path"。见到此字段时按 done 验收,不要按 error 打回。
并发与排队语义
max_concurrent(默认 3)限制的是 同时 running 的作业数,不再是"能不能派发"。
run/feedback 一律接受作业并 spawn detached supervisor;supervisor 在拉起 agy 之前先调用 queue.acquire_slot,拿不到槽位就以 queued 原地等。
- 槽位记账在
<project>/.subagy/queue.lock 上加 flock 串行化,两个 supervisor 不会抢到同一个槽位。
- 排队顺序按
meta.queued_at FIFO(旧 meta 无此字段时回落 created_at)。feedback 打回会刷新 queued_at,即重新排到队尾。
- 排队中的作业进
events.ndjson 一条 {"type":"queued","running":N,"queued_ahead":M} 事件。
queue_timeout(默认 2h)是安全阀:等槽位超时 → state=error。
- exit code 5(
concurrency)保留在退出码表里但 run 已不再产出。
反馈轮次语义
feedback 会让 round += 1、状态回到 queued,并用 --conversation <id> 续会话。
- 作业的
model 与 effort 记录于 meta.json(model/effort 字段已存在),打回轮次复用同一档位与模型。
- 新一轮 prompt 包含上一轮 summary 与本次 message,要求 agy 修复后重新满足契约。
- 若
round>=2 时 --json-schema 导致参数错误,sub-agy 会去掉 schema 重试一次,并在 result 中标 contract_ok=false, contract_note="schema dropped on round>=2"。
退出码表
| 码 |
含义 |
| 0 |
成功 |
| 1 |
通用错误;watch --strict 下也表示有作业未 done |
| 3 |
作业不存在 |
| 4 |
作业未完成(result 时) |
| 5 |
超过并发上限(保留;run 改为排队后已不产出) |
| 6 |
需要 git 仓库但未找到 |
| 64 |
CLI 用法错误/参数无效 |
| 124 |
watch 超时 |
| 127 |
agy 未安装 |
.subagy/ 目录结构
<project>/.subagy/
├── queue.lock # 运行槽位记账的 flock 文件
├── jobs/<job_id>/
│ ├── meta.json
│ ├── plan.md
│ ├── prompt.txt
│ ├── schema.json
│ ├── events.ndjson
│ ├── stderr.log
│ └── result.json
└── worktrees/<job_id>/ # git worktree,分支 agy/<job_id>
agy 侧已知坑
- stdout bug 兜底:非 TTY 下
agy -p 偶发"模型已响应但 stdout 为空"。sub-agy 内置兜底:读 ~/.gemini/antigravity-cli/brain/<uuid>/.system_generated/logs/transcript.jsonl,取最后一条 assistant 文本。触发时 result.recovered_from_transcript=true。
- 禁止
--continue:sub-agy 使用 --conversation <id> 续会话,因为全局最近会话有并发竞争。
- 权限策略:sub-agy 恒以
--dangerously-skip-permissions 启动 agy 实现无人值守;安全边界由 git worktree 隔离 + 人工合并保障。
- round≥2 schema 降级:若带
--json-schema 的调用在 round≥2 以参数错误失败,sub-agy 会去掉 schema 重试一次。
铁律
- 合并与 cleanup 由用户决定:收割通过时只给出
git merge agy/<job_id> 或 cherry-pick 建议,绝不要自动合并、提交或清理。
- 不打回未完成的作业:feedback/cleanup/harvest 动作只针对
done/error 作业。看到 running 或 queued 请让用户等待或 cancel。
- 不修改用户 agy 配置:sub-agy 不读取/修改
~/.gemini/antigravity-cli/settings.json,只读取自己的 ~/.config/sub-agy/config.toml。
- 零 API key / 零代理:sub-agy 只做本地进程编排,所有 LLM 调用都走用户本机已安装的
agy。
回退方式
如果 sub-agy 不在 PATH:
export SUB_AGY_HOME=/path/to/sub-agy
uv run --project "$SUB_AGY_HOME" sub-agy --help
1---2name: subagy-runtime-23description: sub-agy 异步作业执行后端的运行时契约、状态机与铁律。触发词:作业状态机、result.json、exit code、状态、contract、watch timeout、transcript recovery。4---56# sub-agy 运行时契约78sub-agy 是 Antigravity CLI (`agy`) 的异步作业封装层。Kimi Code 通过插件命令把代码执行任务派发到后台,`agy` 在独立 git worktree 里执行,规划侧只负责编排,不占用 Kimi 调用额度。910## CLI 命令全集1112- `sub-agy run --plan <file.md> --cwd <project> [--model ...] [--effort ...] [--timeout ...] [--no-worktree]`13 - 创建作业,写入 plan/prompt/schema/meta,spawn detached supervisor,默认立即返回 `job_id, state, queue_position, worktree, branch, events_log`。14 - **不会因并发上限失败**:超出 `max_concurrent` 时作业以 `queued` 落盘等槽位,`queue_position` 给出 1 起的 FIFO 位次(`null` = 已拿到槽位直接跑)。15 16- `sub-agy watch <job-id ...> [--cwd <project>] [--interval 秒, 默认 2] [--timeout 时长, 默认 60m] [--strict] [--pretty]`17 - 轮询每个作业直到全部进入终态。**barrier 语义**:传多个 id 时要等最后一个才退出。增量汇报场景请一个 id 一个 watcher。18 - 任一 id 不存在时立即 exit 3。19 - interval 越界(不在 0.5–60 秒之间)exit 64。20 - 全部终态时输出 JSON 数组,每个元素包含:`job_id, state, round, agy_status, summary, contract_ok, tests_passed, elapsed_seconds, tokens, diff_stat, result_path, events_path, worktree, branch`。`--pretty` 表格包含 `elapsed` 与 `tokens` 列。21 - 退出码:全部作业进入终态 → 0;job 不存在 → 3;超时 → 124。22 - `--strict`:把成败也编码进退出码——全部 `done` → 0,任一 `error`/`cancelled`/`interrupted` → 1。不传时沿用旧行为(只要终态就 0)。23 - `--timeout` 默认 60m,未把排队等待计入,排队靠后的作业要显式加大。2425- `sub-agy status <job-id> | --all [--json] [--pretty]`26 - 查看作业状态、队列位次、已运行时间、tokens 消耗、最近一步摘要。包含惰性 interrupted 和解。`--pretty` 表格包含 `queue`/`elapsed`/`tokens` 列。2728- `sub-agy result <job-id> [--cwd <project>] [--events]`29 - 输出 `result.json` + `git diff --stat`。作业未完成时 exit 4。3031- `sub-agy feedback <job-id> "<message>" [--cwd <project>] [--timeout <时长>]`32 - 在保留 conversation 的前提下启动新一轮修复。要求状态为 done/error 且 conversation_id 存在。3334- `sub-agy cancel <job-id> [--cwd <project>]`35 - 向 supervisor 发送 SIGTERM;由 supervisor 杀掉 agy 进程组并落 `cancelled` 状态。3637- `sub-agy list [--state ...] [--cwd <project>] [--pretty]`38 - 列出所有作业。3940- `sub-agy cleanup <job-id> [--cwd <project>] [--purge] [--delete-branch] [--force]`41 - 移除 worktree,可选删除分支与日志。默认拒绝清理 running/queued 作业。4243- `sub-agy doctor [--pretty]`44 - 检查 agy/PATH/git/Python/配置。4546- `sub-agy pending [--cwd P] [--pretty]`47 - 列出 `done`/`error`/`interrupted` 且**未收割**(`meta.harvested_at` 为空)的作业,JSON 数组,恒 exit 0。Stop hook 兜底提醒的数据源。48 - 收割标记:`result <id>` 首次成功读取即写 `harvested_at`;`feedback` 打回会重置,新一轮需重新收割。49- `sub-agy quota [--oneline] [--pretty]`50 - 无头额度查询,0 token。优先解析结构化数据,缺失时降级解析 TSV。51 - 退出码:`0` 成功;`1` 失败;`127` agy 未安装。5253## 作业状态机5455```56queued → running → done | error | cancelled | interrupted57```5859- `queued`:已创建,supervisor 尚未拿到运行槽位。60- `running`:supervisor 已占住一个槽位并正在运行 agy。61- `done`:agy exit 0 且 status SUCCESS,已写 result.json。62- `error`:agy 非零退出、status ERROR/INVALID、无结果事件且无 transcript 兜底,或等槽位超过 `queue_timeout`。63- `cancelled`:用户主动 cancel(含还在排队、agy 尚未拉起时)。64- `interrupted`:惰性和解状态。当 `state=running` 但 supervisor pid 已不存在且 `finished_at` 为空时,`status`/`list` 会现场改写为 `interrupted`。6566## result.json 字段解释6768```json69{70 "job_id": "...",71 "state": "done",72 "agy_status": "SUCCESS",73 "round": 1,74 "summary": "...",75 "structured_output": {...}|null,76 "contract_ok": true,77 "response_text": "agy 原始 response",78 "files_changed_git": ["..."],79 "diff_stat": "git diff --stat 输出",80 "usage": {...},81 "conversation_id": "...",82 "duration_seconds": 0,83 "num_turns": 0,84 "recovered_from_transcript": false,85 "attempts": 1,86 "worktree": "...",87 "branch": "agy/<id>",88 "base_sha": "..."89}90```9192- `contract_ok`:结构化输出存在且满足 schema 时为 true;若 `round>=2` 因兼容性丢弃 schema,则为 false。93- `recovered_from_transcript`:agy stdout bug 触发,从 transcript 兜底恢复时为 true。94- `structured_output`:agy 按 JSON schema 返回的对象;缺失时 `contract_ok=false`。95- `response_text`:agy 原始文本响应。96- `summary` 取值顺序:`structured_output.summary` → `response_text` 前 500 字符。97- `false_error`(§19.2):当 agy 状态为 ERROR 但实际代码执行和验收正常(例:agy 输出 "not a valid artifact path" 误报)时会在此标 `"artifact_path"`。见到此字段时按 done 验收,不要按 error 打回。9899## 并发与排队语义100101- `max_concurrent`(默认 3)限制的是 **同时 `running`** 的作业数,不再是"能不能派发"。102- `run`/`feedback` 一律接受作业并 spawn detached supervisor;supervisor 在拉起 agy 之前先调用 `queue.acquire_slot`,拿不到槽位就以 `queued` 原地等。103- 槽位记账在 `<project>/.subagy/queue.lock` 上加 flock 串行化,两个 supervisor 不会抢到同一个槽位。104- 排队顺序按 `meta.queued_at` FIFO(旧 meta 无此字段时回落 `created_at`)。`feedback` 打回会刷新 `queued_at`,即重新排到队尾。105- 排队中的作业进 `events.ndjson` 一条 `{"type":"queued","running":N,"queued_ahead":M}` 事件。106- `queue_timeout`(默认 `2h`)是安全阀:等槽位超时 → `state=error`。107- exit code 5(`concurrency`)保留在退出码表里但 `run` 已不再产出。108109## 反馈轮次语义110111- `feedback` 会让 `round += 1`、状态回到 `queued`,并用 `--conversation <id>` 续会话。112- 作业的 `model` 与 `effort` 记录于 `meta.json`(`model`/`effort` 字段已存在),打回轮次复用同一档位与模型。113- 新一轮 prompt 包含上一轮 summary 与本次 message,要求 agy 修复后重新满足契约。114- 若 `round>=2` 时 `--json-schema` 导致参数错误,sub-agy 会去掉 schema 重试一次,并在 result 中标 `contract_ok=false, contract_note="schema dropped on round>=2"`。115116## 退出码表117118| 码 | 含义 |119|---|---|120| 0 | 成功 |121| 1 | 通用错误;`watch --strict` 下也表示有作业未 done |122| 3 | 作业不存在 |123| 4 | 作业未完成(result 时) |124| 5 | 超过并发上限(保留;`run` 改为排队后已不产出) |125| 6 | 需要 git 仓库但未找到 |126| 64 | CLI 用法错误/参数无效 |127| 124 | watch 超时 |128| 127 | agy 未安装 |129130## `.subagy/` 目录结构131132```133<project>/.subagy/134├── queue.lock # 运行槽位记账的 flock 文件135├── jobs/<job_id>/136│ ├── meta.json137│ ├── plan.md138│ ├── prompt.txt139│ ├── schema.json140│ ├── events.ndjson141│ ├── stderr.log142│ └── result.json143└── worktrees/<job_id>/ # git worktree,分支 agy/<job_id>144```145146## agy 侧已知坑147148- **stdout bug 兜底**:非 TTY 下 `agy -p` 偶发"模型已响应但 stdout 为空"。sub-agy 内置兜底:读 `~/.gemini/antigravity-cli/brain/<uuid>/.system_generated/logs/transcript.jsonl`,取最后一条 assistant 文本。触发时 `result.recovered_from_transcript=true`。149- **禁止 `--continue`**:sub-agy 使用 `--conversation <id>` 续会话,因为全局最近会话有并发竞争。150- **权限策略**:sub-agy 恒以 `--dangerously-skip-permissions` 启动 agy 实现无人值守;安全边界由 git worktree 隔离 + 人工合并保障。151- **round≥2 schema 降级**:若带 `--json-schema` 的调用在 round≥2 以参数错误失败,sub-agy 会去掉 schema 重试一次。152153## 铁律1541551. **合并与 cleanup 由用户决定**:收割通过时只给出 `git merge agy/<job_id>` 或 cherry-pick 建议,绝不要自动合并、提交或清理。1562. **不打回未完成的作业**:feedback/cleanup/harvest 动作只针对 `done`/`error` 作业。看到 `running` 或 `queued` 请让用户等待或 `cancel`。1573. **不修改用户 agy 配置**:sub-agy 不读取/修改 `~/.gemini/antigravity-cli/settings.json`,只读取自己的 `~/.config/sub-agy/config.toml`。1584. **零 API key / 零代理**:sub-agy 只做本地进程编排,所有 LLM 调用都走用户本机已安装的 `agy`。159160## 回退方式161162如果 `sub-agy` 不在 PATH:163164```bash165export SUB_AGY_HOME=/path/to/sub-agy166uv run --project "$SUB_AGY_HOME" sub-agy --help167```