@hasna/todos 0.11.41 → 0.11.42
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 +20 -0
- package/dist/cli/commands/project-commands.d.ts.map +1 -1
- package/dist/cli/index.js +741 -141
- package/dist/cli-mcp-parity.d.ts.map +1 -1
- package/dist/contracts.js +73 -6
- package/dist/db/migrations.d.ts.map +1 -1
- package/dist/db/schema.d.ts.map +1 -1
- package/dist/index.d.ts +2 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +519 -103
- package/dist/json-contracts.d.ts.map +1 -1
- package/dist/lib/local-bridge.d.ts +2 -0
- package/dist/lib/local-bridge.d.ts.map +1 -1
- package/dist/lib/saved-search-views.d.ts +60 -0
- package/dist/lib/saved-search-views.d.ts.map +1 -0
- package/dist/lib/todos-md.d.ts.map +1 -1
- package/dist/mcp/index.js +544 -96
- package/dist/mcp/token-utils.d.ts.map +1 -1
- package/dist/mcp/tools/task-meta-tools.d.ts.map +1 -1
- package/dist/mcp/tools/task-project-tools.d.ts.map +1 -1
- package/dist/mcp.js +4 -0
- package/dist/registry.js +86 -7
- package/dist/release-provenance.json +3 -3
- package/dist/server/index.js +24 -0
- package/dist/storage.js +24 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -385,6 +385,26 @@ for existing filters, and the metadata is included in local bridge exports.
|
|
|
385
385
|
MCP clients use `get_task_fields`, `set_task_fields`, and
|
|
386
386
|
`query_tasks_by_fields` for the same local-only workflow.
|
|
387
387
|
|
|
388
|
+
## Local Saved Search Views
|
|
389
|
+
|
|
390
|
+
Saved views are local SQLite records for repeatable task, project, plan, run,
|
|
391
|
+
comment, and cross-entity searches. They can filter by query text, project,
|
|
392
|
+
task list, plan, task, status, priority, assignee, agent, tags, local fields,
|
|
393
|
+
dependency direction, and time windows:
|
|
394
|
+
|
|
395
|
+
```bash
|
|
396
|
+
todos views save active-cli --query parser --status pending,in_progress --tag cli --field-area parser --json
|
|
397
|
+
todos views list --json
|
|
398
|
+
todos views run active-cli --json
|
|
399
|
+
todos search parser --scope all --limit 50 --json
|
|
400
|
+
```
|
|
401
|
+
|
|
402
|
+
View output is stable JSON with `{ view, scope, filters, count, results }`.
|
|
403
|
+
Local bridge exports include saved views, so explicit backups and machine moves
|
|
404
|
+
preserve the filters without any hosted service. MCP clients use
|
|
405
|
+
`save_search_view`, `list_search_views`, `run_search_view`, and
|
|
406
|
+
`delete_search_view`.
|
|
407
|
+
|
|
388
408
|
## Local Duplicate Detection
|
|
389
409
|
|
|
390
410
|
Agents can scan local tasks for likely duplicates from imported issue URLs,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"project-commands.d.ts","sourceRoot":"","sources":["../../../src/cli/commands/project-commands.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;
|
|
1
|
+
{"version":3,"file":"project-commands.d.ts","sourceRoot":"","sources":["../../../src/cli/commands/project-commands.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AAoFzC,wBAAgB,uBAAuB,CAAC,OAAO,EAAE,OAAO,QAuuBvD"}
|