@mmnto/cli 1.89.0 → 1.91.0
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 +34 -0
- package/dist/commands/ecl-gc.d.ts +304 -0
- package/dist/commands/ecl-gc.d.ts.map +1 -0
- package/dist/commands/ecl-gc.js +629 -0
- package/dist/commands/ecl-gc.js.map +1 -0
- package/dist/commands/ecl-gc.test.d.ts +12 -0
- package/dist/commands/ecl-gc.test.d.ts.map +1 -0
- package/dist/commands/ecl-gc.test.js +765 -0
- package/dist/commands/ecl-gc.test.js.map +1 -0
- package/dist/commands/init-templates.d.ts.map +1 -1
- package/dist/commands/init-templates.js +5 -1
- package/dist/commands/init-templates.js.map +1 -1
- package/dist/commands/init.test.js +18 -0
- package/dist/commands/init.test.js.map +1 -1
- package/dist/commands/mail.d.ts +32 -2
- package/dist/commands/mail.d.ts.map +1 -1
- package/dist/commands/mail.js +49 -6
- package/dist/commands/mail.js.map +1 -1
- package/dist/commands/mail.test.js +215 -3
- package/dist/commands/mail.test.js.map +1 -1
- package/dist/index.js +86 -1
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Tests for `totem ecl-gc` (mmnto-ai/totem#2279; parent mmnto-ai/totem-strategy#700).
|
|
3
|
+
*
|
|
4
|
+
* Filesystem-driven with an injected clock: every test builds a fresh
|
|
5
|
+
* `<tmp>/.totem/orchestration/<agent>/outbox/` tree, exercises `eclGc`, and
|
|
6
|
+
* asserts on the structured `EclGcResult` AND on the on-disk aftermath (which
|
|
7
|
+
* files survived). The safety rows (peer immunity, non-outbox trees untouched,
|
|
8
|
+
* ambiguity-throws-before-deletion, exact-boundary retention) are written to
|
|
9
|
+
* FAIL if their guard were removed — see the per-test non-vacuity notes.
|
|
10
|
+
*/
|
|
11
|
+
export {};
|
|
12
|
+
//# sourceMappingURL=ecl-gc.test.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ecl-gc.test.d.ts","sourceRoot":"","sources":["../../src/commands/ecl-gc.test.ts"],"names":[],"mappings":"AAAA;;;;;;;;;GASG"}
|