claude-self-reflect 9.4.0 → 9.4.1
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/README.md +9 -6
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -12,11 +12,11 @@ Single 44MB binary. No databases. No containers. No API keys required.
|
|
|
12
12
|
|
|
13
13
|
[Install](#install) | [How It Works](#how-it-works) | [MCP Tools](#mcp-tools) | [FAQ](https://ramakay.github.io/claude-self-reflect/#/docs/troubleshooting)
|
|
14
14
|
|
|
15
|
-
> **v9.
|
|
16
|
-
>
|
|
17
|
-
>
|
|
18
|
-
> Sub-millisecond search, ~150ms cached startup,
|
|
19
|
-
> [Release notes](https://github.com/ramakay/claude-self-reflect/releases/tag/v9.
|
|
15
|
+
> **v9.4 — Multi-Source Memory**
|
|
16
|
+
> CSR now remembers more than transcripts: task outcomes, plan documents, and a cross-project session registry — each absorbed at the lifecycle stage it belongs to.
|
|
17
|
+
> Episodes carry real task state again (Claude Code's TodoWrite→TaskCreate rename had silently emptied them — found, fixed, and guarded with schema-miss telemetry).
|
|
18
|
+
> Sub-millisecond search, ~150ms cached startup, 720+ tests, zero external dependencies.
|
|
19
|
+
> [Release notes](https://github.com/ramakay/claude-self-reflect/releases/tag/v9.4.0)
|
|
20
20
|
|
|
21
21
|
<img src="docs-site/public/images/csr-demo.gif" alt="CSR Demo — Setup, Search, and Hooks" width="800" />
|
|
22
22
|
|
|
@@ -166,7 +166,7 @@ No special syntax. No commands. CSR finds relevant past context and injects it a
|
|
|
166
166
|
</details>
|
|
167
167
|
|
|
168
168
|
<details>
|
|
169
|
-
<summary><strong>MCP Tools</strong> —
|
|
169
|
+
<summary><strong>MCP Tools</strong> — 15 annotated tools available to Claude</summary>
|
|
170
170
|
|
|
171
171
|
All tools include [MCP tool annotations](https://spec.modelcontextprotocol.io/specification/2025-11-05/server/tools/#annotations) so Claude Code understands their safety characteristics.
|
|
172
172
|
|
|
@@ -184,6 +184,9 @@ All tools include [MCP tool annotations](https://spec.modelcontextprotocol.io/sp
|
|
|
184
184
|
| `csr_get_more` | Paginate through additional results | read-only |
|
|
185
185
|
| `get_full_conversation` | Retrieve complete JSONL conversation | read-only |
|
|
186
186
|
| `get_session_learnings` | Iteration-level memory for Ralph loops | read-only |
|
|
187
|
+
| `csr_code_graph` | Which conversations shaped a function or file (AST anchors) | read-only |
|
|
188
|
+
| `csr_why` | Provenance chain — why does this code/decision exist | read-only |
|
|
189
|
+
| `csr_resolve` | Record verified verdicts (resolved/still_open/regressed) on chunks | **writes** |
|
|
187
190
|
|
|
188
191
|
</details>
|
|
189
192
|
|