@sabaiway/agent-workflow-engine 1.5.0 → 1.6.0
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 +9 -0
- package/SKILL.md +1 -1
- package/capability.json +1 -1
- package/package.json +1 -1
- package/references/orchestration.md +10 -5
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,15 @@ All notable changes to the methodology engine. Versions are this **package's** n
|
|
|
4
4
|
they are distinct from the **deployment-lineage** stamp written into a project's `docs/ai/`
|
|
5
5
|
(which tracks the shared `agent-workflow` lineage, head `1.3.0`).
|
|
6
6
|
|
|
7
|
+
## 1.6.0 — Loosen the agy Issue-001 caveat (grounded review is sound)
|
|
8
|
+
|
|
9
|
+
A **feature** release. `references/orchestration.md` §5 reframes the `agy` health advisory: the grounded
|
|
10
|
+
`agy-review` contract removes agy's stale-model / partial-diff **false positives**, so `agy` is a **sound**
|
|
11
|
+
second opinion now — no longer something to merely avoid. The real **service-stall** caveat (Issue-001) is
|
|
12
|
+
kept — it is a separate risk that grounding does not remove — as is the codex-before-agy tie-break for
|
|
13
|
+
large / latency-sensitive substantive reviews and the `--add-dir` escalation path. The deployment-lineage
|
|
14
|
+
head stays **`1.3.0`** (no `docs/ai` structural change).
|
|
15
|
+
|
|
7
16
|
## 1.5.0 — Right-altitude & code-grounded folds in the canon
|
|
8
17
|
|
|
9
18
|
A **feature** release. The planning canon (`references/planning.md`, read **live** by the composition
|
package/SKILL.md
CHANGED
|
@@ -3,7 +3,7 @@ name: agent-workflow-engine
|
|
|
3
3
|
description: Canonical home of the agent-workflow planning methodology — the Plan→Phase→Step→Substep vocabulary, plan lifecycle, queue.md series index, mandatory Cleanup phase, the bounded methodology slot fragment, the orchestration-recipe vocabulary (Solo / Reviewed / Council / Delegated), and the activity-procedures canon (plan-authoring / plan-execution, with typed recipe slots). A published, installable npm package (available:true) that *provides* the methodology text; it mutates nothing. The composition root (agent-workflow-kit) reads this canon LIVE from the installed engine and injects the bounded slots from it — one source of truth, no bundled mirror; `npx @sabaiway/agent-workflow-kit@latest init` installs the engine.
|
|
4
4
|
disable-model-invocation: true
|
|
5
5
|
metadata:
|
|
6
|
-
version: '1.
|
|
6
|
+
version: '1.6.0'
|
|
7
7
|
---
|
|
8
8
|
|
|
9
9
|
# agent-workflow-engine
|
package/capability.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sabaiway/agent-workflow-engine",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.6.0",
|
|
4
4
|
"description": "Canonical home of the agent-workflow planning methodology — the Plan→Phase→Step vocabulary, plan lifecycle, queue.md series index, and mandatory Cleanup phase, consumed by the kit (composition root). The methodology engine of the agent-workflow family.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ai-agents",
|
|
@@ -22,8 +22,8 @@ Each backend declares what it can do in its `capability.json` `provides` / `role
|
|
|
22
22
|
- **`codex-cli-bridge`** (`codex`) — `provides: ["execute", "review"]`. It can run a bounded
|
|
23
23
|
execution sub-task (`codex-exec`, output: a diff) and give an advisory review (`codex-review`,
|
|
24
24
|
modes `plan` / `code`).
|
|
25
|
-
- **`antigravity-cli-bridge`** (`agy`) — `provides: ["review", "probe"]`. It
|
|
26
|
-
review and
|
|
25
|
+
- **`antigravity-cli-bridge`** (`agy`) — `provides: ["review", "probe"]`. It gives an advisory,
|
|
26
|
+
grounded review via `agy-review` (modes `code` / `plan` / `diff`) and answers a bounded probe via `agy-run`.
|
|
27
27
|
|
|
28
28
|
Both are **subscription** backends with a **finite quota** — spend deliberately.
|
|
29
29
|
|
|
@@ -78,9 +78,14 @@ cheapest model that fits the task; not reach for a top-tier model by reflex; and
|
|
|
78
78
|
A **standing health advisory** applies to `agy`: the Antigravity service can **stall on substantive
|
|
79
79
|
prompts** (a long hang that returns nothing — an external service issue, not a setup problem;
|
|
80
80
|
tracked as **Issue-001** in the kit's known issues). It is **invisible to file-presence detection**,
|
|
81
|
-
so it is *not* a readiness signal —
|
|
82
|
-
|
|
83
|
-
|
|
81
|
+
so it is *not* a readiness signal — only a standing caveat. The **grounded** `agy-review` contract
|
|
82
|
+
makes `agy` a **sound** second opinion — it removes the stale-model / partial-diff **false positives**
|
|
83
|
+
that the old ungrounded, `--add-dir`-roaming reviews produced — so `agy` is no longer something to
|
|
84
|
+
merely avoid. But the *service* stall is a **separate, real** risk that grounding does **not** remove,
|
|
85
|
+
so keep reviews **focused** (the inherited hard timeout is the guard) and **prefer `codex`** for large
|
|
86
|
+
or latency-sensitive substantive reviews and for the `--add-dir` escalation path (the deterministic
|
|
87
|
+
Reviewed tie-break in §3). The recipe machinery **never runs a subscription CLI** to check — detection
|
|
88
|
+
stays read-only.
|
|
84
89
|
|
|
85
90
|
## 6. The orchestrator always commits
|
|
86
91
|
|