@aistastudio/myc 0.2.1 → 0.2.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/README.md +12 -9
- package/dist/myc.js +514 -407
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -27,19 +27,18 @@ Install Bun: https://bun.sh
|
|
|
27
27
|
|
|
28
28
|
## Install
|
|
29
29
|
|
|
30
|
-
|
|
31
|
-
from a tarball today, but nothing has been pushed to the registry yet:
|
|
30
|
+
Installation is one command:
|
|
32
31
|
|
|
33
32
|
```bash
|
|
34
|
-
bun install -g @aistastudio/myc # 3.
|
|
35
|
-
|
|
33
|
+
bun install -g @aistastudio/myc # 3.20 MB, 10 files, no models pulled at install
|
|
34
|
+
myc --version # myc 0.2.1 (schema 1)
|
|
36
35
|
```
|
|
37
36
|
|
|
38
37
|
The embedding model is **not** downloaded during install. Semantic search is
|
|
39
38
|
opt-in and explicit: `myc models fetch` (129 MB, ~7 s). Until then search is
|
|
40
39
|
lexical and says so.
|
|
41
40
|
|
|
42
|
-
|
|
41
|
+
To run the newest code instead of the published release, build from source:
|
|
43
42
|
|
|
44
43
|
```bash
|
|
45
44
|
git clone <repo> && cd myc
|
|
@@ -56,11 +55,12 @@ writing a config that silently won't start.
|
|
|
56
55
|
|
|
57
56
|
```bash
|
|
58
57
|
./dist/myc init # .myc/ + SQLite + migrations in this repo
|
|
59
|
-
./dist/myc wire # hooks for Claude Code / Codex / opencode
|
|
58
|
+
./dist/myc wire # hooks for Claude Code / Codex / opencode / Kimi
|
|
60
59
|
./dist/myc ready # what can be picked up right now
|
|
61
60
|
./dist/myc remember "why X, not Y" # record a fact or decision
|
|
62
61
|
./dist/myc recall "how retrieval works"
|
|
63
62
|
./dist/myc prime # session context packet (agents call it)
|
|
63
|
+
./dist/myc doctor # schema, counters, hooks — says "don't know" where it doesn't
|
|
64
64
|
```
|
|
65
65
|
|
|
66
66
|
Full command list: `./dist/myc --help`.
|
|
@@ -141,9 +141,12 @@ last-writer-wins over whole records.
|
|
|
141
141
|
889 ms: 796 tasks, 972 dependencies, 265 notes, 41 memories — with unknown
|
|
142
142
|
issue types carried over verbatim and named, and out-of-range priorities
|
|
143
143
|
clamped and named, instead of one odd row aborting the import. On that same
|
|
144
|
-
graph
|
|
145
|
-
|
|
146
|
-
|
|
144
|
+
graph both queues now return the same 152 tasks. They did not always: myc used
|
|
145
|
+
to offer 195 against beads' 144, because beads inherits blockers down the
|
|
146
|
+
parent chain and myc looked only at a task's own. Those 51 were inside a
|
|
147
|
+
still-blocked epic and beads was right to hide them; `memory-atcm254ry6c7` is
|
|
148
|
+
closed, `anc_blockers` is materialised by trigger, and the queue now says
|
|
149
|
+
`281 blocked (51 through an ancestor)` rather than quietly offering them.
|
|
147
150
|
|
|
148
151
|
**Guards are proved by mutation.** Every refusal and every invariant is
|
|
149
152
|
accompanied by a mutation that removes it; a guard whose removal breaks no test
|