gm-skill 2.0.1898 → 2.0.1899
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/README.md +13 -1
- package/gm-plugkit/package.json +1 -1
- package/gm.json +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -119,7 +119,19 @@ A push to `main` triggers `.github/workflows/publish.yml`:
|
|
|
119
119
|
|
|
120
120
|
`.github/workflows/gh-pages.yml` builds the `site/` flatspace source to `dist/` and deploys to GitHub Pages.
|
|
121
121
|
|
|
122
|
-
The plugkit wasm itself is built and released by [rs-plugkit](https://github.com/AnEntrypoint/rs-plugkit) on every push, published to npm as `plugkit-wasm` and to GitHub Releases as `plugkit-bin`. Bootstrapping the agent downloads the wasm at install time
|
|
122
|
+
The plugkit wasm itself is built and released by [rs-plugkit](https://github.com/AnEntrypoint/rs-plugkit) (submoduled at `rs-plugkit/`, source only -- see below) on every push, published to npm as `plugkit-wasm` and to GitHub Releases as `plugkit-bin`. Bootstrapping the agent downloads the compiled wasm at install time; the compiled binary itself does not ship in this repo, only the Rust source that builds it.
|
|
123
|
+
|
|
124
|
+
## developing gm itself
|
|
125
|
+
|
|
126
|
+
`rs-plugkit/` is a git submodule (rs-plugkit's Rust source, not a compiled artifact). A plain `git clone` leaves it empty -- clone with submodules, or init it after the fact:
|
|
127
|
+
|
|
128
|
+
```
|
|
129
|
+
git clone --recurse-submodules https://github.com/AnEntrypoint/gm.git
|
|
130
|
+
# or, in an existing checkout:
|
|
131
|
+
git submodule update --init --recursive
|
|
132
|
+
```
|
|
133
|
+
|
|
134
|
+
An empty `rs-plugkit/` directory after a normal `git clone` is expected, not a bug -- it only matters if you're changing rs-plugkit's own Rust source (orchestrator, gates, spool dispatch) rather than the skill/installer JS in this repo's own tree.
|
|
123
135
|
|
|
124
136
|
## license
|
|
125
137
|
|
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.1899",
|
|
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": {
|
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.1899",
|
|
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",
|