@mindrian_os/cli 2.0.0-beta.19 → 2.0.0-beta.23
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/CHANGELOG.md +23 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,26 @@
|
|
|
1
|
+
## [2.0.0-beta.23] - 2026-09-06
|
|
2
|
+
|
|
3
|
+
### Added
|
|
4
|
+
-
|
|
5
|
+
|
|
6
|
+
## [2.0.0-beta.21] - 2026-09-04
|
|
7
|
+
|
|
8
|
+
### Fixed
|
|
9
|
+
- `room_search` no longer skips every non-`.md` file in a room. `lib/mcp/tools/room.cjs`'s
|
|
10
|
+
file walk widened its allowlist to `.html` and `.htm` (grounded in the repo's own canonical
|
|
11
|
+
artifact extension list, `graph-backfill.cjs`'s `ARTIFACT_EXT`), so search now finds content
|
|
12
|
+
inside HTML briefs, rubrics, and decks that a room's own tools already generate. A new
|
|
13
|
+
dependency-free, line-preserving text pass strips markup before matching, so `<script>`,
|
|
14
|
+
`<style>`, and comment regions cannot produce a false hit, and the reported line number stays
|
|
15
|
+
correct against the source file. 22-check regression suite added
|
|
16
|
+
(`tests/test-room-search-html-blindness.cjs`).
|
|
17
|
+
- Filed, not fixed in this cut: the same root cause (a docblock in
|
|
18
|
+
`lib/core/doc-text-extractor.cjs` incorrectly claims the `cheerio` HTML parser is available;
|
|
19
|
+
it is in neither `package.json` nor `node_modules`) means `.html` room artifacts still
|
|
20
|
+
contribute no text to graph derivation, candidate production, or LazyGraph. Adding `cheerio`
|
|
21
|
+
is a dependency and release decision, tracked at
|
|
22
|
+
`.planning/debug/html-artifacts-invisible-to-graph-derivation.md`.
|
|
23
|
+
|
|
1
24
|
## [2.0.0-beta.19] - 2026-09-04
|
|
2
25
|
|
|
3
26
|
### Changed
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mindrian_os/cli",
|
|
3
|
-
"version": "2.0.0-beta.
|
|
3
|
+
"version": "2.0.0-beta.23",
|
|
4
4
|
"description": "Install MindrianOS into Claude Code with one command -- `npx @mindrian_os/cli`. Ships the MindrianOS plugin (Larry + PWS methodology + Data Room) plus a setup/diagnostics CLI (install/doctor/update).",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"mcp": "node bin/mindrian-mcp-server.cjs",
|