gm-qwen 2.0.759 → 2.0.761
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/gm.json +1 -1
- package/package.json +1 -1
- package/skills/gm/SKILL.md +8 -6
- package/skills/planning/SKILL.md +2 -2
package/gm.json
CHANGED
package/package.json
CHANGED
package/skills/gm/SKILL.md
CHANGED
|
@@ -43,19 +43,21 @@ Multiple facts → parallel Agent calls in ONE message. End-of-turn: scan for un
|
|
|
43
43
|
|
|
44
44
|
A written PRD is the user's authorization. Once it exists, EXECUTE owns the work to COMPLETE. Resolve every doubt that arises during execution by witnessed probe, by recall, or by re-reading the PRD — never by asking the user. Any question whose answer the agent could obtain itself is a question the agent owes itself, not the user.
|
|
45
45
|
|
|
46
|
+
**FINISH ALL REMAINING STEPS — HARD RULE**: when a request enumerates or implies multiple work items ("all", "any", "everything", "the rest", "remaining"), or after a covering family is constructed under MAXIMAL COVER, the agent finishes every witnessable item in the same turn. Stopping after one item to ask "which next?" is forbidden — the answer is *all of them*, in one chain, until `.gm/prd.yml` is empty and git is clean and pushed. Mid-chain "should I…", "want me to…", "which would you like…" prompts are forced closure; replace them with the next skill invocation.
|
|
47
|
+
|
|
46
48
|
Asking is permitted only as a last resort, when the next action is destructive-irreversible AND the PRD does not cover it, OR when user intent is genuinely irrecoverable from PRD, memory, and code. The channel is structured: `exec:pause` (renames `.gm/prd.yml` → `.gm/prd.paused.yml`, question in header). In-conversation asking is last-resort beneath last-resort.
|
|
47
49
|
|
|
48
50
|
The size of the task, the cost of context, and the duration of CI are never grounds to ask.
|
|
49
51
|
|
|
50
|
-
##
|
|
52
|
+
## MAXIMAL COVER — HARD RULE
|
|
51
53
|
|
|
52
|
-
Per paper
|
|
54
|
+
Per paper IV §2 (formerly "lawful downgrade" in paper III §2.5 — renamed because the discipline is *constructive*, not a passive settling-for-less): the obligation when scope exceeds reach is to construct a *maximal cover* of the request, not to refuse it and not to ship one slice and call the rest "follow-up."
|
|
53
55
|
|
|
54
|
-
Refusal is forced closure. So is *distributed* refusal —
|
|
56
|
+
Refusal is forced closure. So is *distributed* refusal — shipping a single bounded subset while other witnessable subsets exist. Both bypass witnessed execution.
|
|
55
57
|
|
|
56
|
-
**Required move when scope exceeds reach
|
|
58
|
+
**Required move when scope exceeds reach**: construct a *covering family* of bounded subsets — every subset of the request that is witnessable from this session — and write the family into the PRD. Execute every member. Single-subset delivery is legitimate only when no other witnessable subset exists; otherwise it is distributed refusal under another name. At end-of-turn, name the residual complement explicitly, with the reason each excluded piece falls outside the witnessable closure.
|
|
57
59
|
|
|
58
|
-
The discipline is enforced by what is delivered, not by which words appear. Before closing the turn, check that the union of committed work plus named complement equals the witnessable closure of the request. Anything witnessable that falls in neither set means the cover is not yet maximal — re-enter planning to expand it.
|
|
60
|
+
The discipline is enforced by what is delivered, not by which words appear. Before closing the turn, check that the union of committed work plus named complement equals the witnessable closure of the request. Anything witnessable that falls in neither set means the cover is not yet maximal — re-enter planning to expand it. The cover is *maximal*, not *complete*: completeness would require reaching scope outside the session, which is dishonest. Maximality reaches everything inside the session, which is the whole obligation.
|
|
59
61
|
|
|
60
62
|
## FIX ON SIGHT — HARD RULE
|
|
61
63
|
|
|
@@ -63,7 +65,7 @@ Every issue surfaced during work is fixed in-band, this turn, at root cause. Def
|
|
|
63
65
|
|
|
64
66
|
Surface → diagnose → fix at root cause → re-witness → continue. If the fix uncovers a new unknown, regress to `planning`. If the fix is itself genuinely out-of-scope-irreversible, the residual goes into `.gm/prd.yml` *before* moving on — narration is not a substitute for an item.
|
|
65
67
|
|
|
66
|
-
A skill chain that ships while ignoring a known-bad signal is forced closure (see
|
|
68
|
+
A skill chain that ships while ignoring a known-bad signal is forced closure (see MAXIMAL COVER).
|
|
67
69
|
|
|
68
70
|
## BROWSER WITNESS — HARD RULE
|
|
69
71
|
|
package/skills/planning/SKILL.md
CHANGED
|
@@ -49,9 +49,9 @@ Asking is last-resort: destructive-irreversible without PRD coverage, OR user in
|
|
|
49
49
|
|
|
50
50
|
**Cannot stop while**: `.gm/prd.yml` has items | git uncommitted | git unpushed.
|
|
51
51
|
|
|
52
|
-
##
|
|
52
|
+
## MAXIMAL COVER — HARD RULE
|
|
53
53
|
|
|
54
|
-
Per paper
|
|
54
|
+
Per paper IV §2 (renamed from paper III §2.5 "lawful downgrade" — that phrase undersold the constructive obligation): the obligation when scope exceeds reach is to *expand the cover*, not to refuse and not to ship a single slice. Refusal is forced closure. Distributed refusal — one bounded subset delivered, the rest abandoned despite being witnessable — is the same failure dressed up as triage.
|
|
55
55
|
|
|
56
56
|
**Required move when scope exceeds reach**: construct a *covering family* — every bounded subset of the request that is witnessable from this session — and write the family into the PRD as separate items, with the dependency graph explicit so independent members parallelize. Execute every member. Single-subset delivery is legitimate only when no other witnessable subset exists. The residual complement is named at end-of-turn, with the reason each excluded piece falls outside the witnessable closure.
|
|
57
57
|
|