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.
- package/.claude-plugin/marketplace.json +1 -1
- package/agents/memorize.md +7 -3
- package/bin/plugkit-darwin-arm64 +0 -0
- package/bin/plugkit-darwin-x64 +0 -0
- package/bin/plugkit-linux-arm64 +0 -0
- package/bin/plugkit-linux-x64 +0 -0
- package/bin/plugkit-win32-arm64.exe +0 -0
- package/bin/plugkit-win32-x64.exe +0 -0
- package/bin/plugkit.exe +0 -0
- package/package.json +1 -1
- package/plugin.json +1 -1
|
@@ -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.
|
|
7
|
+
"version": "2.0.658",
|
|
8
8
|
"metadata": {
|
|
9
9
|
"description": "State machine agent with hooks, skills, and automated git enforcement"
|
|
10
10
|
},
|
package/agents/memorize.md
CHANGED
|
@@ -28,15 +28,19 @@ Discard:
|
|
|
28
28
|
|
|
29
29
|
## STEP 2: INGEST INTO RS-LEARN
|
|
30
30
|
|
|
31
|
-
For each classified 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
|
-
|
|
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
|
-
|
|
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
|
|
package/bin/plugkit-darwin-arm64
CHANGED
|
Binary file
|
package/bin/plugkit-darwin-x64
CHANGED
|
Binary file
|
package/bin/plugkit-linux-arm64
CHANGED
|
Binary file
|
package/bin/plugkit-linux-x64
CHANGED
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/bin/plugkit.exe
CHANGED
|
Binary file
|
package/package.json
CHANGED