@titan-design/active-work 0.5.0 → 0.7.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/aw.js +1 -1
- package/dist/{chunk-RLSQSE7I.js → chunk-KAR6NOS2.js} +306 -50
- package/dist/chunk-KAR6NOS2.js.map +1 -0
- package/dist/cli.js +717 -637
- package/dist/cli.js.map +1 -1
- package/docs/cli-reference.md +25 -0
- package/package.json +6 -5
- package/dist/chunk-RLSQSE7I.js.map +0 -1
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.
|
|
@@ -603,6 +606,8 @@ Options:
|
|
|
603
606
|
given (default: current directory).
|
|
604
607
|
--pick Always return the picker list; skip resolving the
|
|
605
608
|
initiative from the current directory.
|
|
609
|
+
--about <value> What this session is about, ranking the notes against it
|
|
610
|
+
instead of the top task and brief titles.
|
|
606
611
|
--adhoc Frame the prompt as ad-hoc work on the workstream
|
|
607
612
|
(awaiting the user’s task), not a continuation of the
|
|
608
613
|
handoff / top task.
|
|
@@ -679,6 +684,8 @@ Options:
|
|
|
679
684
|
--adhoc Frame the prompt as ad-hoc work on the workstream,
|
|
680
685
|
awaiting the user’s task, not a continuation of the
|
|
681
686
|
handoff / top task.
|
|
687
|
+
--about <value> What this session is about, ranking the notes against it
|
|
688
|
+
instead of the top task and brief titles.
|
|
682
689
|
--no-sibling-check Skip the check for another session already live on this
|
|
683
690
|
initiative.
|
|
684
691
|
-h, --help display help for command
|
|
@@ -714,6 +721,24 @@ Options:
|
|
|
714
721
|
-h, --help display help for command
|
|
715
722
|
```
|
|
716
723
|
|
|
724
|
+
## active-work search
|
|
725
|
+
|
|
726
|
+
```
|
|
727
|
+
Usage: active-work search [options] <query>
|
|
728
|
+
|
|
729
|
+
Search every initiative at once: notes, briefs, sources, tasks, session records
|
|
730
|
+
and mined transcripts.
|
|
731
|
+
|
|
732
|
+
Arguments:
|
|
733
|
+
query query (string)
|
|
734
|
+
|
|
735
|
+
Options:
|
|
736
|
+
--limit <value> How many results to return (default 10)
|
|
737
|
+
--initiative <value> Bias towards this initiative. A boost, never a filter —
|
|
738
|
+
foreign hits still rank.
|
|
739
|
+
-h, --help display help for command
|
|
740
|
+
```
|
|
741
|
+
|
|
717
742
|
## active-work session list
|
|
718
743
|
|
|
719
744
|
```
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@titan-design/active-work",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.7.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",
|