gm-qwen 2.0.761 → 2.0.763
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/bin/plugkit.sha256 +6 -6
- package/bin/plugkit.version +1 -1
- package/gm.json +2 -2
- package/package.json +1 -1
- package/skills/planning/SKILL.md +14 -2
package/bin/plugkit.sha256
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
1
|
+
6f37a38d23215bec8b6e000dda95bebf41c8fd3d34f47efac8508ce436cea695 plugkit-win32-x64.exe
|
|
2
|
+
bf94a8d39ce8bb2e6565a347fa88ba0061ca471fa968e3bcd645bcabd82c90cf plugkit-win32-arm64.exe
|
|
3
|
+
9257c8f7f351dae2a25fd706a75d0281aa20878b14b1ce38aa47b84568ea2dde plugkit-darwin-x64
|
|
4
|
+
5330b8d2681db209d5789fb6d5b6edcb5270f9d50ceac4126751a36995bef435 plugkit-darwin-arm64
|
|
5
|
+
1d4dc8afb691486a643ef92904bb91d59deb7c88d1f05161a8ab1e38e6f6536f plugkit-linux-x64
|
|
6
|
+
a99817799e17ca2d467cdf6fca7c72c38af2d8ac2a14083c14f9461d4a652719 plugkit-linux-arm64
|
package/bin/plugkit.version
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.1.
|
|
1
|
+
0.1.252
|
package/gm.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "gm",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.763",
|
|
4
4
|
"description": "State machine agent with hooks, skills, and automated git enforcement",
|
|
5
5
|
"author": "AnEntrypoint",
|
|
6
6
|
"license": "MIT",
|
|
@@ -23,5 +23,5 @@
|
|
|
23
23
|
"publishConfig": {
|
|
24
24
|
"access": "public"
|
|
25
25
|
},
|
|
26
|
-
"plugkitVersion": "0.1.
|
|
26
|
+
"plugkitVersion": "0.1.252"
|
|
27
27
|
}
|
package/package.json
CHANGED
package/skills/planning/SKILL.md
CHANGED
|
@@ -71,9 +71,21 @@ The trigger is functional, not a path-list: any change whose effect is observabl
|
|
|
71
71
|
|
|
72
72
|
Propagation: EXECUTE witnesses on edit, EMIT re-witnesses post-write, VERIFY runs the final gate. The plan must encode the rule so all three layers fire.
|
|
73
73
|
|
|
74
|
-
##
|
|
74
|
+
## ORIENT — HARD RULE (before naming any unknown)
|
|
75
75
|
|
|
76
|
-
|
|
76
|
+
Every planning entry begins with ORIENT: a parallel pack of recalls and codesearches that loads what the store already knows about the request. Do this BEFORE you name a single mutable.
|
|
77
|
+
|
|
78
|
+
Pack: 3–5 `exec:recall <2-6 word query>` calls + 3–5 `exec:codesearch <two words>` calls, fired in one message (parallel). Queries derive from each major noun in the request and each named entity. Hits become `weak_prior`; misses confirm the unknown is genuinely fresh.
|
|
79
|
+
|
|
80
|
+
Cost rationale: orient is free relative to skipping it. The agent that skips orient pays the same cost in fresh-execution rounds resolving things the store already had — plus the cost of the duplicate work, plus the risk of disagreeing with prior witness. Orient runs in parallel and completes in <1s when the rs-learn HTTP serve is hot. Skipping orient is forced closure.
|
|
81
|
+
|
|
82
|
+
Exempt only when: literal one-line edit AND user instruction is fully self-contained AND zero recall-able context exists. Tag the exemption explicitly.
|
|
83
|
+
|
|
84
|
+
## PRD MANDATORY — HARD RULE
|
|
85
|
+
|
|
86
|
+
Writing `./.gm/prd.yml` is **non-negotiable** for every task whose scope exceeds a literal single-file single-line edit. The PRD captures the covering family (paper IV §2.3 Maximal Cover), the residual complement, the dependency graph for parallelization, and the acceptance criteria. Skipping the PRD costs the same as writing it (the agent enumerates the work mentally either way) and loses three things that are not free to recover: durable trace across compaction, resumability after reboot, and the cover-maximality check.
|
|
87
|
+
|
|
88
|
+
Exempt only when: literal single-line typo fix OR pure-comment edit OR user-issued one-shot command (e.g., `git status`). Anything multi-step, multi-file, or multi-concern emits a PRD before EXECUTE fires.
|
|
77
89
|
|
|
78
90
|
## PLAN PHASE — MUTABLE DISCOVERY
|
|
79
91
|
|