grov 0.1.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/LICENSE +190 -0
- package/README.md +211 -0
- package/dist/cli.d.ts +2 -0
- package/dist/cli.js +106 -0
- package/dist/commands/capture.d.ts +6 -0
- package/dist/commands/capture.js +324 -0
- package/dist/commands/drift-test.d.ts +7 -0
- package/dist/commands/drift-test.js +177 -0
- package/dist/commands/init.d.ts +1 -0
- package/dist/commands/init.js +27 -0
- package/dist/commands/inject.d.ts +5 -0
- package/dist/commands/inject.js +88 -0
- package/dist/commands/prompt-inject.d.ts +4 -0
- package/dist/commands/prompt-inject.js +451 -0
- package/dist/commands/status.d.ts +5 -0
- package/dist/commands/status.js +51 -0
- package/dist/commands/unregister.d.ts +1 -0
- package/dist/commands/unregister.js +22 -0
- package/dist/lib/anchor-extractor.d.ts +30 -0
- package/dist/lib/anchor-extractor.js +296 -0
- package/dist/lib/correction-builder.d.ts +10 -0
- package/dist/lib/correction-builder.js +226 -0
- package/dist/lib/debug.d.ts +24 -0
- package/dist/lib/debug.js +34 -0
- package/dist/lib/drift-checker.d.ts +66 -0
- package/dist/lib/drift-checker.js +341 -0
- package/dist/lib/hooks.d.ts +27 -0
- package/dist/lib/hooks.js +258 -0
- package/dist/lib/jsonl-parser.d.ts +87 -0
- package/dist/lib/jsonl-parser.js +281 -0
- package/dist/lib/llm-extractor.d.ts +50 -0
- package/dist/lib/llm-extractor.js +408 -0
- package/dist/lib/session-parser.d.ts +44 -0
- package/dist/lib/session-parser.js +256 -0
- package/dist/lib/store.d.ts +248 -0
- package/dist/lib/store.js +793 -0
- package/dist/lib/utils.d.ts +31 -0
- package/dist/lib/utils.js +76 -0
- package/package.json +67 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,190 @@
|
|
|
1
|
+
Apache License
|
|
2
|
+
Version 2.0, January 2004
|
|
3
|
+
http://www.apache.org/licenses/
|
|
4
|
+
|
|
5
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
6
|
+
|
|
7
|
+
1. Definitions.
|
|
8
|
+
|
|
9
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
10
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
11
|
+
|
|
12
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
13
|
+
the copyright owner that is granting the License.
|
|
14
|
+
|
|
15
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
16
|
+
other entities that control, are controlled by, or are under common
|
|
17
|
+
control with that entity. For the purposes of this definition,
|
|
18
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
19
|
+
direction or management of such entity, whether by contract or
|
|
20
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
21
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
22
|
+
|
|
23
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
24
|
+
exercising permissions granted by this License.
|
|
25
|
+
|
|
26
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
27
|
+
including but not limited to software source code, documentation
|
|
28
|
+
source, and configuration files.
|
|
29
|
+
|
|
30
|
+
"Object" form shall mean any form resulting from mechanical
|
|
31
|
+
transformation or translation of a Source form, including but
|
|
32
|
+
not limited to compiled object code, generated documentation,
|
|
33
|
+
and conversions to other media types.
|
|
34
|
+
|
|
35
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
36
|
+
Object form, made available under the License, as indicated by a
|
|
37
|
+
copyright notice that is included in or attached to the work
|
|
38
|
+
(an example is provided in the Appendix below).
|
|
39
|
+
|
|
40
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
41
|
+
form, that is based on (or derived from) the Work and for which the
|
|
42
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
43
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
44
|
+
of this License, Derivative Works shall not include works that remain
|
|
45
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
46
|
+
the Work and Derivative Works thereof.
|
|
47
|
+
|
|
48
|
+
"Contribution" shall mean any work of authorship, including
|
|
49
|
+
the original version of the Work and any modifications or additions
|
|
50
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
51
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
52
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
53
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
54
|
+
means any form of electronic, verbal, or written communication sent
|
|
55
|
+
to the Licensor or its representatives, including but not limited to
|
|
56
|
+
communication on electronic mailing lists, source code control systems,
|
|
57
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
58
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
59
|
+
excluding communication that is conspicuously marked or otherwise
|
|
60
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
61
|
+
|
|
62
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
63
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
64
|
+
subsequently incorporated within the Work.
|
|
65
|
+
|
|
66
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
67
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
68
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
69
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
70
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
71
|
+
Work and such Derivative Works in Source or Object form.
|
|
72
|
+
|
|
73
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
74
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
75
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
76
|
+
(except as stated in this section) patent license to make, have made,
|
|
77
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
78
|
+
where such license applies only to those patent claims licensable
|
|
79
|
+
by such Contributor that are necessarily infringed by their
|
|
80
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
81
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
82
|
+
institute patent litigation against any entity (including a
|
|
83
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
84
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
85
|
+
or contributory patent infringement, then any patent licenses
|
|
86
|
+
granted to You under this License for that Work shall terminate
|
|
87
|
+
as of the date such litigation is filed.
|
|
88
|
+
|
|
89
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
90
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
91
|
+
modifications, and in Source or Object form, provided that You
|
|
92
|
+
meet the following conditions:
|
|
93
|
+
|
|
94
|
+
(a) You must give any other recipients of the Work or
|
|
95
|
+
Derivative Works a copy of this License; and
|
|
96
|
+
|
|
97
|
+
(b) You must cause any modified files to carry prominent notices
|
|
98
|
+
stating that You changed the files; and
|
|
99
|
+
|
|
100
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
101
|
+
that You distribute, all copyright, patent, trademark, and
|
|
102
|
+
attribution notices from the Source form of the Work,
|
|
103
|
+
excluding those notices that do not pertain to any part of
|
|
104
|
+
the Derivative Works; and
|
|
105
|
+
|
|
106
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
107
|
+
distribution, then any Derivative Works that You distribute must
|
|
108
|
+
include a readable copy of the attribution notices contained
|
|
109
|
+
within such NOTICE file, excluding those notices that do not
|
|
110
|
+
pertain to any part of the Derivative Works, in at least one
|
|
111
|
+
of the following places: within a NOTICE text file distributed
|
|
112
|
+
as part of the Derivative Works; within the Source form or
|
|
113
|
+
documentation, if provided along with the Derivative Works; or,
|
|
114
|
+
within a display generated by the Derivative Works, if and
|
|
115
|
+
wherever such third-party notices normally appear. The contents
|
|
116
|
+
of the NOTICE file are for informational purposes only and
|
|
117
|
+
do not modify the License. You may add Your own attribution
|
|
118
|
+
notices within Derivative Works that You distribute, alongside
|
|
119
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
120
|
+
that such additional attribution notices cannot be construed
|
|
121
|
+
as modifying the License.
|
|
122
|
+
|
|
123
|
+
You may add Your own copyright statement to Your modifications and
|
|
124
|
+
may provide additional or different license terms and conditions
|
|
125
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
126
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
127
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
128
|
+
the conditions stated in this License.
|
|
129
|
+
|
|
130
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
131
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
132
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
133
|
+
this License, without any additional terms or conditions.
|
|
134
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
135
|
+
the terms of any separate license agreement you may have executed
|
|
136
|
+
with Licensor regarding such Contributions.
|
|
137
|
+
|
|
138
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
139
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
140
|
+
except as required for reasonable and customary use in describing the
|
|
141
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
142
|
+
|
|
143
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
144
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
145
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
146
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
147
|
+
implied, including, without limitation, any warranties or conditions
|
|
148
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
149
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
150
|
+
appropriateness of using or redistributing the Work and assume any
|
|
151
|
+
risks associated with Your exercise of permissions under this License.
|
|
152
|
+
|
|
153
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
154
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
155
|
+
unless required by applicable law (such as deliberate and grossly
|
|
156
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
157
|
+
liable to You for damages, including any direct, indirect, special,
|
|
158
|
+
incidental, or consequential damages of any character arising as a
|
|
159
|
+
result of this License or out of the use or inability to use the
|
|
160
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
161
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
162
|
+
other commercial damages or losses), even if such Contributor
|
|
163
|
+
has been advised of the possibility of such damages.
|
|
164
|
+
|
|
165
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
166
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
167
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
168
|
+
or other liability obligations and/or rights consistent with this
|
|
169
|
+
License. However, in accepting such obligations, You may act only
|
|
170
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
171
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
172
|
+
defend, and hold each Contributor harmless for any liability
|
|
173
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
174
|
+
of your accepting any such warranty or additional liability.
|
|
175
|
+
|
|
176
|
+
END OF TERMS AND CONDITIONS
|
|
177
|
+
|
|
178
|
+
Copyright 2024-2025 Tony Stef
|
|
179
|
+
|
|
180
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
181
|
+
you may not use this file except in compliance with the License.
|
|
182
|
+
You may obtain a copy of the License at
|
|
183
|
+
|
|
184
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
185
|
+
|
|
186
|
+
Unless required by applicable law or agreed to in writing, software
|
|
187
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
188
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
189
|
+
See the License for the specific language governing permissions and
|
|
190
|
+
limitations under the License.
|
package/README.md
ADDED
|
@@ -0,0 +1,211 @@
|
|
|
1
|
+
<p align="center">
|
|
2
|
+
<img src="landing/public/images/logos/logo-header.png" alt="Grov Logo" width="200"/>
|
|
3
|
+
</p>
|
|
4
|
+
|
|
5
|
+
<h1 align="center">grov</h1>
|
|
6
|
+
|
|
7
|
+
<p align="center"><strong>Collective AI memory for engineering teams.</strong></p>
|
|
8
|
+
|
|
9
|
+
<p align="center">
|
|
10
|
+
<a href="https://grov.dev">Website</a> •
|
|
11
|
+
<a href="#quick-start">Quick Start</a> •
|
|
12
|
+
<a href="#roadmap">Roadmap</a> •
|
|
13
|
+
<a href="#contributing">Contributing</a>
|
|
14
|
+
</p>
|
|
15
|
+
|
|
16
|
+
Grov automatically captures reasoning from your Claude Code sessions and injects relevant context into future sessions. Your AI remembers what it learned.
|
|
17
|
+
|
|
18
|
+
## The Problem
|
|
19
|
+
|
|
20
|
+
Every time you start a new Claude Code session:
|
|
21
|
+
- Claude re-explores your codebase from scratch
|
|
22
|
+
- It reads the same files again
|
|
23
|
+
- It rediscovers patterns you've already established
|
|
24
|
+
- You burn tokens on redundant exploration
|
|
25
|
+
|
|
26
|
+
**Measured impact:** A typical task takes 10+ minutes, 7%+ token usage, and 3+ explore agents just to understand the codebase.
|
|
27
|
+
|
|
28
|
+
## The Solution
|
|
29
|
+
|
|
30
|
+
Grov captures what Claude learns and injects it back on the next session.
|
|
31
|
+
|
|
32
|
+
**With grov:** Same task takes ~1-2 minutes, <2% tokens, 0 explore agents. Claude reads files directly because it already has context.
|
|
33
|
+
|
|
34
|
+
## How It Works
|
|
35
|
+
|
|
36
|
+
```
|
|
37
|
+
Session 1: Claude learns about your auth system
|
|
38
|
+
↓
|
|
39
|
+
grov captures: "Auth tokens refresh in middleware/token.ts:45,
|
|
40
|
+
using 15-min window to handle long forms"
|
|
41
|
+
↓
|
|
42
|
+
Session 2: User asks about related feature
|
|
43
|
+
↓
|
|
44
|
+
grov injects: Previous context about auth
|
|
45
|
+
↓
|
|
46
|
+
Claude skips exploration, reads files directly
|
|
47
|
+
```
|
|
48
|
+
|
|
49
|
+
**Zero friction.** You don't change anything about how you use Claude Code.
|
|
50
|
+
|
|
51
|
+
## Quick Start
|
|
52
|
+
|
|
53
|
+
```bash
|
|
54
|
+
# Install globally
|
|
55
|
+
npm install -g grov
|
|
56
|
+
|
|
57
|
+
# One-time setup (registers hooks in Claude Code)
|
|
58
|
+
grov init
|
|
59
|
+
|
|
60
|
+
# Done. Use Claude Code normally.
|
|
61
|
+
claude
|
|
62
|
+
```
|
|
63
|
+
|
|
64
|
+
That's it. Grov works invisibly in the background.
|
|
65
|
+
|
|
66
|
+
## Commands
|
|
67
|
+
|
|
68
|
+
```bash
|
|
69
|
+
grov init # Register hooks (run once)
|
|
70
|
+
grov status # Show captured tasks for current project
|
|
71
|
+
grov status -a # Show all tasks (including partial/abandoned)
|
|
72
|
+
grov unregister # Disable grov
|
|
73
|
+
grov drift-test # Test drift detection (debug)
|
|
74
|
+
```
|
|
75
|
+
|
|
76
|
+
## How It Actually Works
|
|
77
|
+
|
|
78
|
+
1. **SessionStart hook** fires when you run `claude`
|
|
79
|
+
- Grov queries its database for relevant past reasoning
|
|
80
|
+
- Outputs context that Claude Code injects into the session
|
|
81
|
+
|
|
82
|
+
2. **UserPromptSubmit hook** fires on every prompt
|
|
83
|
+
- Monitors Claude's actions (files touched, commands run)
|
|
84
|
+
- Detects scope drift and injects corrections if needed
|
|
85
|
+
- Smart filtering skips simple prompts ("yes", "ok", "continue")
|
|
86
|
+
|
|
87
|
+
3. **You work normally** with Claude Code
|
|
88
|
+
|
|
89
|
+
4. **Stop hook** fires when the session ends
|
|
90
|
+
- Grov parses the session's JSONL file
|
|
91
|
+
- Extracts reasoning via LLM (Claude Haiku 4.5)
|
|
92
|
+
- Stores structured summary in SQLite
|
|
93
|
+
|
|
94
|
+
5. **Next session**, Claude has context and skips re-exploration
|
|
95
|
+
|
|
96
|
+
## Anti-Drift Detection
|
|
97
|
+
|
|
98
|
+
Grov monitors what Claude **does** (not what you ask) and warns if it drifts from your original goal.
|
|
99
|
+
|
|
100
|
+
**How it works:**
|
|
101
|
+
- Extracts your intent from the first prompt
|
|
102
|
+
- Monitors Claude's actions (file edits, commands, explorations)
|
|
103
|
+
- Uses Claude Haiku 4.5 to score alignment (1-10)
|
|
104
|
+
- Injects corrections at 5 levels: nudge → correct → intervene → halt
|
|
105
|
+
|
|
106
|
+
**Key principle:** You can explore freely. Grov watches Claude's actions, not your prompts.
|
|
107
|
+
|
|
108
|
+
```bash
|
|
109
|
+
# Test drift detection manually
|
|
110
|
+
grov drift-test "refactor the auth system" --goal "fix login bug"
|
|
111
|
+
```
|
|
112
|
+
|
|
113
|
+
## Environment Variables
|
|
114
|
+
|
|
115
|
+
```bash
|
|
116
|
+
# Required for drift detection and LLM extraction
|
|
117
|
+
export ANTHROPIC_API_KEY=sk-ant-...
|
|
118
|
+
|
|
119
|
+
# Optional: Override drift model (default: claude-haiku-4-5)
|
|
120
|
+
export GROV_DRIFT_MODEL=claude-sonnet-4-20250514
|
|
121
|
+
```
|
|
122
|
+
|
|
123
|
+
Without an API key, grov uses basic extraction (files touched, tool usage counts) and disables drift detection.
|
|
124
|
+
|
|
125
|
+
## What Gets Stored
|
|
126
|
+
|
|
127
|
+
```json
|
|
128
|
+
{
|
|
129
|
+
"task": "Fix auth logout bug",
|
|
130
|
+
"goal": "Prevent random user logouts",
|
|
131
|
+
"files_touched": ["src/auth/session.ts", "src/middleware/token.ts"],
|
|
132
|
+
"reasoning_trace": [
|
|
133
|
+
"Investigated token refresh logic",
|
|
134
|
+
"Found refresh window was too short",
|
|
135
|
+
"Extended from 5min to 15min"
|
|
136
|
+
],
|
|
137
|
+
"status": "complete",
|
|
138
|
+
"tags": ["auth", "session", "token"]
|
|
139
|
+
}
|
|
140
|
+
```
|
|
141
|
+
|
|
142
|
+
## What Gets Injected
|
|
143
|
+
|
|
144
|
+
```
|
|
145
|
+
VERIFIED CONTEXT FROM PREVIOUS SESSIONS:
|
|
146
|
+
|
|
147
|
+
[Task: Fix auth logout bug]
|
|
148
|
+
- Files: session.ts, token.ts
|
|
149
|
+
- Extended token refresh window from 5min to 15min
|
|
150
|
+
- Reason: Users were getting logged out during long forms
|
|
151
|
+
|
|
152
|
+
YOU MAY SKIP EXPLORE AGENTS for files mentioned above.
|
|
153
|
+
Read them directly if relevant to the current task.
|
|
154
|
+
```
|
|
155
|
+
|
|
156
|
+
## Data Storage
|
|
157
|
+
|
|
158
|
+
- **Database:** `~/.grov/memory.db` (SQLite)
|
|
159
|
+
- **Per-project:** Context is filtered by project path
|
|
160
|
+
- **Local only:** Nothing leaves your machine (unless you add cloud sync)
|
|
161
|
+
|
|
162
|
+
## Requirements
|
|
163
|
+
|
|
164
|
+
- Node.js 18+
|
|
165
|
+
- Claude Code v2.0+
|
|
166
|
+
|
|
167
|
+
## Roadmap
|
|
168
|
+
|
|
169
|
+
- [x] Local capture & inject
|
|
170
|
+
- [x] LLM-powered extraction (Claude Haiku 4.5)
|
|
171
|
+
- [x] Zero-friction hooks
|
|
172
|
+
- [x] Per-prompt context injection
|
|
173
|
+
- [x] Anti-drift detection & correction
|
|
174
|
+
- [ ] Team sync (cloud backend)
|
|
175
|
+
- [ ] Web dashboard
|
|
176
|
+
- [ ] Semantic search
|
|
177
|
+
|
|
178
|
+
## Contributing
|
|
179
|
+
|
|
180
|
+
We welcome contributions! Here's how to get started:
|
|
181
|
+
|
|
182
|
+
1. **Fork the repo** and clone locally
|
|
183
|
+
2. **Install dependencies:** `npm install`
|
|
184
|
+
3. **Build:** `npm run build`
|
|
185
|
+
4. **Test locally:** `node dist/cli.js --help`
|
|
186
|
+
|
|
187
|
+
### Development
|
|
188
|
+
|
|
189
|
+
```bash
|
|
190
|
+
# Watch mode for development
|
|
191
|
+
npm run dev
|
|
192
|
+
|
|
193
|
+
# Test the CLI
|
|
194
|
+
node dist/cli.js init
|
|
195
|
+
node dist/cli.js status
|
|
196
|
+
```
|
|
197
|
+
|
|
198
|
+
### Guidelines
|
|
199
|
+
|
|
200
|
+
- Keep PRs focused on a single change
|
|
201
|
+
- Follow existing code style
|
|
202
|
+
- Update tests if applicable
|
|
203
|
+
- Update docs if adding features
|
|
204
|
+
|
|
205
|
+
### Reporting Issues
|
|
206
|
+
|
|
207
|
+
Found a bug or have a feature request? [Open an issue](https://github.com/TonyStef/Grov/issues).
|
|
208
|
+
|
|
209
|
+
## License
|
|
210
|
+
|
|
211
|
+
Apache License 2.0 - see [LICENSE](LICENSE) file for details.
|
package/dist/cli.d.ts
ADDED
package/dist/cli.js
ADDED
|
@@ -0,0 +1,106 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
import 'dotenv/config';
|
|
3
|
+
import { Command } from 'commander';
|
|
4
|
+
import { closeDatabase } from './lib/store.js';
|
|
5
|
+
// SECURITY: Global error handlers to catch unhandled rejections from dynamic imports
|
|
6
|
+
process.on('unhandledRejection', (reason) => {
|
|
7
|
+
console.error('Error:', reason instanceof Error ? reason.message : 'Unknown error');
|
|
8
|
+
closeDatabase();
|
|
9
|
+
process.exit(1);
|
|
10
|
+
});
|
|
11
|
+
process.on('uncaughtException', (error) => {
|
|
12
|
+
console.error('Error:', error.message);
|
|
13
|
+
closeDatabase();
|
|
14
|
+
process.exit(1);
|
|
15
|
+
});
|
|
16
|
+
const program = new Command();
|
|
17
|
+
/**
|
|
18
|
+
* Wrap async action with error handling and cleanup.
|
|
19
|
+
* Ensures database connections are closed and errors are handled gracefully.
|
|
20
|
+
*/
|
|
21
|
+
function safeAction(fn) {
|
|
22
|
+
return async (options) => {
|
|
23
|
+
try {
|
|
24
|
+
await fn(options);
|
|
25
|
+
}
|
|
26
|
+
catch (error) {
|
|
27
|
+
console.error('Error:', error instanceof Error ? error.message : 'Unknown error');
|
|
28
|
+
process.exit(1);
|
|
29
|
+
}
|
|
30
|
+
finally {
|
|
31
|
+
closeDatabase();
|
|
32
|
+
}
|
|
33
|
+
};
|
|
34
|
+
}
|
|
35
|
+
program
|
|
36
|
+
.name('grov')
|
|
37
|
+
.description('Collective AI memory for engineering teams')
|
|
38
|
+
.version('0.1.0');
|
|
39
|
+
// grov init - Register hooks in Claude Code
|
|
40
|
+
program
|
|
41
|
+
.command('init')
|
|
42
|
+
.description('Register grov hooks in Claude Code settings')
|
|
43
|
+
.action(safeAction(async () => {
|
|
44
|
+
const { init } = await import('./commands/init.js');
|
|
45
|
+
await init();
|
|
46
|
+
}));
|
|
47
|
+
// grov capture - Called by Stop hook, extracts and stores reasoning
|
|
48
|
+
program
|
|
49
|
+
.command('capture')
|
|
50
|
+
.description('Capture reasoning from current session (called by Stop hook)')
|
|
51
|
+
.option('--session-dir <path>', 'Path to session directory')
|
|
52
|
+
.action(safeAction(async (options) => {
|
|
53
|
+
// SECURITY: Validate session-dir doesn't contain path traversal
|
|
54
|
+
if (options.sessionDir && options.sessionDir.includes('..')) {
|
|
55
|
+
throw new Error('Invalid session directory path');
|
|
56
|
+
}
|
|
57
|
+
const { capture } = await import('./commands/capture.js');
|
|
58
|
+
await capture(options);
|
|
59
|
+
}));
|
|
60
|
+
// grov inject - Called by SessionStart hook, outputs context JSON
|
|
61
|
+
program
|
|
62
|
+
.command('inject')
|
|
63
|
+
.description('Inject relevant context for new session (called by SessionStart hook)')
|
|
64
|
+
.option('--task <description>', 'Task description from user prompt')
|
|
65
|
+
.action(safeAction(async (options) => {
|
|
66
|
+
const { inject } = await import('./commands/inject.js');
|
|
67
|
+
await inject(options);
|
|
68
|
+
}));
|
|
69
|
+
// grov prompt-inject - Called by UserPromptSubmit hook, outputs context JSON per-turn
|
|
70
|
+
program
|
|
71
|
+
.command('prompt-inject')
|
|
72
|
+
.description('Inject context before each prompt (called by UserPromptSubmit hook)')
|
|
73
|
+
.action(safeAction(async () => {
|
|
74
|
+
const { promptInject } = await import('./commands/prompt-inject.js');
|
|
75
|
+
await promptInject({});
|
|
76
|
+
}));
|
|
77
|
+
// grov status - Show stored reasoning for current project
|
|
78
|
+
program
|
|
79
|
+
.command('status')
|
|
80
|
+
.description('Show stored reasoning for current project')
|
|
81
|
+
.option('--all', 'Show all tasks, not just completed')
|
|
82
|
+
.action(safeAction(async (options) => {
|
|
83
|
+
const { status } = await import('./commands/status.js');
|
|
84
|
+
await status(options);
|
|
85
|
+
}));
|
|
86
|
+
// grov unregister - Remove hooks from Claude Code
|
|
87
|
+
program
|
|
88
|
+
.command('unregister')
|
|
89
|
+
.description('Remove grov hooks from Claude Code settings')
|
|
90
|
+
.action(safeAction(async () => {
|
|
91
|
+
const { unregister } = await import('./commands/unregister.js');
|
|
92
|
+
await unregister();
|
|
93
|
+
}));
|
|
94
|
+
// grov drift-test - Test drift detection on a prompt
|
|
95
|
+
program
|
|
96
|
+
.command('drift-test')
|
|
97
|
+
.description('Test drift detection on a prompt (debug command)')
|
|
98
|
+
.argument('<prompt>', 'The prompt to test for drift')
|
|
99
|
+
.option('--session <id>', 'Session ID to use for context')
|
|
100
|
+
.option('--goal <text>', 'Original goal (if no session provided)')
|
|
101
|
+
.option('-v, --verbose', 'Show verbose output')
|
|
102
|
+
.action(async (prompt, options) => {
|
|
103
|
+
const { driftTest } = await import('./commands/drift-test.js');
|
|
104
|
+
await driftTest(prompt, options);
|
|
105
|
+
});
|
|
106
|
+
program.parse();
|