@bonginkan/maria-lite 8.0.0 → 8.0.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 +70 -26
- package/dist/cli.cjs +4394 -3335
- package/dist/desktop-client.js +3 -3
- package/dist/ext.cjs +1 -1
- package/dist/ext.d.cts +2 -0
- package/origin/index.meta.json +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
MARIA-LITE (v8.0.
|
|
1
|
+
MARIA-LITE (v8.0.2)
|
|
2
2
|
===================
|
|
3
3
|
|
|
4
4
|
MARIA-LITE is a lightweight, standalone CLI build of MARIA OS focused on a smaller runtime surface while preserving API compatibility with `@bonginkan/maria`.
|
|
@@ -31,16 +31,16 @@ maria-lite /help
|
|
|
31
31
|
```
|
|
32
32
|
|
|
33
33
|
Notes:
|
|
34
|
-
-
|
|
34
|
+
- Commands apply by default (side effects enabled).
|
|
35
35
|
- Disable this behavior with `MARIA_LITE_IMPLICIT_APPLY=0`.
|
|
36
|
-
-
|
|
36
|
+
- Selected commands support `--plan-only` when you explicitly want a non-destructive preview.
|
|
37
37
|
- `maria-lite` (no args) starts the local GUI automatically (same as `/gui`).
|
|
38
38
|
- Disable this behavior with `MARIA_LITE_AUTO_GUI=0`.
|
|
39
39
|
- Dev commands that write files support grouped rollback checkpoints:
|
|
40
40
|
- List: `/rollback --list`
|
|
41
41
|
- Roll back latest: `/rollback`
|
|
42
42
|
- Roll back multiple (newest → that run): `/rollback --run <runId>`
|
|
43
|
-
- Clone commands write under `~/.maria/desktop/artifacts/<role>-clone/`
|
|
43
|
+
- Clone commands write under `~/.maria/desktop/artifacts/<role>-clone/` by default.
|
|
44
44
|
|
|
45
45
|
## Development (src-lite)
|
|
46
46
|
|
|
@@ -74,7 +74,7 @@ Examples:
|
|
|
74
74
|
Legacy `./artifacts/...` paths are treated as read fallbacks where supported, but new writes should land under `~/.maria/desktop/artifacts/...`.
|
|
75
75
|
|
|
76
76
|
## Version
|
|
77
|
-
This package is published as `8.0.
|
|
77
|
+
This package is published as `8.0.2`.
|
|
78
78
|
|
|
79
79
|
## Extensions (Enterprise)
|
|
80
80
|
|
|
@@ -100,22 +100,22 @@ Best-effort web research (with a clear no-web fallback when unavailable):
|
|
|
100
100
|
|
|
101
101
|
## Knowledge Packs (Lite)
|
|
102
102
|
|
|
103
|
-
Generate new knowledge packs by iteratively researching a topic (writes YAML + rebuilds `index.jsonl`
|
|
103
|
+
Generate new knowledge packs by iteratively researching a topic (writes YAML + rebuilds `index.jsonl` by default):
|
|
104
104
|
|
|
105
105
|
```shell
|
|
106
|
-
/kp-generate "Best practice for clean coding and well-organized OOP architecture using TypeScript"
|
|
106
|
+
/kp-generate "Best practice for clean coding and well-organized OOP architecture using TypeScript"
|
|
107
107
|
```
|
|
108
108
|
|
|
109
|
-
Update existing knowledge packs with minimal (diff-style) edits (writes YAML + rebuilds `index.jsonl`
|
|
109
|
+
Update existing knowledge packs with minimal (diff-style) edits (writes YAML + rebuilds `index.jsonl` by default):
|
|
110
110
|
|
|
111
111
|
```shell
|
|
112
|
-
/kp-update --
|
|
112
|
+
/kp-update --json
|
|
113
113
|
```
|
|
114
114
|
|
|
115
|
-
Synthesize new cross-domain memes/hypotheses by combining multiple NDC areas (writes YAML + rebuilds `index.jsonl`
|
|
115
|
+
Synthesize new cross-domain memes/hypotheses by combining multiple NDC areas (writes YAML + rebuilds `index.jsonl` by default):
|
|
116
116
|
|
|
117
117
|
```shell
|
|
118
|
-
/kp-synthesis --
|
|
118
|
+
/kp-synthesis --ndc 3 --pick 2 --json
|
|
119
119
|
```
|
|
120
120
|
|
|
121
121
|
## Universe (Lite)
|
|
@@ -164,10 +164,10 @@ MARIA-LITE now includes the first event-driven autonomous loop for `src-lite`.
|
|
|
164
164
|
Core commands:
|
|
165
165
|
|
|
166
166
|
```shell
|
|
167
|
-
/self-improve run --code --auto-fix
|
|
167
|
+
/self-improve run --code --auto-fix
|
|
168
168
|
/constitution review
|
|
169
169
|
/constitution drift
|
|
170
|
-
/goal-loop run --event-kind github.push --event-topic owner/repo --auto-fix
|
|
170
|
+
/goal-loop run --event-kind github.push --event-topic owner/repo --auto-fix
|
|
171
171
|
/events list --limit 20
|
|
172
172
|
/notification-router add-slack --name ops-slack --min-severity warn --target https://hooks.slack.com/services/...
|
|
173
173
|
```
|
|
@@ -177,7 +177,7 @@ Inbound / watcher commands:
|
|
|
177
177
|
```shell
|
|
178
178
|
/github-webhook setup --events "push,pull_request,issues"
|
|
179
179
|
/slack-webhook setup --events "app_mention,message"
|
|
180
|
-
/watch set --name repo-watch --paths "src-lite,maria-code-lp" --interval 30s --commands "/goal-loop run --event-kind fs.changed --auto-fix,/doctor"
|
|
180
|
+
/watch set --name repo-watch --paths "src-lite,maria-code-lp" --interval 30s --commands "/goal-loop run --event-kind fs.changed --auto-fix,/doctor"
|
|
181
181
|
/gmail watch sync --query "label:inbox newer_than:7d" --max 25
|
|
182
182
|
```
|
|
183
183
|
|
|
@@ -195,22 +195,22 @@ What this adds:
|
|
|
195
195
|
Planning examples:
|
|
196
196
|
|
|
197
197
|
```shell
|
|
198
|
-
/gtm brief "AI coding platform for enterprise engineering teams"
|
|
199
|
-
/gtm icp --in @docs/product-brief.md --market "Japan + US B2B SaaS"
|
|
200
|
-
/gtm sequence "Vertical AI copilot for support teams" --channels "email,linkedin,partner"
|
|
198
|
+
/gtm brief "AI coding platform for enterprise engineering teams"
|
|
199
|
+
/gtm icp --in @docs/product-brief.md --market "Japan + US B2B SaaS"
|
|
200
|
+
/gtm sequence "Vertical AI copilot for support teams" --channels "email,linkedin,partner"
|
|
201
201
|
```
|
|
202
202
|
|
|
203
203
|
Operational examples:
|
|
204
204
|
|
|
205
205
|
```shell
|
|
206
206
|
/gtm ingest --lead "{\"email\":\"cto@example.com\",\"company\":\"Example\",\"signals\":[\"funding\",\"ai\"]}"
|
|
207
|
-
/gtm ingest --source gmail --query "label:inbox newer_than:14d" --max 25
|
|
207
|
+
/gtm ingest --source gmail --query "label:inbox newer_than:14d" --max 25
|
|
208
208
|
/gtm leads
|
|
209
209
|
/gtm pipeline
|
|
210
|
-
/gtm toolkit
|
|
211
|
-
/gtm autopilot --dispatch email
|
|
212
|
-
/gtm proposal --lead <leadId> --amount-usd 5000
|
|
213
|
-
/gtm invoice --lead <leadId> --amount-usd 5000
|
|
210
|
+
/gtm toolkit
|
|
211
|
+
/gtm autopilot --dispatch email
|
|
212
|
+
/gtm proposal --lead <leadId> --amount-usd 5000
|
|
213
|
+
/gtm invoice --lead <leadId> --amount-usd 5000
|
|
214
214
|
/gtm stage --lead <leadId> --status replied
|
|
215
215
|
```
|
|
216
216
|
|
|
@@ -231,6 +231,50 @@ When `src-lite` runs as the server-side MARIA OS Lite runtime (for example behin
|
|
|
231
231
|
|
|
232
232
|
## Release Notes
|
|
233
233
|
|
|
234
|
+
### v8.0.2 (2026/03)
|
|
235
|
+
|
|
236
|
+
#### Features
|
|
237
|
+
|
|
238
|
+
- /vup: release notes now use deterministic, scope-based summaries from changed paths.
|
|
239
|
+
- /vup: scope bullets now describe what changed (e.g., command entrypoint vs helpers).
|
|
240
|
+
- /blog: auto-detect changed paths from git name-only sources to drive release summaries.
|
|
241
|
+
- /blog: inject a 'What Changed' section when deterministic update signals are available.
|
|
242
|
+
- /blog: add deterministic scope + digest summaries into blog sources for traceable drafts.
|
|
243
|
+
|
|
244
|
+
#### Bug fixes
|
|
245
|
+
|
|
246
|
+
- /blog: normalize path separators and de-duplicate paths for stable change detection.
|
|
247
|
+
- /blog: ignore non-path git summary lines when extracting changed files.
|
|
248
|
+
|
|
249
|
+
---
|
|
250
|
+
|
|
251
|
+
### v8.0.1 (2026/03)
|
|
252
|
+
|
|
253
|
+
#### Features
|
|
254
|
+
|
|
255
|
+
- /auto-dev: Adds preview mode; use --plan-only to preview generation.
|
|
256
|
+
- /auto-dev: Updates guidance to write files by removing --plan-only.
|
|
257
|
+
- /blog: Now applies by default; removes the need for --apply in common flows.
|
|
258
|
+
- /blog: Updates /blog generate and /blog sync help to reflect default apply.
|
|
259
|
+
- /bulk-register: Now applies by default; use --plan-only to preview safely.
|
|
260
|
+
- /bulk-register: Adds preview support and clearer post-run next steps.
|
|
261
|
+
- /code: Now applies by default; use --plan-only for no-write previews.
|
|
262
|
+
- /code: Accepts absolute paths and ~ paths in --files and inline refs.
|
|
263
|
+
- /code: Can derive workspace root from provided target file paths.
|
|
264
|
+
- /code: Supports --workspace as relative or absolute path, even outside git repos.
|
|
265
|
+
- /code: Rejects edits outside the selected workspace with clearer guidance.
|
|
266
|
+
- /vup: Generates more command-centric release notes with fuller change coverage.
|
|
267
|
+
|
|
268
|
+
#### Bug fixes
|
|
269
|
+
|
|
270
|
+
- /code: More reliable path parsing, including bare filenames with extensions.
|
|
271
|
+
- /code: Better errors when workspace cannot be inferred from mixed target paths.
|
|
272
|
+
- /code: Improved guidance for missing workspaces and when to use --new-workspace.
|
|
273
|
+
- /blog: Fixes confusing dry-run messaging now that applies by default.
|
|
274
|
+
- /bulk-register: Avoids accidental non-action runs by aligning defaults with help text.
|
|
275
|
+
|
|
276
|
+
---
|
|
277
|
+
|
|
234
278
|
### v8.0.0 (2026/03)
|
|
235
279
|
|
|
236
280
|
#### Features
|
|
@@ -349,7 +393,7 @@ When `src-lite` runs as the server-side MARIA OS Lite runtime (for example behin
|
|
|
349
393
|
|
|
350
394
|
#### Features
|
|
351
395
|
|
|
352
|
-
- Add /vup push to commit, tag, and push after /vup
|
|
396
|
+
- Add /vup push to commit, tag, and push after /vup.
|
|
353
397
|
- /vup help now documents the new push step in the version bump flow.
|
|
354
398
|
|
|
355
399
|
#### Bug fixes
|
|
@@ -642,7 +686,7 @@ When `src-lite` runs as the server-side MARIA OS Lite runtime (for example behin
|
|
|
642
686
|
- /desktop supports parallel command execution and drag-and-drop file attachments.
|
|
643
687
|
- /desktop adds flags for host/port, auto-open control, and JSON output.
|
|
644
688
|
- New /spreadsheet command to generate spreadsheets from files or prompts.
|
|
645
|
-
- /spreadsheet can export per-sheet CSV and optional PDF, with apply
|
|
689
|
+
- /spreadsheet can export per-sheet CSV and optional PDF, with default-apply execution and optional `--plan-only` preview.
|
|
646
690
|
- Expanded knowledge packs for safer self-recognition and identity-related guidance.
|
|
647
691
|
|
|
648
692
|
#### Bug fixes
|
|
@@ -678,7 +722,7 @@ When `src-lite` runs as the server-side MARIA OS Lite runtime (for example behin
|
|
|
678
722
|
|
|
679
723
|
- New /manga command to generate 4-panel or multi-page manga with saved artifacts.
|
|
680
724
|
- /manga supports --type, --pages, --mode, --color, --size, --format, --seed, --model, --out.
|
|
681
|
-
- New /music command (beta) with BPM, time signature, key, and
|
|
725
|
+
- New /music command (beta) with BPM, time signature, key, and default-apply workflow.
|
|
682
726
|
- New /slides command for creating slide-style outputs.
|
|
683
727
|
- Expanded knowledge packs for compliance, biometrics, and clinical safety guidance.
|
|
684
728
|
|
|
@@ -758,7 +802,7 @@ When `src-lite` runs as the server-side MARIA OS Lite runtime (for example behin
|
|
|
758
802
|
|
|
759
803
|
- New /rollback to undo runs; list history, pick by run ID, or count
|
|
760
804
|
- Auto rollback checkpoints in /code, /auto-dev, and /evolve for safe apply
|
|
761
|
-
- Commands supporting
|
|
805
|
+
- Commands supporting apply now run by default; use `--plan-only` to preview, or set env to turn it off (see the NOTES above)
|
|
762
806
|
- /gui runs by default; set env to turn it off (see the NOTES above)
|
|
763
807
|
- Expanded Japan-focused knowledge packs: business, legal, history, SME ops
|
|
764
808
|
- NDC-sharded indices speed up knowledge search and /kp-sync
|