@titan-design/active-work 0.5.0 → 0.6.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/dist/cli.js +947 -741
- package/dist/cli.js.map +1 -1
- package/docs/cli-reference.md +21 -0
- package/package.json +6 -5
package/docs/cli-reference.md
CHANGED
|
@@ -75,6 +75,9 @@ Commands:
|
|
|
75
75
|
resume <session_id> Resolve the working directory a Claude session
|
|
76
76
|
id belongs to, so `claude --resume` can be run
|
|
77
77
|
from the right place.
|
|
78
|
+
search [options] <query> Search every initiative at once: notes, briefs,
|
|
79
|
+
sources, tasks, session records and mined
|
|
80
|
+
transcripts.
|
|
78
81
|
session session commands
|
|
79
82
|
sessions [options] Browse recent Claude sessions discovered under
|
|
80
83
|
~/.claude/projects.
|
|
@@ -714,6 +717,24 @@ Options:
|
|
|
714
717
|
-h, --help display help for command
|
|
715
718
|
```
|
|
716
719
|
|
|
720
|
+
## active-work search
|
|
721
|
+
|
|
722
|
+
```
|
|
723
|
+
Usage: active-work search [options] <query>
|
|
724
|
+
|
|
725
|
+
Search every initiative at once: notes, briefs, sources, tasks, session records
|
|
726
|
+
and mined transcripts.
|
|
727
|
+
|
|
728
|
+
Arguments:
|
|
729
|
+
query query (string)
|
|
730
|
+
|
|
731
|
+
Options:
|
|
732
|
+
--limit <value> How many results to return (default 10)
|
|
733
|
+
--initiative <value> Bias towards this initiative. A boost, never a filter —
|
|
734
|
+
foreign hits still rank.
|
|
735
|
+
-h, --help display help for command
|
|
736
|
+
```
|
|
737
|
+
|
|
717
738
|
## active-work session list
|
|
718
739
|
|
|
719
740
|
```
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@titan-design/active-work",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.6.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Durable workspace state for engineering work — CLI, MCP, and Claude skill for tracking initiatives across sessions",
|
|
6
6
|
"license": "MIT",
|
|
@@ -87,11 +87,12 @@
|
|
|
87
87
|
"@modelcontextprotocol/sdk": "^1.29.0",
|
|
88
88
|
"@titan-design/cluster": "^0.1.0",
|
|
89
89
|
"@titan-design/daemon": "^0.1.2",
|
|
90
|
-
"@titan-design/locator": "^0.
|
|
90
|
+
"@titan-design/locator": "^0.2.0",
|
|
91
91
|
"@titan-design/registry": "^0.1.0",
|
|
92
|
-
"@titan-design/
|
|
93
|
-
"@titan-design/session-
|
|
94
|
-
"@titan-design/
|
|
92
|
+
"@titan-design/retrieval": "0.2.0",
|
|
93
|
+
"@titan-design/session-graph": "^0.3.2",
|
|
94
|
+
"@titan-design/session-read": "^0.2.1",
|
|
95
|
+
"@titan-design/store-sqlite": "^0.2.0",
|
|
95
96
|
"better-sqlite3": "^13.0.2",
|
|
96
97
|
"commander": "^14.0.3",
|
|
97
98
|
"env-paths": "^4.0.0",
|