@aistastudio/myc 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 +25 -9
- package/dist/myc.js +452 -426
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -31,7 +31,7 @@ Installation is one command:
|
|
|
31
31
|
|
|
32
32
|
```bash
|
|
33
33
|
bun install -g @aistastudio/myc # 3.20 MB, 10 files, no models pulled at install
|
|
34
|
-
myc --version # myc 0.3.
|
|
34
|
+
myc --version # myc 0.3.1 (schema 1)
|
|
35
35
|
```
|
|
36
36
|
|
|
37
37
|
The embedding model is **not** downloaded during install. Semantic search is
|
|
@@ -108,6 +108,22 @@ $ myc absorb-session --reason manual --transcript … --agent claude
|
|
|
108
108
|
ДАЛЬШЕ myc show sess-5jh8je4g050m · myc ready --claim
|
|
109
109
|
```
|
|
110
110
|
|
|
111
|
+
**A status line with what the agent cannot see.** `myc wire --status-line`
|
|
112
|
+
puts one line under Claude Code's prompt — the task queue, the code index, the
|
|
113
|
+
project's memory, and how many of this session's calls to myc actually returned
|
|
114
|
+
something:
|
|
115
|
+
|
|
116
|
+
```
|
|
117
|
+
myc │ 61 ready · 34 blocked │ 612 files · 4268 symbols · 1h ago │ 101 notes │ 600/653 useful calls
|
|
118
|
+
```
|
|
119
|
+
|
|
120
|
+
"Useful" is counted from the host's own transcript, not guessed: an error, a
|
|
121
|
+
refusal or an empty answer is a call, not a useful one. It is opt-in — `wire`
|
|
122
|
+
without the flag never touches `statusLine` — and it does not evict a line that
|
|
123
|
+
was there before: the previous command (a status line some other tool relies
|
|
124
|
+
on) keeps receiving the same input and is never waited on or killed. A render
|
|
125
|
+
took 34 ms at the median in the run of 2026-09-10.
|
|
126
|
+
|
|
111
127
|
**Memory is separated by session, and the separation is visible.** Every note
|
|
112
128
|
carries a reach: `session` (this conversation) or `project` (everyone). The
|
|
113
129
|
automatic context packet — `prime` — only carries the current session's notes;
|
|
@@ -155,20 +171,20 @@ is treated as absent.
|
|
|
155
171
|
## Roadmap
|
|
156
172
|
|
|
157
173
|
Numbers are closed/total subtasks per milestone (`myc show <epic-id>`), as of
|
|
158
|
-
2026-09-
|
|
174
|
+
2026-09-10. Done and not-done are shown the same way on purpose. Totals grow
|
|
159
175
|
when work uncovers work: M0 went 33 → 39 because measuring it found four real
|
|
160
176
|
defects, not because the plan changed.
|
|
161
177
|
|
|
162
178
|
| milestone | status |
|
|
163
179
|
|---|---|
|
|
164
|
-
| **M0** core and tasks |
|
|
180
|
+
| **M0** core and tasks | 40 / 43 |
|
|
165
181
|
| **M0.5** self-hosting (myc developed through myc) | **4 / 4 — closed** |
|
|
166
|
-
| **M1** memory |
|
|
167
|
-
| **M2** semantics |
|
|
168
|
-
| **M7** human interface (board, cards, threads, routing panel) |
|
|
169
|
-
| **M3** code intelligence |
|
|
182
|
+
| **M1** memory | 22 / 24 |
|
|
183
|
+
| **M2** semantics | 20 / 22 |
|
|
184
|
+
| **M7** human interface (board, cards, threads, routing panel, status line) | **15 / 15** |
|
|
185
|
+
| **M3** code intelligence | 6 / 10 |
|
|
170
186
|
| **M4** team: `myc serve`, ACL, network sync, Postgres, containers | 3 / 14 |
|
|
171
|
-
| **M5** swarm self-learning: routing by cost and outcome | 0 /
|
|
187
|
+
| **M5** swarm self-learning: routing by cost and outcome | 0 / 13 |
|
|
172
188
|
| **M6** distillation | 0 / 7 |
|
|
173
189
|
|
|
174
190
|
What that means in practice: **today myc is a single-user local tool over files
|
|
@@ -184,7 +200,7 @@ tree-sitter, with grammars fetched on demand rather than shipped (all 36 weigh
|
|
|
184
200
|
myc code symbol <name> where it is defined, and what knowledge is anchored there
|
|
185
201
|
myc callers <name> who calls it; --direction out, --depth all
|
|
186
202
|
myc code search "…" by meaning, when you do not know the name
|
|
187
|
-
myc code grep "<lit>" exhaustive,
|
|
203
|
+
myc code grep "<lit>" exhaustive, every occurrence; --in <path> narrows it
|
|
188
204
|
myc skeleton <file> the file's API — 26× cheaper than reading it
|
|
189
205
|
```
|
|
190
206
|
|