gm-skill 2.0.2052 → 2.0.2054
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 +1 -1
- package/gm-plugkit/package.json +1 -1
- package/gm.json +1 -1
- package/package.json +1 -1
package/AGENTS.md
CHANGED
|
@@ -22,7 +22,7 @@ Skills encode environment-specific constraints that override general knowledge.
|
|
|
22
22
|
|
|
23
23
|
# Architecture & Philosophy
|
|
24
24
|
|
|
25
|
-
Repo root = package root = published `gm-skill` npm package; no factory, no separate build-output dir. Entry: `skills/gm/SKILL.md`. Orchestration lives in rs-plugkit, served on-demand via `instruction`. The 8 phase-prose files (entry/plan/execute/emit/verify/consolidate/update_docs/browser) live single-sourced inside rs-plugkit itself (`crates/plugkit-core/src/orchestrator/instructions/prose/*.md`, `include_str!`'d at build) -- a prose edit there requires a Rust rebuild via the normal cascade, no cross-repo sync step. `prose.rs::resolve()` is the only override mechanism,
|
|
25
|
+
Repo root = package root = published `gm-skill` npm package; no factory, no separate build-output dir. Entry: `skills/gm/SKILL.md`. Orchestration lives in rs-plugkit, served on-demand via `instruction`. The 8 phase-prose files (entry/plan/execute/emit/verify/consolidate/update_docs/browser) live single-sourced inside rs-plugkit itself (`crates/plugkit-core/src/orchestrator/instructions/prose/*.md`, `include_str!`'d at build) -- a prose edit there requires a Rust rebuild via the normal cascade, no cross-repo sync step. `prose.rs::resolve()` is the only override mechanism, a per-key three-tier chain: `.gm/instructions/<key>.md` (per-project vendored file, always wins) -> a configured source-repo's synced cache (`.gm/instructions/source.json` + `.gm/instructions-source-cache/<key>.md`) -> the compiled default. The same chain covers gate-denial and residual copy (deviation text, gate reasons) -- `gates.rs`/`residual.rs` call `prose::resolve("gates/<key>", default)`/`prose::resolve("residual/<key>", default)` at each call site (e.g. `residual.rs`'s `residual/prd-open`, `residual/browser-open`, `residual/tasks-running`, `residual/imperative`), so these ARE file-override-able exactly like phase prose, via `.gm/instructions/gates/<key>.md` / `.gm/instructions/residual/<key>.md`. `gm-plugkit/instructions/gates/` and `gm-plugkit/instructions/residual/` are the real, git-tracked source directories for this repo's own provisioned defaults, vendored into `.gm/instructions/gates/` and `.gm/instructions/residual/` at bootstrap -- both directories and their files genuinely exist in this repo, edit the `gm-plugkit/instructions/` source copy to change gm's own provisioned defaults. Detail in the recall store (`recall: string-externalization project`).
|
|
26
26
|
|
|
27
27
|
## WASM guest, one native host (agentplug-runner is the sole loader)
|
|
28
28
|
|
package/gm-plugkit/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "gm-plugkit",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.2054",
|
|
4
4
|
"description": "Bootstrap and daemon-spawn tool for gm plugkit binary. Downloads the correct platform wasm, verifies SHA256, and launches agentplug-runner (the native wasm host) as the spool watcher daemon.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"bin": {
|
package/gm.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "gm-skill",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.2054",
|
|
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",
|