@pcircle/memesh 4.8.0 → 4.8.2
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/.claude-plugin/plugin.json +1 -1
- package/AGENTS.md +7 -1
- package/README.de.md +1 -1
- package/README.md +1 -1
- package/README.zh-TW.md +1 -1
- package/dashboard/dist/index.html +9 -9
- package/dist/core/agent-message-inbox.d.ts +9 -0
- package/dist/core/agent-message-inbox.d.ts.map +1 -0
- package/dist/core/agent-message-inbox.js +26 -0
- package/dist/core/agent-message-inbox.js.map +1 -0
- package/dist/core/agent-router.d.ts.map +1 -1
- package/dist/core/agent-router.js +5 -5
- package/dist/core/agent-router.js.map +1 -1
- package/dist/core/briefing.d.ts.map +1 -1
- package/dist/core/briefing.js +5 -1
- package/dist/core/briefing.js.map +1 -1
- package/dist/core/config.d.ts +4 -1
- package/dist/core/config.d.ts.map +1 -1
- package/dist/core/config.js +12 -3
- package/dist/core/config.js.map +1 -1
- package/dist/core/doctor.d.ts.map +1 -1
- package/dist/core/doctor.js +5 -2
- package/dist/core/doctor.js.map +1 -1
- package/dist/core/dreamer.d.ts +2 -0
- package/dist/core/dreamer.d.ts.map +1 -1
- package/dist/core/dreamer.js +7 -1
- package/dist/core/dreamer.js.map +1 -1
- package/dist/core/lesson-engine.d.ts +2 -1
- package/dist/core/lesson-engine.d.ts.map +1 -1
- package/dist/core/lesson-engine.js +5 -2
- package/dist/core/lesson-engine.js.map +1 -1
- package/dist/core/lesson-slug.d.ts +2 -0
- package/dist/core/lesson-slug.d.ts.map +1 -0
- package/dist/core/lesson-slug.js +12 -0
- package/dist/core/lesson-slug.js.map +1 -0
- package/dist/core/llm-client.js +1 -1
- package/dist/core/llm-client.js.map +1 -1
- package/dist/core/llm-validator.d.ts +4 -1
- package/dist/core/llm-validator.d.ts.map +1 -1
- package/dist/core/llm-validator.js +59 -30
- package/dist/core/llm-validator.js.map +1 -1
- package/dist/core/operations.d.ts +9 -3
- package/dist/core/operations.d.ts.map +1 -1
- package/dist/core/operations.js +18 -14
- package/dist/core/operations.js.map +1 -1
- package/dist/core/paths.d.ts.map +1 -1
- package/dist/core/paths.js +2 -3
- package/dist/core/paths.js.map +1 -1
- package/dist/core/schema-export.js +2 -2
- package/dist/core/schema-export.js.map +1 -1
- package/dist/core/transcript-extractor.d.ts.map +1 -1
- package/dist/core/transcript-extractor.js +2 -2
- package/dist/core/transcript-extractor.js.map +1 -1
- package/dist/db.d.ts.map +1 -1
- package/dist/db.js +12 -0
- package/dist/db.js.map +1 -1
- package/dist/host-runtime/acp.d.ts.map +1 -1
- package/dist/host-runtime/acp.js +12 -4
- package/dist/host-runtime/acp.js.map +1 -1
- package/dist/skills-manifest.json +14 -9
- package/dist/storage/graph-repairs.d.ts +12 -0
- package/dist/storage/graph-repairs.d.ts.map +1 -0
- package/dist/storage/graph-repairs.js +194 -0
- package/dist/storage/graph-repairs.js.map +1 -0
- package/dist/transports/cli/cli.d.ts +5 -0
- package/dist/transports/cli/cli.d.ts.map +1 -1
- package/dist/transports/cli/cli.js +20 -9
- package/dist/transports/cli/cli.js.map +1 -1
- package/dist/transports/http/server.d.ts.map +1 -1
- package/dist/transports/http/server.js +117 -7
- package/dist/transports/http/server.js.map +1 -1
- package/dist/transports/mcp/handlers.d.ts +1 -1
- package/dist/transports/mcp/handlers.js +1 -1
- package/dist/transports/mcp/handlers.js.map +1 -1
- package/package.json +13 -3
- package/scripts/hooks/_generated/agent-message-inbox.js +33 -0
- package/scripts/hooks/_generated/core-paths.js +2 -3
- package/scripts/hooks/session-start.js +34 -7
- package/scripts/hooks/session-summary.js +40 -1
- package/skills/memesh/SKILL.md +17 -1
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"name": "memesh",
|
|
9
9
|
"source": "./",
|
|
10
10
|
"description": "MeMesh \u2014 agentic memory for coding agents. Captured from the agent's real work via hooks, recalled when it acts. One SQLite file, zero cloud required.",
|
|
11
|
-
"version": "4.8.
|
|
11
|
+
"version": "4.8.2",
|
|
12
12
|
"author": {
|
|
13
13
|
"name": "PCIRCLE AI"
|
|
14
14
|
},
|
package/AGENTS.md
CHANGED
|
@@ -23,6 +23,12 @@ host is recallable from all of them. Not installed yet? Follow
|
|
|
23
23
|
field out if it was not said.
|
|
24
24
|
3. **"What do you remember?"** — call `briefing` and relay its content. Do
|
|
25
25
|
not answer from your own conversation context.
|
|
26
|
+
4. **When you need another agent** — to hand off, to ask, to report back —
|
|
27
|
+
send a `message` before anything else. The host's own push tool (Claude
|
|
28
|
+
Code's `SendMessage`, a Codex queue) delivers a wakeup; it is not the
|
|
29
|
+
record, and it cannot reach an agent on a different host or one that is
|
|
30
|
+
not running. `briefing` and SessionStart tell you when something is
|
|
31
|
+
waiting for you: `N messages waiting for "<project>" — fetch them`.
|
|
26
32
|
|
|
27
33
|
## All 11 MCP tools
|
|
28
34
|
|
|
@@ -38,7 +44,7 @@ host is recallable from all of them. Not installed yet? Follow
|
|
|
38
44
|
| `briefing` | The assembled work topology for a project — call once at session start |
|
|
39
45
|
| `user_patterns` | Analyze work schedule, tool preferences, and focus areas from memory |
|
|
40
46
|
| `improvement` | Propose an evidence-linked product improvement or read its status; only a human may accept/reject it |
|
|
41
|
-
| `message` |
|
|
47
|
+
| `message` | **Contact another local agent** — hand off work, ask for a result, report a disposition. Send here first: the durable inbox is the record, host push is only delivery. Polling/fetching never implies acknowledgement |
|
|
42
48
|
|
|
43
49
|
## Memory hygiene
|
|
44
50
|
|
package/README.de.md
CHANGED
|
@@ -565,7 +565,7 @@ Wechselst du zu einer anderen Dimension (z. B. 768 → 1536), wird **nichts gel
|
|
|
565
565
|
| `briefing` | Die zusammengesetzte Arbeits-Topologie — derselbe Block, den Claude Code beim Session-Start erhält, für jeden MCP-Client |
|
|
566
566
|
| `user_patterns` | Arbeitsmuster analysieren — Zeitplan, Tools, Stärken, Lernbereiche |
|
|
567
567
|
| `improvement` | Evidenzverknüpfte Produktverbesserung zur menschlichen Prüfung vorschlagen oder ihren Status lesen; Agenten können sie nicht selbst annehmen oder ablehnen |
|
|
568
|
-
| `message` |
|
|
568
|
+
| `message` | Einen anderen lokalen Agenten erreichen (Arbeit übergeben, Ergebnis anfragen, Rückmeldung geben) — zuerst hier senden; der dauerhafte Posteingang ist der Beleg, Host-Push nur die Zustellung. Pollen, Abrufen und Quittieren sind getrennte Fakten |
|
|
569
569
|
|
|
570
570
|
---
|
|
571
571
|
|
package/README.md
CHANGED
|
@@ -581,7 +581,7 @@ If you switch to an embedder with a different dimension (e.g. 768 → 1536), **n
|
|
|
581
581
|
| `briefing` | The assembled work topology — the same block Claude Code gets at session start, for any MCP client |
|
|
582
582
|
| `user_patterns` | Analyze your work patterns — schedule, tools, strengths, learning areas |
|
|
583
583
|
| `improvement` | Stage an evidence-linked product improvement for human review, or read its status; agents cannot accept or reject it |
|
|
584
|
-
| `message` |
|
|
584
|
+
| `message` | Contact another local agent — hand off work, ask for a result, report back — by sending here first; the durable inbox is the record, host push is only delivery. Poll, fetch, and receipt are separate facts |
|
|
585
585
|
|
|
586
586
|
---
|
|
587
587
|
|
package/README.zh-TW.md
CHANGED
|
@@ -572,7 +572,7 @@ memesh config set embedder.provider openai # or: ollama
|
|
|
572
572
|
| `briefing` | 組合好的工作拓撲——Claude Code 在 session 開始拿到的那個區塊,任何 MCP client 都拿得到 |
|
|
573
573
|
| `user_patterns` | 分析你的工作模式——時間表、工具、優勢、學習領域 |
|
|
574
574
|
| `improvement` | 將有證據來源的產品改善送交人類審核,或讀取其狀態;agent 不能自行接受或拒絕 |
|
|
575
|
-
| `message` |
|
|
575
|
+
| `message` | 要聯絡另一個本機 agent(交接工作、請求結果、回報處置)先送到這裡:耐久收件匣才是紀錄,host push 只是通知。輪詢、擷取、確認收到是分開記錄的事實 |
|
|
576
576
|
|
|
577
577
|
---
|
|
578
578
|
|