@hasna/loops 0.3.25 → 0.3.27
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 +10 -0
- package/dist/cli/index.js +728 -95
- package/dist/daemon/index.js +50 -1
- package/dist/index.js +337 -24
- package/dist/lib/store.d.ts +1 -0
- package/dist/lib/store.js +49 -0
- package/dist/lib/templates.d.ts +16 -1
- package/dist/sdk/index.js +49 -0
- package/dist/types.d.ts +22 -0
- package/docs/USAGE.md +62 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -318,6 +318,16 @@ mutating path: it upserts deduped Todos tasks for failed expectations and marks
|
|
|
318
318
|
them with `no_tmux_dispatch=true` metadata. Use `--dry-run --json` before
|
|
319
319
|
turning it into a production loop.
|
|
320
320
|
|
|
321
|
+
Add `--evidence-dir <dir>` to `health route-tasks` or `hygiene route-tasks`
|
|
322
|
+
when the deterministic loop should write a durable JSON heartbeat/report in
|
|
323
|
+
addition to loop stdout. Add `--auto-route` only for task lists that are
|
|
324
|
+
intentionally connected to task-created worker/verifier automation; it appends
|
|
325
|
+
`auto:route`, sets route metadata, and lets OpenTodos/OpenEvents trigger the
|
|
326
|
+
existing headless workflow path when the finding has a cwd or
|
|
327
|
+
`--route-project-path` is provided. Findings with no routeable working
|
|
328
|
+
directory stay as tasks and record an `auto_route_skipped_reason`. Without
|
|
329
|
+
`--auto-route`, the command only creates or updates deduped tasks.
|
|
330
|
+
|
|
321
331
|
`hygiene names` reports canonical `machine-*` or `repo-<name>-*` loop names and
|
|
322
332
|
renames only with `--apply`. Apply mode writes a SQLite backup under
|
|
323
333
|
`<LOOPS_DATA_DIR>/backups` before changing loop names. `hygiene duplicates`
|