gm-skill 2.0.1693 → 2.0.1694

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/AGENTS.md CHANGED
@@ -132,7 +132,7 @@ Every skill's `allowed-tools:` reduced to `Skill, Read, Write` (plus SKILL.md bo
132
132
 
133
133
  **The agent IS the LLM rs-learn calls**: no separate judge model; decisions inline via spool. Internals: rs-learn (`recall: rs-learn self-report core internals`).
134
134
 
135
- **Idempotency contract (f∘f≡f)**: spool dispatch = at-least-once by design (in-memory processed-Map guards only concurrent double-pickup, not cross-time replay/restart), so correctness rests on per-verb convergence: `memorize`/`memorize-fire` content-hash-key+dedup, `git_finalize`/`git_commit` nothing-to-commit/already-pushed, `insert_edge` kv-overwrite-by-id+dedup-guarded-index, `invalidate_edge` early-return, `ensure_managed_gitignore` strip-rebuild-changed-gate, codeinsight digest-gate, publish.yml already-published-skip+porcelain-gated-version-commit-back. Read-only verbs (recall/codesearch/git_status/instruction/health/filter) recompute every dispatch, never cache. `exec_js`/`browser` re-run on replay (at-most-once-by-nature); persistent dedup ledger rejected as net-additive. Detail: rs-learn (`recall: idempotency contract per-verb convergence`).
135
+ **Idempotency contract (f∘f≡f)**: spool dispatch is at-least-once; correctness rests on per-verb convergence (content-hash dedup, nothing-to-commit gates, digest gates); read-only verbs recompute, never cache. Per-verb enumeration: rs-learn (`recall: idempotency contract per-verb convergence`).
136
136
 
137
137
  **host_exec_js is synchronous**: real per-call `timeoutMs` required (zero/missing = hard error). Detail: rs-learn (`recall: host_exec_js synchronous`).
138
138
 
@@ -188,7 +188,7 @@ One-shot system-state probe: dispatch `plugkit health` before assuming any compo
188
188
 
189
189
  Site build + landing render: single-surface detail, drained to rs-learn (`recall: gm site build details`).
190
190
 
191
- **The site consumes the `anentrypoint-design` SDK pro-rata, never overriding it.** `site/theme.mjs` loads SDK at runtime (`unpkg.com/anentrypoint-design@latest`); local `<style>` carries ONLY render-mode plumbing (flatspace html-class toggles `article-flow`/`landing-cap`, crumb media query) + non-SDK site article-layout rhythm -- never a themed visual component. Every graphic-design change (token, component look, TOC/cli/panel/card/callout styling) made IN the SDK repo (`../anentrypoint-design`, GitHub `AnEntrypoint/design`, npm `anentrypoint-design`) as a token-only sheet, published; site picks up via `@latest`. New local CSS styling a visual component = deviation, belongs in SDK. SDK component sheets lint-gated literal-free (every color `var(--token)`); SDK build prefixes selectors `.ds-247420`-scoped. Mechanism: rs-learn (`recall: design SDK pro-rata consumption`).
191
+ **The site consumes the `anentrypoint-design` SDK pro-rata, never overriding it.** Every visual change lands in the SDK repo, never local CSS; local `<style>` = render-mode plumbing only. Mechanism + repo pointers: rs-learn (`recall: design SDK pro-rata consumption`).
192
192
 
193
193
 
194
194
  @.gm/next-step.md
@@ -1 +1 @@
1
- 0.1.740
1
+ 0.1.741
@@ -1 +1 @@
1
- b9c3b05dfbc9944971dff53e643ca7bdddea3fa822c8d37caf377d50ec17a204 plugkit.wasm
1
+ 5fb0db7065cde4b417e566699e68e4f05f4258c5139cb3f2c69365bde83dcdea plugkit.wasm
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gm-plugkit",
3
- "version": "2.0.1693",
3
+ "version": "2.0.1694",
4
4
  "description": "Bootstrap and daemon-spawn tool for gm plugkit binary. Downloads the correct platform binary, verifies SHA256, and starts the spool watcher daemon. Includes plugkit-wasm-wrapper for WASM-based spool watching.",
5
5
  "main": "index.js",
6
6
  "bin": {
@@ -3814,6 +3814,23 @@ async function runSpoolWatcher(instance, spoolDir) {
3814
3814
  setInterval(() => { try { scanStalledTurns(); } catch (_) {} }, 30000);
3815
3815
  writeStatus();
3816
3816
 
3817
+ setTimeout(() => {
3818
+ try {
3819
+ _writeStatusBusy(360000);
3820
+ const vb = new TextEncoder().encode('codesearch');
3821
+ const bb = new TextEncoder().encode(JSON.stringify({ query: 'index warmup', k: 1 }));
3822
+ const vp = writeWasmInput(instance, vb, 'boot-warmup:codesearch.verb');
3823
+ const bp = writeWasmInput(instance, bb, 'boot-warmup:codesearch.body');
3824
+ const t0 = Date.now();
3825
+ const r = dispatch(vp, vb.length, bp, bb.length);
3826
+ decodeWasmResult(instance, r, 'boot-warmup:codesearch');
3827
+ writeStatus();
3828
+ logEvent('plugkit', 'boot.index-warmup', { ms: Date.now() - t0 });
3829
+ } catch (e) {
3830
+ try { logEvent('plugkit', 'boot.index-warmup-failed', { error: String(e && e.message || e) }); } catch (_) {}
3831
+ }
3832
+ }, 3000);
3833
+
3817
3834
  const TURN_SUMMARY_PATH = path.join(spoolDir, '.turn-summary.json');
3818
3835
  function writeTurnSummary() {
3819
3836
  try {
package/gm.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gm",
3
- "version": "2.0.1693",
3
+ "version": "2.0.1694",
4
4
  "description": "Spool-dispatch orchestration engine with unified state machine, skills, and automated git enforcement",
5
5
  "author": "AnEntrypoint",
6
6
  "license": "MIT",
@@ -17,5 +17,5 @@
17
17
  "publishConfig": {
18
18
  "access": "public"
19
19
  },
20
- "plugkitVersion": "0.1.740"
20
+ "plugkitVersion": "0.1.741"
21
21
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gm-skill",
3
- "version": "2.0.1693",
3
+ "version": "2.0.1694",
4
4
  "description": "Canonical universal harness — AI-native software engineering via skill-driven orchestration; bootstraps plugkit for task execution and session isolation. Install in any AI coding agent host.",
5
5
  "author": "AnEntrypoint",
6
6
  "license": "MIT",