threadnote 0.3.0 → 0.3.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 +6 -5
- package/dist/mcp_server.cjs +594 -407
- package/dist/threadnote.cjs +4257 -4226
- package/docs/agent-instructions.md +7 -2
- package/docs/troubleshooting.md +12 -0
- package/package.json +16 -4
package/README.md
CHANGED
|
@@ -174,6 +174,9 @@ This is it! Start working with your agents as usual. The agent will automaticall
|
|
|
174
174
|
|
|
175
175
|
## Source Checkout
|
|
176
176
|
|
|
177
|
+
TypeScript sources live under `src/`; `src/threadnote.ts` is the CLI entrypoint and `src/mcp_server.ts` is the stdio MCP
|
|
178
|
+
adapter entrypoint.
|
|
179
|
+
|
|
177
180
|
For local development from this repo:
|
|
178
181
|
|
|
179
182
|
```bash
|
|
@@ -225,9 +228,6 @@ only occurs when another process already owns the same host and port. If that ha
|
|
|
225
228
|
See `docs/migration.md` for switching an existing repo workflow to `threadnote` without deleting canonical
|
|
226
229
|
`AGENTS.md`, `CLAUDE.md`, `.claude/`, or `.agents/` files.
|
|
227
230
|
|
|
228
|
-
See `docs/demo.md` for an engineer-facing demo script that shows recall, read, remember, handoff, and repair across
|
|
229
|
-
agents or worktrees.
|
|
230
|
-
|
|
231
231
|
See `docs/agent-instructions.md` for the user-level agent guidance installed by `threadnote install`.
|
|
232
232
|
|
|
233
233
|
## Recall And Read
|
|
@@ -241,5 +241,6 @@ threadnote read viking://agent/threadnote/memories/.abstract.md
|
|
|
241
241
|
threadnote list viking://agent/threadnote/memories --all --recursive
|
|
242
242
|
```
|
|
243
243
|
|
|
244
|
-
When MCP is installed, the agent should use
|
|
245
|
-
|
|
244
|
+
When MCP is installed, the agent should use Threadnote MCP `recall_context`, then `read_context` or `list_context`.
|
|
245
|
+
Agents must pass JSON arguments, for example `recall_context({"query":"agent context"})`. Older adapters expose
|
|
246
|
+
`search`, `read`, and `list` aliases. The CLI commands are the fallback path.
|