gm-thebird 2.0.1042 → 2.0.1043
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/memorize.md +6 -0
- package/gm.json +1 -1
- package/package.json +1 -1
- package/plugin.json +1 -1
- package/skills/gm/SKILL.md +2 -0
- package/skills/gm-execute/SKILL.md +4 -0
package/agents/memorize.md
CHANGED
|
@@ -67,6 +67,12 @@ exec:forget
|
|
|
67
67
|
by-query <2-6 search words>
|
|
68
68
|
```
|
|
69
69
|
|
|
70
|
+
**CRITICAL: rs-learn failures must be explicit and recoverable.** If `exec:memorize` fails (socket unavailable, network error, timeout):
|
|
71
|
+
1. Report the failure to the user with error details
|
|
72
|
+
2. Fallback immediately to STEP 3 (AGENTS.md) to preserve the fact in the always-on context buffer
|
|
73
|
+
3. Never proceed as if the write succeeded
|
|
74
|
+
4. This contract ensures memory preservation when the rs-learn retrieval store is temporarily unavailable
|
|
75
|
+
|
|
70
76
|
## STEP 3: AGENTS.md
|
|
71
77
|
|
|
72
78
|
A non-obvious technical caveat qualifies if it required multiple failed runs to discover and would not be apparent from reading code or docs.
|
package/gm.json
CHANGED
package/package.json
CHANGED
package/plugin.json
CHANGED
package/skills/gm/SKILL.md
CHANGED
|
@@ -30,6 +30,8 @@ The user's request is authorization. When scope is unclear, pick the maximum rea
|
|
|
30
30
|
|
|
31
31
|
**LLM provider**: acptoapi (127.0.0.1:4800) is the preferred provider when available. rs-plugkit session_start spawns acptoapi daemon and auto-detects ACP agents (opencode, kilo-code, codex, gemini-cli, qwen-code). All downstream platforms (rs-learn, freddie, gm-skill daemon mode) read OPENAI_BASE_URL environment variable and default to 127.0.0.1:4800. Anthropic SDK is fallback only when acptoapi socket is unavailable (CI, headless mode).
|
|
32
32
|
|
|
33
|
+
**rs-learn failure contract**: exec:memorize, exec:recall, and exec:codesearch failures must be reported explicitly with error details to the user. Fallback to AGENTS.md for memory preservation when socket/network unavailable. Never silently absorb errors because memory preservation requires explicit fallback. This rule applies across all phases (PLAN through UPDATE-DOCS).
|
|
34
|
+
|
|
33
35
|
**Spool dispatch chain**: write to `.gm/exec-spool/in/<lang>/<N>.<ext>` or `in/<verb>/<N>.txt`. Watcher executes and streams `out/<N>.out` + `out/<N>.err` + `out/<N>.json` metadata. Languages: nodejs, python, bash, typescript, go, rust, c, cpp, java, deno. Verbs: codesearch, recall, memorize, wait, sleep, status, close, browser, runner, type, kill-port, forget, feedback, learn-status, learn-debug, learn-build, discipline, pause, health.
|
|
34
36
|
|
|
35
37
|
**Session isolation**: SESSION_ID environment variable (or uuid fallback) threads through task dispatch for cleanup scope. rs-exec RPC handlers verify session_id match on all task-scoped operations.
|
|
@@ -59,6 +59,10 @@ exec:codesearch
|
|
|
59
59
|
|
|
60
60
|
Start two words, change/add one per pass, minimum four attempts before concluding absent. Known absolute path → `Read`. Known directory → `exec:nodejs` + `fs.readdirSync`.
|
|
61
61
|
|
|
62
|
+
## Utility verb failure handling
|
|
63
|
+
|
|
64
|
+
**Utility verb failures must surface**: exec:memorize, exec:recall, exec:codesearch, and other utility verbs may fail (socket unavailable, timeout, network error). Failures do not block witness completion but must be reported to the user with error context. Fallback mechanisms (AGENTS.md for memorize) ensure memory preservation even when rs-learn is temporarily unavailable.
|
|
65
|
+
|
|
62
66
|
## Import-based execution
|
|
63
67
|
|
|
64
68
|
Hypotheses become real by importing actual modules from disk. Reimplemented behavior is UNKNOWN. Write the import probe to the spool:
|