gm-cc 2.0.656 → 2.0.658

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.
@@ -4,7 +4,7 @@
4
4
  "name": "AnEntrypoint"
5
5
  },
6
6
  "description": "State machine agent with hooks, skills, and automated git enforcement",
7
- "version": "2.0.656",
7
+ "version": "2.0.658",
8
8
  "metadata": {
9
9
  "description": "State machine agent with hooks, skills, and automated git enforcement"
10
10
  },
@@ -28,15 +28,19 @@ Discard:
28
28
 
29
29
  ## STEP 2: INGEST INTO RS-LEARN
30
30
 
31
- For each classified fact, run (one call per fact):
31
+ For each classified fact, invoke the plugkit memorize subcommand (prefers in-process HTTP to a running `rs-learn serve`, falls back to subprocess automatically — fast either way):
32
32
 
33
33
  ```bash
34
- bun x rs-learn add "<fact text>" --source "<type>/<slug>" --no-extract
34
+ plugkit memorize --source "<type>/<slug>" "<fact text>"
35
35
  ```
36
36
 
37
37
  Where `<fact text>` is a self-contained one-to-three sentence summary of the fact, and `<slug>` is a short kebab-case label (e.g. `feedback/terse-responses`, `project/merge-freeze`).
38
38
 
39
- Use `--no-extract` always fast path, no LLM overhead, ~1s per call.
39
+ For multi-paragraph facts, prefer the file form to avoid argv length limits:
40
+
41
+ ```bash
42
+ plugkit memorize --source "<type>/<slug>" --file <path>
43
+ ```
40
44
 
41
45
  ## STEP 3: AGENTS.md
42
46
 
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
package/bin/plugkit.exe CHANGED
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gm-cc",
3
- "version": "2.0.656",
3
+ "version": "2.0.658",
4
4
  "description": "State machine agent with hooks, skills, and automated git enforcement",
5
5
  "author": "AnEntrypoint",
6
6
  "license": "MIT",
package/plugin.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gm",
3
- "version": "2.0.656",
3
+ "version": "2.0.658",
4
4
  "description": "State machine agent with hooks, skills, and automated git enforcement",
5
5
  "author": {
6
6
  "name": "AnEntrypoint",