@simonfestl/husky-cli 0.9.7 → 1.2.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/README.md CHANGED
@@ -111,19 +111,6 @@ husky vm update <session-id> --status approved
111
111
  husky vm delete <session-id>
112
112
  ```
113
113
 
114
- ### Jules Session Management
115
-
116
- ```bash
117
- husky jules list
118
- husky jules create --task-id <id> --prompt "..."
119
- husky jules get <session-id>
120
- husky jules message <session-id> --content "..."
121
- husky jules approve <session-id>
122
- husky jules activities <session-id>
123
- husky jules update <session-id> --status completed
124
- husky jules delete <session-id>
125
- ```
126
-
127
114
  ### Business Strategy
128
115
 
129
116
  ```bash
@@ -187,6 +174,32 @@ husky vm-config update <config-id> --machine-type e2-standard-2
187
174
  husky vm-config delete <config-id>
188
175
  ```
189
176
 
177
+ ### Chat / Messaging
178
+
179
+ ```bash
180
+ # Check pending messages
181
+ husky chat pending
182
+ husky chat pending --json
183
+
184
+ # View inbox (GitHub + Google Chat)
185
+ husky chat inbox
186
+ husky chat inbox --unread
187
+
188
+ # Reply to any message (auto-detects platform)
189
+ husky chat reply-to <messageId> "Your response"
190
+
191
+ # Reply in Google Chat thread
192
+ husky chat reply-chat "Message" --thread <threadName>
193
+
194
+ # Mark message as read
195
+ husky chat mark-read <messageId>
196
+
197
+ # Watch for messages (inject into tmux)
198
+ husky chat watch-inject --tmux-session supervisor
199
+ ```
200
+
201
+ The `reply-to` command automatically detects whether the message is from GitHub or Google Chat and uses the appropriate API to send the reply.
202
+
190
203
  ### Settings
191
204
 
192
205
  ```bash
@@ -283,6 +296,36 @@ husky --version
283
296
 
284
297
  ## Changelog
285
298
 
299
+ ### v1.1.0 (2026-01-09) - Unified Reply System
300
+
301
+ **New Features:**
302
+ - `husky chat reply-to` now supports both GitHub and Google Chat
303
+ - Auto-detects platform from message metadata
304
+ - GitHub replies use GitHub App (no PAT required on VM)
305
+
306
+ **Improvements:**
307
+ - Require 8+ character prefix for messageId matching (prevents misdirected replies)
308
+ - Better error messages for short messageId prefixes
309
+
310
+ ### v1.0.0 (2026-01-08) - Supervisor Architecture
311
+
312
+ **BREAKING CHANGES:**
313
+ - Removed: `husky jules` commands (replaced by supervisor architecture)
314
+ - Removed: `husky services` commands (deprecated)
315
+ - Removed: VM Pool management (now automated by supervisor)
316
+ - Deprecated: `husky agent` commands (use `husky task` instead)
317
+
318
+ **New Features:**
319
+ - Added: `husky chat` command for supervisor communication
320
+ - Added: Project resolver to prevent orphaned tasks
321
+ - Added: Implementation plans via `husky task plan`
322
+ - Added: QA review pipeline support
323
+
324
+ **Improvements:**
325
+ - Version now read dynamically from package.json
326
+ - Simplified task workflow
327
+ - Scope-based API key system support
328
+
286
329
  ### v0.5.0 (2026-01-06)
287
330
  - Full Dashboard feature parity (69 new commands)
288
331
  - Added: project, workflow, idea, department, vm, jules, process, strategy, settings, vm-config commands
@@ -0,0 +1,2 @@
1
+ import { Command } from "commander";
2
+ export declare const chatCommand: Command;