easy-coding-harness 0.10.0-beta.4 → 0.10.0-beta.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +46 -0
- package/README.md +20 -12
- package/package.json +1 -1
- package/templates/common/bundled-skills/ec-init/SKILL.md +3 -1
- package/templates/common/bundled-skills/ec-meta/references/local-architecture/README.md +15 -7
- package/templates/common/skills/ec-analysis/SKILL.md +37 -8
- package/templates/common/skills/ec-git/SKILL.md +7 -1
- package/templates/common/skills/ec-implementing/SKILL.md +16 -1
- package/templates/common/skills/ec-memory/SKILL.md +65 -3
- package/templates/common/skills/ec-reviewing/SKILL.md +6 -0
- package/templates/common/skills/ec-task-close/SKILL.md +4 -0
- package/templates/common/skills/ec-task-management/SKILL.md +7 -1
- package/templates/common/skills/ec-verification/SKILL.md +11 -1
- package/templates/common/skills/ec-workflow/SKILL.md +45 -15
- package/templates/main-constraint/AGENTS.md.tpl +12 -0
- package/templates/main-constraint/CLAUDE.md.tpl +12 -0
- package/templates/runtime/templates/dev-spec-skeleton.md +3 -1
- package/templates/shared-hooks/easy_coding_state.py +1997 -113
- package/templates/shared-hooks/easy_dev_spec.py +444 -30
- package/templates/shared-hooks/easy_dev_spec_execution.py +1014 -0
- package/templates/shared-hooks/easy_dev_spec_protocol.py +1426 -18
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,52 @@
|
|
|
6
6
|
- `y`:常规功能升级
|
|
7
7
|
- `z`:日常 bug 修复
|
|
8
8
|
|
|
9
|
+
## 0.10.0-beta.6
|
|
10
|
+
|
|
11
|
+
- Canonical Spec 首次路由新增 `inspect-dev-spec --manifest-only`:只通过 normalized remote
|
|
12
|
+
识别当前 worktree、展示任务目录和共享 execution 状态,不再为未选仓库解析本地路径或
|
|
13
|
+
为任何未选任务计算 baseline;`path_hint` 明确降级为提示信息。
|
|
14
|
+
- 用户选定 task 后,`inspect-dev-spec --spec-task ...` 只检查所选任务所属仓库及其
|
|
15
|
+
change/test 范围;当前 worktree remote 唯一匹配时无需手工传 `--repo-path`,即使旧
|
|
16
|
+
`path_hint` 指向仍存在的原 checkout,也优先绑定当前 worktree。
|
|
17
|
+
- `ec-workflow` 不再在路由阶段提前读取消费闭包;`ec-analysis` 负责唯一一次精确 selector
|
|
18
|
+
调用,并对 `exact` / `scope-unchanged` 使用快速投影,对 `scope-drifted` 只分析所选任务
|
|
19
|
+
的漂移文件和符号,派生 dev-spec 不再被解释为第二轮 Spec 创作。
|
|
20
|
+
- 共享 `EDS:EXECUTION` 固化为依赖事实来源:已完成 hard task 或已满足依赖边直接放行;
|
|
21
|
+
禁止通过另一个本地 Harness task、Git 历史或 Agent 推断重复考古完成状态。
|
|
22
|
+
- 保持项目外原始 Spec absolute locator、身份校验 rebind、共享 writer/CAS 及旧版全量
|
|
23
|
+
`inspect-dev-spec` 调用兼容;新增 worktree、未选仓库隔离和三平台安装产物回归测试。
|
|
24
|
+
|
|
25
|
+
## 0.10.0-beta.5
|
|
26
|
+
|
|
27
|
+
- 兼容新版 `easy-dev-spec/v1` 共享执行区:同步设计/整文双摘要与 execution 投影协议,新增
|
|
28
|
+
单一共享 writer,将 Canonical Task、Step 和 dependency 的实施、验证、完成与取消结果
|
|
29
|
+
写回原 Spec;本地 `execution.jsonl` 继续保存完整门禁证据。
|
|
30
|
+
- Canonical 绑定改为 `design_sha256 + document_sha256 + execution_revision`:执行进度更新不再
|
|
31
|
+
误判为方案漂移;CAS 冲突只在设计未变时自动重试一次,稳定幂等键避免重复事件,pending
|
|
32
|
+
写回可通过 `reconcile-spec-execution` 对账,revision 回退会被硬拦截。
|
|
33
|
+
- 支持用户显式选择项目外 Spec 绝对路径,并提供身份严格校验的 `rebind-spec-source`;静态
|
|
34
|
+
设计调整必须 revision 恰好 +1、重新 READY 并调用 `sync-spec-design`,受影响任务及后继
|
|
35
|
+
状态重置后回到 ANALYSIS,禁止手工编辑 `EDS:EXECUTION`。
|
|
36
|
+
- ANALYSIS→IMPLEMENT 只启动依赖已满足的来源任务;IMPLEMENT 按通过的本地测试证据回写
|
|
37
|
+
Step/implemented,REVIEW 写回阻塞,VERIFICATION 写回 verified,MEMORY→COMPLETE 自动
|
|
38
|
+
写回 completed,关闭任务写回 cancelled。共享写回与 Git 提交/推送保持相互独立。
|
|
39
|
+
- 共享事件统一记录为 `easy-coding / <Agent> with Easy Coding`;单槽 pending 禁止被不同动作
|
|
40
|
+
覆盖,可重试 CAS 冲突保留现场,旧设计动作、幂等键载荷冲突和确定性状态错误会清槽解锁。
|
|
41
|
+
result 只消费当前 `in_progress` 尝试之后的 dispatch/严格成功证据,repair 只重开 blocked
|
|
42
|
+
来源任务;设计同步同时淘汰受影响依赖证据和旧实现指纹,本地 task.json 使用原子替换。
|
|
43
|
+
|
|
44
|
+
- 将日常任务记忆与架构维护解耦:每个代码任务只生成不可变短期记忆;仅当长期记忆触发
|
|
45
|
+
`distill` 时才执行独立架构评估,并默认选择 `no-op`,避免为了更新而更新。
|
|
46
|
+
- MEMORY 状态 API 新增冻结式架构评估契约和 `memory-architecture-assessment` 命令,记录
|
|
47
|
+
`action / trigger / reason / evidence / affected_sections`,并用 ABSTRACT 与架构 CHANGELOG
|
|
48
|
+
指纹校验 `no-op / backfill / update` 的实际文件结果;评估失败时不得消费短期候选。
|
|
49
|
+
- 架构更新只接受模块边界、职责/依赖方向、核心流程、技术栈/运行基础设施或现有 ABSTRACT
|
|
50
|
+
与稳定事实冲突等证据;普通 Bug 修复、字段/DTO 调整、局部重构、临时方案和例行依赖升级
|
|
51
|
+
不触发更新。稳定编码约定只沉淀为 RULES 更新候选,不静默改写知识约束。
|
|
52
|
+
- 初创项目首个实质任务若缺失 ABSTRACT,可通过 `missing-abstract` 例外在未触发长期蒸馏时
|
|
53
|
+
完成一次 `backfill`;0.10.0-beta.5 前已冻结的 MEMORY 指令及旧 MEMORY_LONG 恢复路径保持兼容。
|
|
54
|
+
|
|
9
55
|
## 0.10.0-beta.4
|
|
10
56
|
|
|
11
57
|
- ANALYSIS 完成后不再向会话回贴整份 `dev-spec.md`,改为展示核心方案、验收摘要、
|
package/README.md
CHANGED
|
@@ -101,18 +101,26 @@ any stage --[user abort via ec-task-close]--> CLOSED
|
|
|
101
101
|
|
|
102
102
|
Harness 可选择性消费 easy-dev-spec 生成的单文件 `easy-dev-spec/v1` Canonical Spec:
|
|
103
103
|
|
|
104
|
-
1. `ec-workflow`
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
104
|
+
1. `ec-workflow` 先用 `inspect-dev-spec --manifest-only` 只读校验 manifest,通过 normalized
|
|
105
|
+
remote 识别当前 worktree,并展示任务 DAG 与共享 execution;不会解析未选仓库路径,也
|
|
106
|
+
不在选择前计算任何任务的 baseline。旧 Spec 仍可只读检查,但成为可执行任务前必须
|
|
107
|
+
初始化共享执行区。
|
|
108
|
+
2. 用户明确选择一个或多个 Spec task 后,Harness 用 `--spec-task` 只检查所选任务仓库和
|
|
109
|
+
change/test 范围。当前 worktree remote 唯一匹配时无需手工路径;`path_hint` 不一致只会
|
|
110
|
+
形成一次运行时映射提示,不会复制或修复原 Spec。
|
|
111
|
+
3. 一次选择创建一个 Harness task;ANALYSIS 唯一一次调用 `select-dev-spec-scope` 提取确定性
|
|
112
|
+
消费闭包。`exact` / `scope-unchanged` 直接快速投影为 Unit、测试策略和派生 dev-spec,
|
|
113
|
+
`scope-drifted` 才读取所选范围内的漂移文件与符号;未选任务正文始终不进入上下文。
|
|
114
|
+
4. `EDS:EXECUTION` 是依赖事实来源:`hard` 依赖决定执行顺序,冻结的 `contract` 依赖允许
|
|
115
|
+
并行编码,`integration` 依赖在证据闭合前阻止全链路完成;不会再从本地任务或 Git 历史
|
|
116
|
+
重复推断共享状态。
|
|
117
|
+
|
|
118
|
+
Canonical Spec 的静态设计由 design revision + `design_sha256` 冻结;共享
|
|
119
|
+
`EDS:EXECUTION` 则接收 Harness 的 Task/Step/dependency 投影。写回使用
|
|
120
|
+
`execution_revision` CAS、幂等键和断点对账,执行区变化不会使本地 plan/review/verify
|
|
121
|
+
指纹失效,设计变化或 revision 回滚仍会阻塞。显式项目外路径受支持,迁移后只能通过
|
|
122
|
+
身份一致的 rebind 修复定位。静态设计调整必须 revision +1、READY 并执行 `sync-design`;
|
|
123
|
+
机器执行区禁止手工编辑。无 Canonical manifest 的历史 Dev-Spec 继续走原有整文分析流程。
|
|
116
124
|
|
|
117
125
|
## Supermodule 模型
|
|
118
126
|
|
package/package.json
CHANGED
|
@@ -191,7 +191,9 @@ agent must be able to see what was generated and on what evidence.
|
|
|
191
191
|
- TEST_STRATEGY.md (skeleton for the chosen framework)
|
|
192
192
|
3. **Skip ABSTRACT.md** — no architecture exists yet. Note in init_log:
|
|
193
193
|
"ABSTRACT pending; ec-memory backfills after the first substantive task." (ec-memory
|
|
194
|
-
detects the missing file during MEMORY and
|
|
194
|
+
detects the missing file during MEMORY and uses the explicit `missing-abstract` assessment
|
|
195
|
+
exception to generate it from the then-current code. This one-time backfill does not enable
|
|
196
|
+
routine per-task architecture updates.)
|
|
195
197
|
4. Memory migration probe and memory init, same as iterative steps 5-7.
|
|
196
198
|
5. Recommend: design first with `{{skill_trigger}}ec-brainstorming`, then build via
|
|
197
199
|
`{{skill_trigger}}ec-workflow`.
|
|
@@ -83,30 +83,38 @@ context window, a task survives session end and agent switches with zero informa
|
|
|
83
83
|
|
|
84
84
|
## Canonical Spec integration
|
|
85
85
|
|
|
86
|
-
An `easy-dev-spec/v1` Canonical Spec
|
|
86
|
+
An `easy-dev-spec/v1` Canonical Spec separates frozen static design from a shared execution ledger.
|
|
87
87
|
`inspect-dev-spec` validates the document with the protocol implementation pinned from
|
|
88
88
|
`easy-dev-spec@7eb9b64`; after explicit task selection, `select-dev-spec-scope` returns one
|
|
89
89
|
deterministic producer-compatible closure per repository, and `create-task-from-spec` creates one
|
|
90
|
-
Harness task with
|
|
90
|
+
Harness task with source locator mode, ID/design revision and digest, document digest, execution
|
|
91
|
+
revision, selected task IDs, repository bindings,
|
|
91
92
|
baseline classifications, and dependency evidence.
|
|
92
93
|
|
|
93
94
|
ANALYSIS derives local `dev-spec.md`, `execution.jsonl`, and `test-strategy.md` for the selected
|
|
94
95
|
consumption closure. Canonical-backed units keep repository, source task/steps, files, symbols,
|
|
95
96
|
and test commands. Hard dependencies shape the Unit DAG, READY contracts can run in parallel,
|
|
96
|
-
and integration dependencies block end-to-end completion until evidence is recorded.
|
|
97
|
-
|
|
97
|
+
and integration dependencies block end-to-end completion until evidence is recorded. Harness
|
|
98
|
+
keeps detailed evidence locally and projects cross-application Task/Step/dependency outcomes into
|
|
99
|
+
`EDS:EXECUTION` through one CAS/idempotent writer. Static changes use revision + READY +
|
|
100
|
+
`sync-spec-design`; agents never hand-edit the machine ledger. Explicit external locators are
|
|
101
|
+
allowed and rebind only by exact Canonical identity.
|
|
98
102
|
|
|
99
103
|
## Memory system
|
|
100
104
|
|
|
101
105
|
Short memory: one schema-v2 file per task, sliding window (max 10, keep 5). Long memory:
|
|
102
106
|
three files (index + business + technical), distilled from out-of-window short memories with
|
|
103
|
-
explicit conflict resolution.
|
|
104
|
-
|
|
107
|
+
explicit conflict resolution. Daily tasks only produce facts. When distillation runs, MEMORY
|
|
108
|
+
performs a separate, default-no-op architecture assessment and updates only affected ABSTRACT
|
|
109
|
+
sections when frozen evidence proves the architecture cognition is stale. A missing ABSTRACT
|
|
110
|
+
after the first substantive startup task is the only non-distillation backfill exception.
|
|
105
111
|
|
|
106
112
|
## Project knowledge — four layers
|
|
107
113
|
|
|
108
114
|
Identity (SOUL, rarely changes) · Constraints (RULES, stable) · Cognition (ABSTRACT, updated
|
|
109
|
-
|
|
115
|
+
only after evidence-backed architecture assessment) · Memory (short every task, long only on
|
|
116
|
+
distillation). Stable convention changes become RULES candidates in technical memory, never
|
|
117
|
+
silent RULES edits. ec-workflow always reads
|
|
110
118
|
SOUL + RULES + recent short memory; ec-analysis loads ABSTRACT and matching long memory on
|
|
111
119
|
demand.
|
|
112
120
|
|
|
@@ -21,13 +21,18 @@ Communicate with the user in the user's language.
|
|
|
21
21
|
4. Inspect concrete code paths and tests. Expand context only when evidence reveals another
|
|
22
22
|
dependency or risk.
|
|
23
23
|
|
|
24
|
-
For a task with `task.json.spec_source`, re-run `inspect-dev-spec` against the stored source
|
|
25
|
-
|
|
26
|
-
must still match.
|
|
24
|
+
For a task with `task.json.spec_source`, re-run `inspect-dev-spec` against the stored source, exact
|
|
25
|
+
`selected_spec_tasks`, and only their stored `task.repo_paths` bindings. Schema, Spec ID, design
|
|
26
|
+
revision, and `design_sha256` must still match. A changed `document_sha256` with the same design is
|
|
27
|
+
normal shared progress; refresh `execution_revision` without invalidating plan/review/verify
|
|
28
|
+
evidence. An execution revision rollback is blocking. Then call the selector once for the exact
|
|
29
|
+
selection:
|
|
27
30
|
|
|
28
31
|
```bash
|
|
29
32
|
{{PYTHON_CMD}} {{platform_config_dir}}/hooks/easy_coding_state.py inspect-dev-spec \
|
|
30
|
-
--spec <stored-source>
|
|
33
|
+
--spec <stored-source> \
|
|
34
|
+
--spec-task <selected-task-id> [--spec-task <selected-task-id>]... \
|
|
35
|
+
[--repo-path <repo-id>=<stored-path>]...
|
|
31
36
|
|
|
32
37
|
{{PYTHON_CMD}} {{platform_config_dir}}/hooks/easy_coding_state.py select-dev-spec-scope \
|
|
33
38
|
--spec <stored-source> --spec-task <selected-task-id> [--spec-task <selected-task-id>]...
|
|
@@ -36,8 +41,20 @@ must still match. Then call the read-only selector for the exact stored selectio
|
|
|
36
41
|
Load only the returned per-repository consumption closures: manifest/global context, selected
|
|
37
42
|
task and repository sections, related contracts, direct dependency summaries, selected
|
|
38
43
|
changes/steps/tests, and relevant integration rows. Never replace the selector with a whole-file
|
|
39
|
-
read.
|
|
40
|
-
|
|
44
|
+
read. Treat the Canonical closure as frozen design, not as a prompt to design the task again:
|
|
45
|
+
|
|
46
|
+
- `exact` and `scope-unchanged` use the fast projection path. Confirm the selected paths, symbols,
|
|
47
|
+
and test entry points, then map the closure into Units, `test-strategy.md`, and the derived
|
|
48
|
+
`dev-spec.md` in one pass. Do not reselect interfaces, fields, task boundaries, Steps, or Tests,
|
|
49
|
+
and do not ask questions already answered by the source Spec.
|
|
50
|
+
- `scope-drifted` reads and analyzes only changed files and symbols in the selected task scope.
|
|
51
|
+
Escalate to a static design revision only when that evidence changes a frozen contract or task
|
|
52
|
+
boundary; unrelated repository or completed-task changes are background, not current drift.
|
|
53
|
+
- `baseline-unavailable` or unresolved selected-repository identity remains blocked in ANALYSIS.
|
|
54
|
+
|
|
55
|
+
Use shared execution dependency status directly. Do not inspect another local Harness task or Git
|
|
56
|
+
history to re-prove a completed hard dependency, and do not repeat dependency or baseline
|
|
57
|
+
explanations after the selected inspection has recorded them.
|
|
41
58
|
|
|
42
59
|
## Analysis artifacts
|
|
43
60
|
|
|
@@ -70,6 +87,7 @@ Execution plan records use:
|
|
|
70
87
|
```json
|
|
71
88
|
{
|
|
72
89
|
"type": "plan",
|
|
90
|
+
"spec_design_sha256": "<Canonical design digest; omit for ordinary tasks>",
|
|
73
91
|
"strategy": "single|sequential|parallel",
|
|
74
92
|
"units": [{
|
|
75
93
|
"id": "U1",
|
|
@@ -99,10 +117,15 @@ units together must cover every source step exactly once. Map selected hard depe
|
|
|
99
117
|
`parallel_groups`.
|
|
100
118
|
|
|
101
119
|
Canonical-backed `dev-spec.md`, `execution.jsonl`, and `test-strategy.md` are runtime-derived
|
|
102
|
-
evidence, not a second maintained Spec. Record the source path/ID/revision
|
|
120
|
+
evidence, not a second maintained Spec. Record the source path/path mode/ID/design revision and
|
|
121
|
+
digest, current document digest/execution revision/writeback status, selected tasks
|
|
103
122
|
and repositories, baseline/conflict result, Unit mapping, source test mapping, and pending
|
|
104
123
|
integration edges.
|
|
105
124
|
|
|
125
|
+
The required skeleton is a mechanical artifact schema. For a Canonical-backed task it is filled
|
|
126
|
+
from the selected closure and current-code delta; it must never become a second round of Spec
|
|
127
|
+
authoring.
|
|
128
|
+
|
|
106
129
|
Every source test command remains mandatory. Additional commands from the current repository are
|
|
107
130
|
allowed only when `test-strategy.md` records why the Canonical command alone is insufficient.
|
|
108
131
|
For every selected source test, `test-strategy.md` must spell out its Test ID, source task ID,
|
|
@@ -233,5 +256,11 @@ controls waiting; it never changes the selected execution depth.
|
|
|
233
256
|
- No final summary, workflow proposal, or transition while a material decision is unresolved.
|
|
234
257
|
- No transition without exactly one `decision_status: closed` marker in `dev-spec.md`.
|
|
235
258
|
- No transition without a valid workflow proposal.
|
|
236
|
-
- No Canonical-backed transition with changed
|
|
259
|
+
- No Canonical-backed transition with changed design revision/digest, a backward execution
|
|
260
|
+
revision, pending/conflicted writeback, unresolved repository identity,
|
|
237
261
|
incomplete selected-task coverage, or an open Unit/Step/File/Symbol/Test traceability gap.
|
|
262
|
+
|
|
263
|
+
If evidence requires changing Canonical task boundaries, contracts, files, symbols, Steps, Tests,
|
|
264
|
+
or dependencies, remain/return to ANALYSIS, update the original static design with revision +1,
|
|
265
|
+
restore READY, and call `sync-spec-design --affected-task ...`. This invalidates the old local
|
|
266
|
+
plan. Never substitute edits to the derived `dev-spec.md`, and never edit `EDS:EXECUTION` by hand.
|
|
@@ -62,7 +62,13 @@ with `.easy-coding/sessions/` always excluded. The CLI already added it to `.git
|
|
|
62
62
|
- Do not commit `spec/dev/` unless the user explicitly asks.
|
|
63
63
|
- Do not omit managed `easy-coding upgrade` changes merely because they were created outside
|
|
64
64
|
the current agent turn.
|
|
65
|
-
-
|
|
65
|
+
- Shared Canonical execution writeback and Git delivery are independent facts. Do not stage or
|
|
66
|
+
commit a project-external Spec automatically. For a Spec inside a Git repository, include it
|
|
67
|
+
only when the user's requested commit scope and normal repository rules include it; never claim
|
|
68
|
+
shared writeback merely because Git succeeded, or Git delivery merely because writeback
|
|
69
|
+
succeeded.
|
|
70
|
+
- Never hand-edit `EDS:EXECUTION`. Static Spec changes are valid only through design revision +
|
|
71
|
+
READY + `sync-spec-design`; runtime progress uses the shared writer commands.
|
|
66
72
|
- In a supermodule task launched from the parent root, parent `.easy-coding/` belongs to the
|
|
67
73
|
parent git. Child `.easy-coding/memory/` changes created by memory archive belong to the
|
|
68
74
|
owning child git and must be committed before the parent gitlink update.
|
|
@@ -97,13 +97,18 @@ Sub-agents never dispatch other sub-agents or read `.easy-coding` workflow asset
|
|
|
97
97
|
## Architecture {pre-digested ABSTRACT sections}
|
|
98
98
|
## Output
|
|
99
99
|
status:"completed", repo_id|null, source_task_id|null, changed_files[], summary,
|
|
100
|
-
deliverable|null, issues:[], needs_attention:[]
|
|
100
|
+
deliverable|null, checks:[{command,passed,failures:[]}], issues:[], needs_attention:[]
|
|
101
101
|
```
|
|
102
102
|
|
|
103
103
|
## Dispatch and result loop
|
|
104
104
|
|
|
105
105
|
1. Append a `dispatch` record before work begins. Canonical-backed records include `repo_id` and
|
|
106
106
|
`source_task_id`; resolve every file relative to `task.repo_paths[repo_id]` before dispatch.
|
|
107
|
+
Before dispatching a selected task that is not already `in_progress`, call
|
|
108
|
+
`writeback-spec-task --status in_progress` with a key stable for that dispatch/recovery
|
|
109
|
+
attempt but distinct from any earlier accepted `in_progress` event. Do this only after its
|
|
110
|
+
hard/contract dependencies are ready; do not batch-start dependent tasks at the initial
|
|
111
|
+
IMPLEMENT boundary.
|
|
107
112
|
Populate `Code Comments` on every code task card with the resolved user-facing host Agent
|
|
108
113
|
author value and the field/member/constant rules above; sub-agents do not read this Skill.
|
|
109
114
|
2. Execute according to dependency order and selected owner.
|
|
@@ -113,10 +118,20 @@ deliverable|null, issues:[], needs_attention:[]
|
|
|
113
118
|
4. Append one `result` record. Only a successful unit uses `status:"completed"`; include
|
|
114
119
|
unresolved issues rather than hiding them, and do not advance while `issues` or
|
|
115
120
|
`needs_attention` is non-empty.
|
|
121
|
+
For Canonical-backed success, write each owned source Step `completed` through
|
|
122
|
+
`writeback-spec-step`, with passed evidence for every bound Canonical Test ID and a stable key.
|
|
123
|
+
After every source Step for that task is complete, write the task `implemented`. On failure,
|
|
124
|
+
write the affected Step `failed`; the shared writer moves its task to `blocked`. Local evidence
|
|
125
|
+
is appended first, shared projection second, and the returned acknowledgment last.
|
|
116
126
|
5. If a result changes a cross-unit contract, stop dependent units and return to ANALYSIS.
|
|
117
127
|
6. For parallel units, detect overlapping writes before advancing.
|
|
118
128
|
7. If implementation needs a file, symbol, repository, or source step outside the mapped
|
|
119
129
|
Canonical change set, stop and return to ANALYSIS instead of expanding scope implicitly.
|
|
130
|
+
8. If a static Canonical change is confirmed, revise the original design by exactly one revision
|
|
131
|
+
and use `sync-spec-design`; never edit the machine-owned execution block. If a writeback was
|
|
132
|
+
interrupted, run `reconcile-spec-execution` with the stored idempotent pending action.
|
|
133
|
+
Reconciliation only consumes dispatch/result evidence created after the current `in_progress`
|
|
134
|
+
acknowledgment; it never opens a new repair attempt or reuses an earlier attempt's result.
|
|
120
135
|
|
|
121
136
|
Do not emit a progress message for every trivial edit. Report at unit boundaries to reduce
|
|
122
137
|
conversation overhead while keeping work observable.
|
|
@@ -3,10 +3,17 @@ name: ec-memory
|
|
|
3
3
|
description: MEMORY-stage skill. Creates a workflow-mode-aware schema-v2 checkpoint from existing task evidence and performs conditional long-memory distillation.
|
|
4
4
|
---
|
|
5
5
|
|
|
6
|
-
# ec-memory — evidence-derived checkpoint
|
|
6
|
+
# ec-memory — evidence-derived checkpoint and knowledge governance
|
|
7
7
|
|
|
8
|
-
MEMORY remains mandatory for code tasks.
|
|
9
|
-
|
|
8
|
+
MEMORY remains mandatory for code tasks. Daily task processing and architecture maintenance are
|
|
9
|
+
separate responsibilities: every completed code task produces one immutable short-memory fact;
|
|
10
|
+
only a long-memory distillation, or the explicit missing-ABSTRACT startup exception, may open an
|
|
11
|
+
architecture assessment. Never update architecture merely because MEMORY was entered.
|
|
12
|
+
|
|
13
|
+
The short-memory checkpoint must not re-analyze the repository or repeat the entire conversation.
|
|
14
|
+
Generate it only from the verified evidence already stored in `task.json`, `dev-spec.md`, and
|
|
15
|
+
`execution.jsonl`. The bounded repository reads described below belong only to a required
|
|
16
|
+
`backfill` or `update` architecture assessment.
|
|
10
17
|
|
|
11
18
|
## Depth by workflow mode
|
|
12
19
|
|
|
@@ -37,5 +44,60 @@ Ask the state API for `memory-instruction`. Distill only when it returns `action
|
|
|
37
44
|
otherwise record `no-op`. Long memory receives reusable facts only, not file dumps, transient
|
|
38
45
|
logs, routine command output, or speculation.
|
|
39
46
|
|
|
47
|
+
## Architecture assessment
|
|
48
|
+
|
|
49
|
+
Read the frozen `architecture_assessment` contract returned by `memory-instruction`.
|
|
50
|
+
|
|
51
|
+
- `required:false`: do not read the repository for architecture purposes and do not modify
|
|
52
|
+
`.easy-coding/ABSTRACT.md` or `.easy-coding/CHANGELOG.md`.
|
|
53
|
+
- `trigger:distillation`: finish classifying the frozen `candidate_files`, then assess whether
|
|
54
|
+
their stable, reusable facts make the current architecture cognition stale. Default to
|
|
55
|
+
`no-op`.
|
|
56
|
+
- `trigger:missing-abstract`: use `backfill` after the first substantive startup task even when
|
|
57
|
+
long-memory action is `no-op`. This is the only non-distillation architecture exception.
|
|
58
|
+
|
|
59
|
+
An architecture `update` is justified only by evidence of at least one of these changes:
|
|
60
|
+
|
|
61
|
+
- a module was added, removed, split, or merged;
|
|
62
|
+
- module responsibility, ownership, or dependency direction changed;
|
|
63
|
+
- a core request, data, state, or event flow changed;
|
|
64
|
+
- the technology stack, runtime, build, or deployment infrastructure changed;
|
|
65
|
+
- the existing ABSTRACT conflicts with verified current facts.
|
|
66
|
+
|
|
67
|
+
Do not update for a bug fix, local implementation detail, DTO/field-only change, local refactor,
|
|
68
|
+
temporary workaround, routine dependency patch, or the mere fact that distillation ran. Stable
|
|
69
|
+
new coding conventions belong in `TECHNICAL.md` as explicit RULES update candidates; never
|
|
70
|
+
silently edit `RULES.md`, `SOUL.md`, or `TEST_STRATEGY.md` from MEMORY.
|
|
71
|
+
|
|
72
|
+
For `no-op`, use only the frozen memory evidence and give a concrete reason. For `backfill` or
|
|
73
|
+
`update`, read only candidate-related modules, entrypoints, dependencies, and affected ABSTRACT
|
|
74
|
+
sections. Do not perform an unbounded repository re-analysis. Create or edit only the affected
|
|
75
|
+
sections of `.easy-coding/ABSTRACT.md`, and create or append `.easy-coding/CHANGELOG.md`; never
|
|
76
|
+
regenerate the whole ABSTRACT when a bounded edit is sufficient.
|
|
77
|
+
|
|
78
|
+
Whenever `required:true`, record the decision through the command below. For distillation this
|
|
79
|
+
must succeed before deleting any candidate; for `missing-abstract` it must succeed before the
|
|
80
|
+
`no-op` long-memory action can complete:
|
|
81
|
+
|
|
82
|
+
```bash
|
|
83
|
+
{{PYTHON_CMD}} {{platform_config_dir}}/hooks/easy_coding_state.py memory-architecture-assessment \
|
|
84
|
+
--session-file <P> --action <no-op|backfill|update> --reason <reason> \
|
|
85
|
+
--evidence <frozen-memory-file> [--evidence <frozen-memory-file> ...] \
|
|
86
|
+
[--affected-section <section> ...] --agent <agent-id>
|
|
87
|
+
```
|
|
88
|
+
|
|
89
|
+
`backfill` and `update` require affected sections; `no-op` must not declare them. Evidence must
|
|
90
|
+
come from the frozen candidate set, or from the current checkpoint for the missing-ABSTRACT
|
|
91
|
+
exception. If assessment or architecture-file validation fails, keep every candidate file and
|
|
92
|
+
remain in MEMORY.
|
|
93
|
+
|
|
94
|
+
After the assessment succeeds, a distillation may delete all frozen `candidate_files` while
|
|
95
|
+
preserving every `kept_file`. Then call `memory-complete`. The state API rechecks that no-op
|
|
96
|
+
assets stayed unchanged, changed assets still match the recorded assessment, all candidates were
|
|
97
|
+
consumed, and all retained memories still exist.
|
|
98
|
+
|
|
40
99
|
Complete processing with `memory-complete`. When the state API reports
|
|
41
100
|
`memory_progress.completed:true`, call `auto-transition --stage COMPLETE`.
|
|
101
|
+
For Canonical-backed tasks this automatic edge first writes every verified selected source task
|
|
102
|
+
to shared `completed`; pending integration dependencies or failed writeback keep the task in
|
|
103
|
+
MEMORY. Do not claim COMPLETE from local memory state alone.
|
|
@@ -69,6 +69,12 @@ Verdict:
|
|
|
69
69
|
In-scope defects are fixed automatically. Ask the user only for a new design choice, changed
|
|
70
70
|
public contract, or contradiction with a confirmed decision.
|
|
71
71
|
|
|
72
|
+
For Canonical-backed review, append the local review record first. Any blocking finding then
|
|
73
|
+
writes the owning source task `blocked` through `writeback-spec-task`, referencing the local
|
|
74
|
+
record. A passed review does not change shared task status. A `replan` verdict returns to ANALYSIS;
|
|
75
|
+
confirmed static Spec changes use revision + READY + `sync-spec-design` rather than edits to the
|
|
76
|
+
derived plan or machine execution block.
|
|
77
|
+
|
|
72
78
|
## Evidence record
|
|
73
79
|
|
|
74
80
|
Append one final record per executed dimension for the current implementation fingerprint.
|
|
@@ -22,6 +22,9 @@ when you recognize abandonment intent in the user's message.
|
|
|
22
22
|
`{{PYTHON_CMD}} {{platform_config_dir}}/hooks/easy_coding_state.py close-current --session-file <P> --reason "<reason>" --agent <agent-id>`.
|
|
23
23
|
This sets `task.json.status` to `CLOSED`, records `closed_reason`, updates history, and
|
|
24
24
|
clears session `current_task` so the next hook injection returns to Ready.
|
|
25
|
+
For Canonical-backed work, the same command first projects every unfinished selected task to
|
|
26
|
+
shared `cancelled` (using an intermediate `blocked` transition when required). A shared writer
|
|
27
|
+
failure leaves the Harness task open; never close only the local side.
|
|
25
28
|
Use the returned `status_context` as the authoritative status source for the rest of the
|
|
26
29
|
current turn.
|
|
27
30
|
4. **No memory flow.** Do not run MEMORY. An incomplete task's memory is dirty data.
|
|
@@ -34,6 +37,7 @@ when you recognize abandonment intent in the user's message.
|
|
|
34
37
|
|
|
35
38
|
- Never delete task folders — CLOSED tasks stay as a record.
|
|
36
39
|
- Never run the memory/archive flow.
|
|
40
|
+
- Never hand-edit the Canonical execution region to force cancellation.
|
|
37
41
|
- This skill closes the `current_task`. If the user wants to close a different (suspended)
|
|
38
42
|
task, they should first switch to it via ec-workflow, then invoke ec-task-close.
|
|
39
43
|
- Division of labor: ec-task-management lists/creates (read-only panel), ec-workflow runs the
|
|
@@ -16,7 +16,8 @@ Call the state API snapshot and show:
|
|
|
16
16
|
- task `concrete_workflow_mode` and frozen TDD state when present;
|
|
17
17
|
- harness enabled/disabled state;
|
|
18
18
|
- active and resumable tasks.
|
|
19
|
-
- for Canonical-backed tasks: source Spec ID/revision/
|
|
19
|
+
- for Canonical-backed tasks: source locator/path mode, Spec ID/design revision/design digest,
|
|
20
|
+
document digest, execution revision, writeback status, selected task IDs, repository
|
|
20
21
|
bindings/baseline status, and pending dependency evidence.
|
|
21
22
|
|
|
22
23
|
Mode inspection and configuration belongs to `ec-config`. If the user asks to change Approval,
|
|
@@ -32,3 +33,8 @@ When creating from a Canonical Spec, call `inspect-dev-spec`, display the comple
|
|
|
32
33
|
dependency selection, then call `select-dev-spec-scope` and `create-task-from-spec` only after
|
|
33
34
|
explicit user selection. Multiple selected Spec tasks still create one Harness task, while the
|
|
34
35
|
selector returns one deterministic consumption closure per selected repository.
|
|
36
|
+
Initialize missing shared execution before creation. Support `rebind-spec-source` only when the
|
|
37
|
+
new file matches schema + spec_id + design revision + design_sha256 and does not roll execution
|
|
38
|
+
revision backward. A pending writeback is repaired with `reconcile-spec-execution`, never by
|
|
39
|
+
editing the execution JSON block or starting a different writeback. A deterministic rejected
|
|
40
|
+
action is cleared with `status:error`; correct its input instead of replaying it.
|
|
@@ -77,7 +77,10 @@ and a non-empty `not_applicable_reason`; it does not count as the required appli
|
|
|
77
77
|
check, and must not be represented by an invented successful command.
|
|
78
78
|
|
|
79
79
|
Record failures in `failures[]`. If any current-fingerprint record fails, return to IMPLEMENT;
|
|
80
|
-
do not append a later synthetic pass without rerunning the failed command.
|
|
80
|
+
do not append a later synthetic pass without rerunning the failed command. For a Canonical-backed
|
|
81
|
+
failure, append the local verify record first, then write the owning source task `blocked` with a
|
|
82
|
+
concise reference to that record. The repair transition automatically reopens blocked source tasks
|
|
83
|
+
only; unaffected implemented tasks retain their latest shared conclusion.
|
|
81
84
|
|
|
82
85
|
## Coverage and acceptance
|
|
83
86
|
|
|
@@ -116,6 +119,13 @@ tasks remain separate evidence records. In `strict`, every involved repository i
|
|
|
116
119
|
records all four check types; a repository-specific non-applicable record still needs its reason
|
|
117
120
|
and source ownership.
|
|
118
121
|
|
|
122
|
+
After all current-fingerprint local checks pass for a Canonical source task, call
|
|
123
|
+
`writeback-spec-task --status verified`. Include passed `kind:"test"` evidence for every bound
|
|
124
|
+
Canonical Test ID plus concise references to local review/build/coverage records. The subsequent
|
|
125
|
+
VERIFICATION -> MEMORY application requires every selected shared task to be `verified` or
|
|
126
|
+
`completed`; remote CI remains outside this acceptance gate. If writeback is interrupted, run
|
|
127
|
+
`reconcile-spec-execution` before requesting the transition.
|
|
128
|
+
|
|
119
129
|
Record the exact integration edge only after its evidence exists:
|
|
120
130
|
|
|
121
131
|
```bash
|
|
@@ -61,35 +61,59 @@ plan decision; Auto continues immediately. Both remove later waiting, not qualit
|
|
|
61
61
|
- Present with `status != "COMPLETE"`: invoke `{{skill_trigger}}ec-init`, then stop.
|
|
62
62
|
- `[easy-coding:upgrade-init-pending:X]`: recommend `{{skill_trigger}}ec-init` for vX
|
|
63
63
|
adaptation, but allow the user to continue; this reminder is not a workflow block.
|
|
64
|
-
3. When the user explicitly references a Dev-Spec, run
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
64
|
+
3. When the user explicitly references a Dev-Spec, first run read-only `inspect-dev-spec
|
|
65
|
+
--manifest-only`. This routing pass validates the document, identifies the current worktree by
|
|
66
|
+
normalized remote, and returns the task catalog without resolving unrelated repositories. For
|
|
67
|
+
`protocol=canonical-v1`, show every task ID, repository, title, static status, actual execution
|
|
68
|
+
status, and dependency; never select all tasks by default and never calculate baseline drift
|
|
69
|
+
before selection.
|
|
70
|
+
|
|
71
|
+
After the user chooses one or more tasks, run one selected inspection with repeated
|
|
72
|
+
`--spec-task`. Resolve paths only for repositories that own selected tasks. The current
|
|
73
|
+
worktree needs no explicit mapping when its normalized remote matches uniquely; pass
|
|
74
|
+
`--repo-path` only for an additional selected repository or to confirm an ambiguous current
|
|
75
|
+
match. A differing `path_hint` is a one-time runtime mapping notice, not a Spec portability
|
|
76
|
+
failure: never copy, mirror, or rewrite the source Spec because of it.
|
|
77
|
+
|
|
78
|
+
Then call `create-task-from-spec` once for the complete selection. Do not call
|
|
79
|
+
`select-dev-spec-scope` during routing; `ec-analysis` owns the single consumption-closure read
|
|
80
|
+
after task creation. A document without a Canonical manifest remains a legacy ANALYSIS input
|
|
81
|
+
for an ordinary task. A malformed, DRAFT, or otherwise non-READY Canonical Spec stays blocked
|
|
82
|
+
and must never be downgraded to the legacy route. A READY Canonical Spec without shared
|
|
83
|
+
execution remains readable, but run `initialize-spec-execution` before selection can become an
|
|
84
|
+
executable Harness task.
|
|
72
85
|
|
|
73
86
|
```bash
|
|
74
87
|
{{PYTHON_CMD}} {{platform_config_dir}}/hooks/easy_coding_state.py inspect-dev-spec \
|
|
75
|
-
--spec <path>
|
|
88
|
+
--spec <path> --manifest-only
|
|
76
89
|
|
|
77
|
-
{{PYTHON_CMD}} {{platform_config_dir}}/hooks/easy_coding_state.py
|
|
78
|
-
--spec <path> --spec-task <task-id> [--spec-task <task-id>]...
|
|
90
|
+
{{PYTHON_CMD}} {{platform_config_dir}}/hooks/easy_coding_state.py inspect-dev-spec \
|
|
91
|
+
--spec <path> --spec-task <task-id> [--spec-task <task-id>]... \
|
|
92
|
+
[--repo-path <repo-id>=<path>]...
|
|
93
|
+
|
|
94
|
+
{{PYTHON_CMD}} {{platform_config_dir}}/hooks/easy_coding_state.py initialize-spec-execution \
|
|
95
|
+
--spec <path>
|
|
79
96
|
|
|
80
97
|
{{PYTHON_CMD}} {{platform_config_dir}}/hooks/easy_coding_state.py create-task-from-spec \
|
|
81
98
|
--spec <path> --spec-task <task-id> [--spec-task <task-id>]... \
|
|
82
99
|
--task-id <harness-task-id> --type <type> --title <title> \
|
|
83
|
-
--repo-path <repo-id>=<path>
|
|
100
|
+
[--repo-path <repo-id>=<path>]... \
|
|
101
|
+
[--dependency-evidence <dependency-id>=<evidence>]... \
|
|
84
102
|
--agent <agent-id> --session-file <P>
|
|
85
103
|
```
|
|
86
104
|
|
|
87
|
-
`
|
|
88
|
-
|
|
89
|
-
|
|
105
|
+
Shared `EDS:EXECUTION` is the dependency fact source. Accept a completed hard dependency or a
|
|
106
|
+
satisfied edge directly from that snapshot. Only accept manual dependency evidence when the
|
|
107
|
+
shared edge is still pending and the user explicitly supplies independently verifiable
|
|
108
|
+
evidence; never reconstruct completion from another local Harness task, Git history, or an
|
|
109
|
+
agent's inference.
|
|
90
110
|
|
|
91
111
|
When multiple selected tasks depend on the same target, disambiguate creation evidence with
|
|
92
112
|
`<source-task-id>-><dependency-task-id>=<evidence>`.
|
|
113
|
+
Explicit project-external Spec files are supported and stored as absolute locators. If that
|
|
114
|
+
locator moves, use `rebind-spec-source`; never guess by basename. Shared execution progress is
|
|
115
|
+
written only through state API writer commands. Static design edits require revision + READY +
|
|
116
|
+
`sync-spec-design`; never hand-edit the `EDS:EXECUTION` region.
|
|
93
117
|
4. When the user explicitly invokes `ec-tdd-init`, let that skill own preflight and create a
|
|
94
118
|
`type=tdd-init` code task only after scope confirmation. Do not reinterpret it as an ordinary
|
|
95
119
|
TDD-enabled feature task and do not require readiness before creating it.
|
|
@@ -120,6 +144,12 @@ plan decision; Auto continues immediately. Both remove later waiting, not qualit
|
|
|
120
144
|
- `MEMORY`: dispatch `ec-memory`.
|
|
121
145
|
- `COMPLETE` / `CLOSED`: report terminal status and clear stale session ownership.
|
|
122
146
|
|
|
147
|
+
For a Canonical-backed task whose snapshot reports pending writeback, call
|
|
148
|
+
`reconcile-spec-execution` before dispatching the stage. Do not advance locally while shared
|
|
149
|
+
writeback remains pending or conflicted. A deterministic writer rejection reports `error` and
|
|
150
|
+
clears the pending action so the corrected action can proceed; never overwrite a different
|
|
151
|
+
pending action.
|
|
152
|
+
|
|
123
153
|
## Boundary handling
|
|
124
154
|
|
|
125
155
|
Use `request-transition` for a boundary that requires approval, then present the complete
|
|
@@ -87,6 +87,16 @@ First run `ec-init`; daily work goes through `ec-workflow`.
|
|
|
87
87
|
- REVIEW and VERIFICATION are fingerprinted hard gates. Review evidence must match the final
|
|
88
88
|
implementation; verification evidence must match final implementation and config. The frozen
|
|
89
89
|
workflow mode selects targeted, impacted, or full commands without weakening the green gate.
|
|
90
|
+
- Canonical-backed tasks bind static validity to design revision + `design_sha256`, while
|
|
91
|
+
`document_sha256` and `execution_revision` may advance through shared writer commands. Project-
|
|
92
|
+
external explicit Spec paths are allowed and may be repaired only with identity-checked rebind.
|
|
93
|
+
Runtime progress must use the shared writer with CAS/idempotency and reconciliation; static
|
|
94
|
+
design changes require revision + READY + `sync-spec-design`. Never hand-edit `EDS:EXECUTION`.
|
|
95
|
+
- Canonical routing is two-pass: first use manifest-only discovery for the current worktree, then
|
|
96
|
+
inspect only the explicitly selected task IDs and repositories. A remote-confirmed worktree
|
|
97
|
+
overrides a stale `path_hint`; never mirror the source Spec or re-check unselected repositories.
|
|
98
|
+
ANALYSIS reads the selected consumption closure once and treats exact/scope-unchanged as a fast
|
|
99
|
+
projection, while shared execution is the dependency fact source.
|
|
90
100
|
- MEMORY combines short-memory creation and the conditional long-memory gate. Entry follows the
|
|
91
101
|
effective confirmation mode; once memory processing completes, COMPLETE is automatic.
|
|
92
102
|
- NO CODE-TASK COMPLETION CLAIMS WITHOUT FRESH VERIFICATION EVIDENCE.
|
|
@@ -106,6 +116,8 @@ First run `ec-init`; daily work goes through `ec-workflow`.
|
|
|
106
116
|
creates the project-init task — agent skills perform all project analysis.
|
|
107
117
|
- Cross-repo references in git-tracked task artifacts use repo NAMES, never local paths.
|
|
108
118
|
Cache local paths only through the state script so they land on the current task.
|
|
119
|
+
- Shared Canonical writeback is a stage gate but not proof of Git commit/push, and Git delivery is
|
|
120
|
+
not proof of writeback. Keep those facts and scopes separate.
|
|
109
121
|
{{supermodule_boundary}}
|
|
110
122
|
|
|
111
123
|
<!-- ═══ end easy-coding-harness generated ═══ -->
|
|
@@ -85,6 +85,16 @@ First run `/ec-init`; daily work goes through `/ec-workflow`.
|
|
|
85
85
|
- REVIEW and VERIFICATION are fingerprinted hard gates. Review evidence must match the final
|
|
86
86
|
implementation; verification evidence must match final implementation and config. The frozen
|
|
87
87
|
workflow mode selects targeted, impacted, or full commands without weakening the green gate.
|
|
88
|
+
- Canonical-backed tasks bind static validity to design revision + `design_sha256`, while
|
|
89
|
+
`document_sha256` and `execution_revision` may advance through shared writer commands. Project-
|
|
90
|
+
external explicit Spec paths are allowed and may be repaired only with identity-checked rebind.
|
|
91
|
+
Runtime progress must use the shared writer with CAS/idempotency and reconciliation; static
|
|
92
|
+
design changes require revision + READY + `sync-spec-design`. Never hand-edit `EDS:EXECUTION`.
|
|
93
|
+
- Canonical routing is two-pass: first use manifest-only discovery for the current worktree, then
|
|
94
|
+
inspect only the explicitly selected task IDs and repositories. A remote-confirmed worktree
|
|
95
|
+
overrides a stale `path_hint`; never mirror the source Spec or re-check unselected repositories.
|
|
96
|
+
ANALYSIS reads the selected consumption closure once and treats exact/scope-unchanged as a fast
|
|
97
|
+
projection, while shared execution is the dependency fact source.
|
|
88
98
|
- MEMORY combines short-memory creation and the conditional long-memory gate. Entry follows the
|
|
89
99
|
effective confirmation mode; once memory processing completes, COMPLETE is automatic.
|
|
90
100
|
- NO CODE-TASK COMPLETION CLAIMS WITHOUT FRESH VERIFICATION EVIDENCE.
|
|
@@ -104,6 +114,8 @@ First run `/ec-init`; daily work goes through `/ec-workflow`.
|
|
|
104
114
|
creates the project-init task — agent skills perform all project analysis.
|
|
105
115
|
- Cross-repo references in git-tracked task artifacts use repo NAMES, never local paths.
|
|
106
116
|
Cache local paths only through the state script so they land on the current task.
|
|
117
|
+
- Shared Canonical writeback is a stage gate but not proof of Git commit/push, and Git delivery is
|
|
118
|
+
not proof of writeback. Keep those facts and scopes separate.
|
|
107
119
|
{{supermodule_boundary}}
|
|
108
120
|
|
|
109
121
|
<!-- ═══ end easy-coding-harness generated ═══ -->
|