@aistastudio/myc 0.3.7 → 0.3.9
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 +26 -3
- package/dist/myc.js +629 -558
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -37,8 +37,8 @@ Install Bun: https://bun.sh
|
|
|
37
37
|
Installation is one command:
|
|
38
38
|
|
|
39
39
|
```bash
|
|
40
|
-
bun install -g @aistastudio/myc # 3.
|
|
41
|
-
myc --version # myc 0.3.
|
|
40
|
+
bun install -g @aistastudio/myc # 3.41 MB compressed, 12.57 MB unpacked, 13 files; no models pulled
|
|
41
|
+
myc --version # myc 0.3.9 (schema 1)
|
|
42
42
|
```
|
|
43
43
|
|
|
44
44
|
It runs on macOS and Linux. On Windows, use WSL and install Bun and myc inside
|
|
@@ -350,6 +350,29 @@ episode sess-5jh8je4g050m saved (265 B)
|
|
|
350
350
|
NEXT myc show sess-5jh8je4g050m · myc ready --claim
|
|
351
351
|
```
|
|
352
352
|
|
|
353
|
+
**Decisions pulled from a compaction are candidates, not facts.** The same hook
|
|
354
|
+
lifts "we decided / because" lines out of the transcript and stores them as
|
|
355
|
+
candidates (`state pending_review`); recall, search, prime and MCP do not
|
|
356
|
+
return them until someone confirms. `prime` names them in its footer —
|
|
357
|
+
`N pending review hidden — myc review` — and `myc review` lists them, this
|
|
358
|
+
session's first, for a person or an agent to settle. Confirming makes the
|
|
359
|
+
candidate knowledge the way a new note is born (embedding and absorb
|
|
360
|
+
classification queued); rejecting retracts it with the reason kept in the node.
|
|
361
|
+
An agent does the same through MCP: `myc_ready` with `review` lists,
|
|
362
|
+
`myc_update` with `confirm` or `reject` settles; the web knowledge base puts
|
|
363
|
+
the two buttons on the candidate's row.
|
|
364
|
+
|
|
365
|
+
```
|
|
366
|
+
$ myc review
|
|
367
|
+
PENDING REVIEW 2 · 1 in this session's prime · 1 from other sessions · session 3f9c21aa
|
|
368
|
+
$ myc review confirm memory-6k2x…
|
|
369
|
+
$ myc review reject memory-9x1q… --reason "restates the task, not a decision"
|
|
370
|
+
```
|
|
371
|
+
|
|
372
|
+
A retracted note — a rejected candidate among them — is out of every retrieval
|
|
373
|
+
path, not only replaced versions: superseded, retracted and cancelled are one
|
|
374
|
+
list shared by recall, prime and the status line.
|
|
375
|
+
|
|
353
376
|
**A status line with what the agent cannot see.** `myc wire --status-line`
|
|
354
377
|
puts one line under Claude Code's prompt — how full the context is, the task
|
|
355
378
|
queue, the code index, the project's memory, and how many of this session's
|
|
@@ -401,7 +424,7 @@ last-writer-wins over whole records.
|
|
|
401
424
|
|
|
402
425
|
**Guards are proved by mutation.** Every refusal and every invariant is
|
|
403
426
|
accompanied by a mutation that removes it; a guard whose removal breaks no test
|
|
404
|
-
is treated as absent. The full suite:
|
|
427
|
+
is treated as absent. The full suite: 3625 pass / 0 fail / 16 skip
|
|
405
428
|
(`bun test`, 2026-09-11).
|
|
406
429
|
|
|
407
430
|
## What myc does
|