gm-qwen 2.0.774 → 2.0.776

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.
@@ -11,6 +11,19 @@ Writes facts to two places only: **AGENTS.md** (non-obvious technical caveats) a
11
11
  Resolve at start of every run:
12
12
 
13
13
  - **Project root** = `process.cwd()` when invoked. `AGENTS.md` is `<project root>/AGENTS.md`.
14
+ - **Reach check** = run `gh api repos/<owner>/<repo> --jq .permissions.push` on `<project root>`'s `git remote get-url origin`. Cache the answer for the run. If the result is anything other than literal `true` (false, no remote, non-github URL, gh CLI missing, gh not authed, repo private and inaccessible), the project is **out-of-reach**.
15
+
16
+ ## STEP 0: SCOPE GUARD — DO NOT POLLUTE OUT-OF-REACH PROJECTS
17
+
18
+ If the reach check returns out-of-reach:
19
+
20
+ - **Do** ingest classified facts into rs-learn (Step 2) — rs-learn is per-user, not per-project, so private notes about a project the user is reading-but-not-owning are safe there.
21
+ - **Do not** read or edit `<project root>/AGENTS.md` (Step 3). Skip the file entirely.
22
+ - **Do not** run the AGENTS.md ↔ rs-learn migration audit (Step 4). The audit edits AGENTS.md.
23
+
24
+ Reason: agents running in a cwd that points at a third-party repo (e.g. running Claude inside a checkout of `nousresearch/hermes-agent` while building a downstream port) must not write project-specific notes into the upstream project's AGENTS.md. That AGENTS.md belongs to the upstream maintainers. Personal porting notes belong in the user's downstream repo's AGENTS.md, or — when the work spans multiple repos and there's no clean home — in rs-learn only.
25
+
26
+ When the reach check returns **in-reach**, proceed normally with all four steps below.
14
27
 
15
28
  ## STEP 1: CLASSIFY
16
29
 
@@ -1,6 +1,6 @@
1
- 9d6ae2710ceb526f2dbe0ec7a23b8d7dff8b3950b6cfc60b37ef528e00c4f8c0 plugkit-win32-x64.exe
2
- 9c8c4a786df08bd25d4afe1e16d9cb3d0efa4596a63512c2380b244745f9724a plugkit-win32-arm64.exe
3
- 19e52553df9a0525b9f09cf4280ea5cbdee65d47bbbaca9fe1ca7cde7bc707ca plugkit-darwin-x64
4
- 9cc4e10ea35475508e87a89af44ad69095d569e65ac9443184c1482311f2dfd0 plugkit-darwin-arm64
5
- 235e382aad5bf75fb802a4d750fb36717a20fdfe1fd070d6e680aba94c814843 plugkit-linux-x64
6
- 2fc0a23a09ed096c3dd480e595dc3f04a661f2aa27f0d50ee97d0de3769ab61c plugkit-linux-arm64
1
+ e56686757b37802de8f6c2da83b0bcdcd7dfdd4617e6a91a70da7ebfed500372 plugkit-win32-x64.exe
2
+ 72361c0c3fb481b85c5b976b50aa1b3c4d98a320c4e6e3227bfbe14bb93ac856 plugkit-win32-arm64.exe
3
+ 9fd80ff30a1242315b2be70740e9c82eab17b3ad8af96a3cdc31f7eae79b1ca9 plugkit-darwin-x64
4
+ 0ab57a6df17f76863fa00422fbd2f032b159a23913b84e235e7b081c0078fd05 plugkit-darwin-arm64
5
+ 09ad6edc54073edab0d7596593f0f1787f25b3e8f07d18e31a354befffcdd514 plugkit-linux-x64
6
+ bdf2d407f0620b1d8efab470255b5137a3c931d0c570299784ffd831635e1818 plugkit-linux-arm64
@@ -1 +1 @@
1
- 0.1.254
1
+ 0.1.255
package/gm.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gm",
3
- "version": "2.0.774",
3
+ "version": "2.0.776",
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.254"
26
+ "plugkitVersion": "0.1.255"
27
27
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gm-qwen",
3
- "version": "2.0.774",
3
+ "version": "2.0.776",
4
4
  "description": "State machine agent with hooks, skills, and automated git enforcement",
5
5
  "author": "AnEntrypoint",
6
6
  "license": "MIT",