@hasna/hooks 0.0.1

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.
Files changed (110) hide show
  1. package/.npmrc.example +2 -0
  2. package/AGENTS.md +54 -0
  3. package/CLAUDE.md +70 -0
  4. package/CONTRIBUTING.md +45 -0
  5. package/README.md +232 -0
  6. package/bin/index.js +5171 -0
  7. package/hooks/hook-agentmessages/CLAUDE.md +79 -0
  8. package/hooks/hook-agentmessages/LICENSE +21 -0
  9. package/hooks/hook-agentmessages/README.md +107 -0
  10. package/hooks/hook-agentmessages/package.json +31 -0
  11. package/hooks/hook-agentmessages/src/check-messages.ts +151 -0
  12. package/hooks/hook-agentmessages/src/install.ts +126 -0
  13. package/hooks/hook-agentmessages/src/session-start.ts +255 -0
  14. package/hooks/hook-agentmessages/src/uninstall.ts +89 -0
  15. package/hooks/hook-branchprotect/CLAUDE.md +23 -0
  16. package/hooks/hook-branchprotect/README.md +25 -0
  17. package/hooks/hook-branchprotect/package.json +42 -0
  18. package/hooks/hook-branchprotect/src/cli.ts +126 -0
  19. package/hooks/hook-branchprotect/src/hook.ts +88 -0
  20. package/hooks/hook-branchprotect/tsconfig.json +25 -0
  21. package/hooks/hook-checkbugs/LICENSE +21 -0
  22. package/hooks/hook-checkbugs/README.md +140 -0
  23. package/hooks/hook-checkbugs/package.json +58 -0
  24. package/hooks/hook-checkbugs/src/cli.ts +628 -0
  25. package/hooks/hook-checkbugs/src/hook.ts +335 -0
  26. package/hooks/hook-checkbugs/tsconfig.json +15 -0
  27. package/hooks/hook-checkdocs/README.md +137 -0
  28. package/hooks/hook-checkdocs/package.json +57 -0
  29. package/hooks/hook-checkdocs/src/cli.ts +628 -0
  30. package/hooks/hook-checkdocs/src/hook.ts +310 -0
  31. package/hooks/hook-checkdocs/tsconfig.json +15 -0
  32. package/hooks/hook-checkfiles/LICENSE +21 -0
  33. package/hooks/hook-checkfiles/README.md +141 -0
  34. package/hooks/hook-checkfiles/package.json +56 -0
  35. package/hooks/hook-checkfiles/src/cli.ts +545 -0
  36. package/hooks/hook-checkfiles/src/hook.ts +321 -0
  37. package/hooks/hook-checkfiles/tsconfig.json +15 -0
  38. package/hooks/hook-checklint/LICENSE +21 -0
  39. package/hooks/hook-checklint/README.md +147 -0
  40. package/hooks/hook-checklint/package.json +57 -0
  41. package/hooks/hook-checklint/src/cli-patch.ts +32 -0
  42. package/hooks/hook-checklint/src/cli.ts +667 -0
  43. package/hooks/hook-checklint/src/hook.ts +473 -0
  44. package/hooks/hook-checklint/tsconfig.json +15 -0
  45. package/hooks/hook-checkpoint/CLAUDE.md +23 -0
  46. package/hooks/hook-checkpoint/README.md +37 -0
  47. package/hooks/hook-checkpoint/package.json +58 -0
  48. package/hooks/hook-checkpoint/src/cli.ts +191 -0
  49. package/hooks/hook-checkpoint/src/hook.ts +207 -0
  50. package/hooks/hook-checkpoint/tsconfig.json +25 -0
  51. package/hooks/hook-checksecurity/LICENSE +21 -0
  52. package/hooks/hook-checksecurity/README.md +158 -0
  53. package/hooks/hook-checksecurity/package.json +57 -0
  54. package/hooks/hook-checksecurity/src/cli.ts +601 -0
  55. package/hooks/hook-checksecurity/src/hook.ts +334 -0
  56. package/hooks/hook-checksecurity/tsconfig.json +15 -0
  57. package/hooks/hook-checktasks/README.md +144 -0
  58. package/hooks/hook-checktasks/package.json +55 -0
  59. package/hooks/hook-checktasks/src/cli.ts +578 -0
  60. package/hooks/hook-checktasks/src/hook.ts +308 -0
  61. package/hooks/hook-checktasks/tsconfig.json +20 -0
  62. package/hooks/hook-checktests/LICENSE +21 -0
  63. package/hooks/hook-checktests/README.md +137 -0
  64. package/hooks/hook-checktests/package.json +57 -0
  65. package/hooks/hook-checktests/src/cli.ts +627 -0
  66. package/hooks/hook-checktests/src/hook.ts +334 -0
  67. package/hooks/hook-checktests/tsconfig.json +15 -0
  68. package/hooks/hook-contextrefresh/CLAUDE.md +23 -0
  69. package/hooks/hook-contextrefresh/README.md +42 -0
  70. package/hooks/hook-contextrefresh/package.json +42 -0
  71. package/hooks/hook-contextrefresh/src/cli.ts +152 -0
  72. package/hooks/hook-contextrefresh/src/hook.ts +148 -0
  73. package/hooks/hook-contextrefresh/tsconfig.json +25 -0
  74. package/hooks/hook-gitguard/CLAUDE.md +22 -0
  75. package/hooks/hook-gitguard/README.md +30 -0
  76. package/hooks/hook-gitguard/package.json +57 -0
  77. package/hooks/hook-gitguard/src/cli.ts +159 -0
  78. package/hooks/hook-gitguard/src/hook.ts +129 -0
  79. package/hooks/hook-gitguard/tsconfig.json +25 -0
  80. package/hooks/hook-packageage/CLAUDE.md +23 -0
  81. package/hooks/hook-packageage/README.md +33 -0
  82. package/hooks/hook-packageage/package.json +42 -0
  83. package/hooks/hook-packageage/src/cli.ts +165 -0
  84. package/hooks/hook-packageage/src/hook.ts +177 -0
  85. package/hooks/hook-packageage/tsconfig.json +25 -0
  86. package/hooks/hook-phonenotify/CLAUDE.md +25 -0
  87. package/hooks/hook-phonenotify/README.md +44 -0
  88. package/hooks/hook-phonenotify/package.json +42 -0
  89. package/hooks/hook-phonenotify/src/cli.ts +196 -0
  90. package/hooks/hook-phonenotify/src/hook.ts +139 -0
  91. package/hooks/hook-phonenotify/tsconfig.json +25 -0
  92. package/hooks/hook-precompact/CLAUDE.md +23 -0
  93. package/hooks/hook-precompact/README.md +36 -0
  94. package/hooks/hook-precompact/package.json +42 -0
  95. package/hooks/hook-precompact/src/cli.ts +168 -0
  96. package/hooks/hook-precompact/src/hook.ts +122 -0
  97. package/hooks/hook-precompact/tsconfig.json +25 -0
  98. package/package.json +61 -0
  99. package/src/cli/components/App.tsx +191 -0
  100. package/src/cli/components/CategorySelect.tsx +37 -0
  101. package/src/cli/components/DataTable.tsx +133 -0
  102. package/src/cli/components/Header.tsx +18 -0
  103. package/src/cli/components/HookSelect.tsx +29 -0
  104. package/src/cli/components/InstallProgress.tsx +105 -0
  105. package/src/cli/components/SearchView.tsx +86 -0
  106. package/src/cli/index.tsx +218 -0
  107. package/src/index.ts +31 -0
  108. package/src/lib/installer.ts +288 -0
  109. package/src/lib/registry.ts +205 -0
  110. package/tsconfig.json +17 -0
@@ -0,0 +1,628 @@
1
+ #!/usr/bin/env bun
2
+
3
+ /**
4
+ * @hasnaxyz/hook-checkdocs CLI
5
+ *
6
+ * Usage:
7
+ * hook-checkdocs install Auto-detect location, configure options
8
+ * hook-checkdocs install --global Force global install
9
+ * hook-checkdocs install /path Install to specific path
10
+ * hook-checkdocs config Update configuration
11
+ * hook-checkdocs uninstall Remove hook
12
+ * hook-checkdocs run Execute hook (called by Claude Code)
13
+ * hook-checkdocs status Show installation status
14
+ */
15
+
16
+ import { existsSync, readFileSync, writeFileSync, mkdirSync, readdirSync } from "fs";
17
+ import { join, dirname, resolve } from "path";
18
+ import { homedir } from "os";
19
+ import * as readline from "readline";
20
+
21
+ const PACKAGE_NAME = "@hasnaxyz/hook-checkdocs";
22
+ const CONFIG_KEY = "checkDocsConfig";
23
+
24
+ // Colors
25
+ const c = {
26
+ red: (s: string) => `\x1b[31m${s}\x1b[0m`,
27
+ green: (s: string) => `\x1b[32m${s}\x1b[0m`,
28
+ yellow: (s: string) => `\x1b[33m${s}\x1b[0m`,
29
+ cyan: (s: string) => `\x1b[36m${s}\x1b[0m`,
30
+ dim: (s: string) => `\x1b[2m${s}\x1b[0m`,
31
+ bold: (s: string) => `\x1b[1m${s}\x1b[0m`,
32
+ };
33
+
34
+ interface CheckDocsConfig {
35
+ taskListId?: string;
36
+ editThreshold?: number;
37
+ keywords?: string[];
38
+ reviewPrompt?: string;
39
+ enabled?: boolean;
40
+ }
41
+
42
+ function printUsage() {
43
+ console.log(`
44
+ ${c.bold("hook-checkdocs")} - Checks for missing documentation and creates tasks
45
+
46
+ ${c.bold("USAGE:")}
47
+ hook-checkdocs install [path] Install the hook
48
+ hook-checkdocs config [path] Update configuration
49
+ hook-checkdocs uninstall [path] Remove the hook
50
+ hook-checkdocs status Show hook status
51
+ hook-checkdocs run Execute hook ${c.dim("(called by Claude Code)")}
52
+
53
+ ${c.bold("OPTIONS:")}
54
+ ${c.dim("(no args)")} Auto-detect: if in git repo -> install there, else -> prompt
55
+ --global, -g Apply to ~/.claude/settings.json
56
+ /path/to/repo Apply to specific project path
57
+
58
+ ${c.bold("INSTALL OPTIONS:")}
59
+ --task-list-id, -t <id> Task list ID for dispatching tasks
60
+ --keywords, -k <k1,k2> Keywords (comma-separated, default: dev)
61
+ --threshold, -n <num> Edit threshold (3-7, default: 3)
62
+ --yes, -y Non-interactive mode (use defaults/provided values)
63
+
64
+ ${c.bold("EXAMPLES:")}
65
+ hook-checkdocs install ${c.dim("# Install with config prompts")}
66
+ hook-checkdocs install --global ${c.dim("# Global install")}
67
+ hook-checkdocs install -y ${c.dim("# Non-interactive with defaults")}
68
+ hook-checkdocs install -t my-list -n 5 -y ${c.dim("# Non-interactive with options")}
69
+ hook-checkdocs config ${c.dim("# Update threshold, task list")}
70
+ hook-checkdocs status ${c.dim("# Check what's installed")}
71
+
72
+ ${c.bold("CONFIGURATION:")}
73
+ editThreshold Run review after this many edits (3-7, default: 3)
74
+ taskListId Task list for dispatching tasks (auto-detected if not set)
75
+ keywords Only run for sessions matching keywords (default: dev)
76
+ reviewPrompt Custom prompt for the headless agent
77
+
78
+ ${c.bold("HOW IT WORKS:")}
79
+ 1. Tracks file edits (Edit, Write, NotebookEdit)
80
+ 2. After N edits, spawns headless Claude agent
81
+ 3. Agent reviews files and creates tasks via service-implementation
82
+ 4. Tasks are dispatched to the configured task list
83
+
84
+ ${c.bold("GLOBAL CLI INSTALL:")}
85
+ bun add -g ${PACKAGE_NAME}
86
+ `);
87
+ }
88
+
89
+ function isGitRepo(path: string): boolean {
90
+ return existsSync(join(path, ".git"));
91
+ }
92
+
93
+ function getSettingsPath(targetPath: string | "global"): string {
94
+ if (targetPath === "global") {
95
+ return join(homedir(), ".claude", "settings.json");
96
+ }
97
+ return join(targetPath, ".claude", "settings.json");
98
+ }
99
+
100
+ function readSettings(path: string): Record<string, unknown> {
101
+ if (!existsSync(path)) return {};
102
+ try {
103
+ return JSON.parse(readFileSync(path, "utf-8"));
104
+ } catch {
105
+ return {};
106
+ }
107
+ }
108
+
109
+ function writeSettings(path: string, settings: Record<string, unknown>) {
110
+ mkdirSync(dirname(path), { recursive: true });
111
+ writeFileSync(path, JSON.stringify(settings, null, 2) + "\n");
112
+ }
113
+
114
+ function getHookCommand(): string {
115
+ return `bunx ${PACKAGE_NAME}@latest run`;
116
+ }
117
+
118
+ function hookExists(settings: Record<string, unknown>): boolean {
119
+ const hooks = settings.hooks as Record<string, unknown[]> | undefined;
120
+ if (!hooks?.PostToolUse) return false;
121
+ const postToolHooks = hooks.PostToolUse as Array<{ hooks?: Array<{ command?: string }> }>;
122
+ return postToolHooks.some((group) =>
123
+ group.hooks?.some((h) => h.command?.includes(PACKAGE_NAME))
124
+ );
125
+ }
126
+
127
+ function getConfig(settings: Record<string, unknown>): CheckDocsConfig {
128
+ return (settings[CONFIG_KEY] as CheckDocsConfig) || {};
129
+ }
130
+
131
+ function setConfig(settings: Record<string, unknown>, config: CheckDocsConfig): Record<string, unknown> {
132
+ settings[CONFIG_KEY] = config;
133
+ return settings;
134
+ }
135
+
136
+ function addHook(settings: Record<string, unknown>): Record<string, unknown> {
137
+ const hookConfig = {
138
+ type: "command",
139
+ command: getHookCommand(),
140
+ timeout: 120,
141
+ async: true, // Run async (non-blocking)
142
+ };
143
+
144
+ // Match only Edit, Write, NotebookEdit tools
145
+ const matcher = {
146
+ tool_name: "^(Edit|Write|NotebookEdit)$",
147
+ };
148
+
149
+ if (!settings.hooks) settings.hooks = {};
150
+ const hooks = settings.hooks as Record<string, unknown[]>;
151
+
152
+ if (!hooks.PostToolUse) {
153
+ hooks.PostToolUse = [{ matcher, hooks: [hookConfig] }];
154
+ } else {
155
+ const postToolHooks = hooks.PostToolUse as Array<{ matcher?: unknown; hooks?: unknown[] }>;
156
+ // Check if there's already a group for our matcher
157
+ const existingGroup = postToolHooks.find((g) =>
158
+ JSON.stringify(g.matcher) === JSON.stringify(matcher)
159
+ );
160
+ if (existingGroup?.hooks) {
161
+ existingGroup.hooks.push(hookConfig);
162
+ } else {
163
+ postToolHooks.push({ matcher, hooks: [hookConfig] });
164
+ }
165
+ }
166
+ return settings;
167
+ }
168
+
169
+ function removeHook(settings: Record<string, unknown>): Record<string, unknown> {
170
+ const hooks = settings.hooks as Record<string, unknown[]> | undefined;
171
+ if (!hooks?.PostToolUse) return settings;
172
+
173
+ const postToolHooks = hooks.PostToolUse as Array<{ hooks?: Array<{ command?: string }> }>;
174
+ for (const group of postToolHooks) {
175
+ if (group.hooks) {
176
+ group.hooks = group.hooks.filter((h) => !h.command?.includes(PACKAGE_NAME));
177
+ }
178
+ }
179
+ hooks.PostToolUse = postToolHooks.filter((g) => g.hooks && g.hooks.length > 0);
180
+ if (hooks.PostToolUse.length === 0) delete hooks.PostToolUse;
181
+
182
+ // Also remove config
183
+ delete settings[CONFIG_KEY];
184
+
185
+ return settings;
186
+ }
187
+
188
+ async function prompt(question: string): Promise<string> {
189
+ const rl = readline.createInterface({
190
+ input: process.stdin,
191
+ output: process.stdout,
192
+ });
193
+ return new Promise((resolve) => {
194
+ rl.question(question, (answer) => {
195
+ rl.close();
196
+ resolve(answer.trim());
197
+ });
198
+ });
199
+ }
200
+
201
+ function getAllTaskLists(): string[] {
202
+ const tasksDir = join(homedir(), ".claude", "tasks");
203
+ if (!existsSync(tasksDir)) return [];
204
+ try {
205
+ return readdirSync(tasksDir, { withFileTypes: true })
206
+ .filter((d) => d.isDirectory())
207
+ .map((d) => d.name);
208
+ } catch {
209
+ return [];
210
+ }
211
+ }
212
+
213
+ function getProjectTaskLists(projectPath: string): string[] {
214
+ const allLists = getAllTaskLists();
215
+ const dirName = projectPath.split("/").filter(Boolean).pop() || "";
216
+
217
+ return allLists.filter((list) => {
218
+ const listLower = list.toLowerCase();
219
+ const dirLower = dirName.toLowerCase();
220
+ if (listLower.startsWith(dirLower + "-")) return true;
221
+ if (listLower.includes(dirLower)) return true;
222
+ return false;
223
+ });
224
+ }
225
+
226
+ interface InstallOptions {
227
+ taskListId?: string;
228
+ keywords?: string[];
229
+ threshold?: number;
230
+ nonInteractive: boolean;
231
+ }
232
+
233
+ function parseInstallArgs(args: string[]): InstallOptions {
234
+ const options: InstallOptions = {
235
+ nonInteractive: false,
236
+ };
237
+
238
+ for (let i = 0; i < args.length; i++) {
239
+ const arg = args[i];
240
+ const nextArg = args[i + 1];
241
+
242
+ switch (arg) {
243
+ case "--yes":
244
+ case "-y":
245
+ options.nonInteractive = true;
246
+ break;
247
+ case "--task-list-id":
248
+ case "-t":
249
+ if (nextArg && !nextArg.startsWith("-")) {
250
+ options.taskListId = nextArg;
251
+ i++;
252
+ }
253
+ break;
254
+ case "--keywords":
255
+ case "-k":
256
+ if (nextArg && !nextArg.startsWith("-")) {
257
+ options.keywords = nextArg.split(",").map((k) => k.trim().toLowerCase()).filter(Boolean);
258
+ i++;
259
+ }
260
+ break;
261
+ case "--threshold":
262
+ case "-n":
263
+ if (nextArg && !nextArg.startsWith("-")) {
264
+ const num = parseInt(nextArg, 10);
265
+ if (!isNaN(num) && num >= 3 && num <= 7) {
266
+ options.threshold = num;
267
+ }
268
+ i++;
269
+ }
270
+ break;
271
+ }
272
+ }
273
+
274
+ // If any explicit option is provided, enable non-interactive mode
275
+ if (options.taskListId !== undefined || options.keywords !== undefined || options.threshold !== undefined) {
276
+ options.nonInteractive = true;
277
+ }
278
+
279
+ return options;
280
+ }
281
+
282
+ async function resolveTarget(
283
+ args: string[]
284
+ ): Promise<{ path: string | "global"; label: string } | null> {
285
+ if (args.includes("--global") || args.includes("-g")) {
286
+ return { path: "global", label: "global (~/.claude/settings.json)" };
287
+ }
288
+
289
+ const pathArg = args.find((a) => !a.startsWith("-"));
290
+ if (pathArg) {
291
+ const fullPath = resolve(pathArg);
292
+ if (!existsSync(fullPath)) {
293
+ console.log(c.red("X"), `Path does not exist: ${fullPath}`);
294
+ return null;
295
+ }
296
+ return { path: fullPath, label: `project (${fullPath})` };
297
+ }
298
+
299
+ const cwd = process.cwd();
300
+ if (isGitRepo(cwd)) {
301
+ console.log(c.green("V"), `Detected git repo: ${c.cyan(cwd)}`);
302
+ return { path: cwd, label: `project (${cwd})` };
303
+ }
304
+
305
+ console.log(c.yellow("!"), `Current directory: ${c.cyan(cwd)}`);
306
+ console.log(c.dim(" (not a git repository)\n"));
307
+ console.log("Where would you like to install?\n");
308
+ console.log(" 1. Here", c.dim(`(${cwd})`));
309
+ console.log(" 2. Global", c.dim("(~/.claude/settings.json)"));
310
+ console.log(" 3. Enter a different path\n");
311
+
312
+ const choice = await prompt("Choice (1/2/3): ");
313
+
314
+ if (choice === "1") {
315
+ return { path: cwd, label: `project (${cwd})` };
316
+ } else if (choice === "2") {
317
+ return { path: "global", label: "global (~/.claude/settings.json)" };
318
+ } else if (choice === "3") {
319
+ const inputPath = await prompt("Path: ");
320
+ if (!inputPath) {
321
+ console.log(c.red("X"), "No path provided");
322
+ return null;
323
+ }
324
+ const fullPath = resolve(inputPath);
325
+ if (!existsSync(fullPath)) {
326
+ console.log(c.red("X"), `Path does not exist: ${fullPath}`);
327
+ return null;
328
+ }
329
+ return { path: fullPath, label: `project (${fullPath})` };
330
+ } else {
331
+ console.log(c.red("X"), "Invalid choice");
332
+ return null;
333
+ }
334
+ }
335
+
336
+ async function promptForConfig(existingConfig: CheckDocsConfig = {}, projectPath?: string): Promise<CheckDocsConfig> {
337
+ const config: CheckDocsConfig = { ...existingConfig };
338
+
339
+ console.log(`\n${c.bold("Configuration")}\n`);
340
+
341
+ // Edit threshold
342
+ const currentThreshold = config.editThreshold || 3;
343
+ console.log(c.bold("Edit Threshold:"));
344
+ console.log(c.dim(" Run review after this many file edits (3-7)"));
345
+ const thresholdInput = await prompt(`Threshold [${c.cyan(currentThreshold.toString())}]: `);
346
+
347
+ if (thresholdInput) {
348
+ const num = parseInt(thresholdInput, 10);
349
+ if (!isNaN(num) && num >= 3 && num <= 7) {
350
+ config.editThreshold = num;
351
+ } else {
352
+ console.log(c.yellow("!"), "Invalid threshold, using default (3)");
353
+ config.editThreshold = 3;
354
+ }
355
+ } else if (!existingConfig.editThreshold) {
356
+ config.editThreshold = 3;
357
+ }
358
+
359
+ // Task list
360
+ const availableLists = projectPath ? getProjectTaskLists(projectPath) : getAllTaskLists();
361
+ const bugfixLists = availableLists.filter((l) => l.toLowerCase().includes("bugfix"));
362
+
363
+ console.log();
364
+ console.log(c.bold("Task List ID:"));
365
+ if (bugfixLists.length > 0) {
366
+ console.log(c.dim(" Bugfix lists for this project:"));
367
+ bugfixLists.forEach((list, i) => {
368
+ console.log(c.dim(` ${i + 1}. ${list}`));
369
+ });
370
+ } else if (availableLists.length > 0) {
371
+ console.log(c.dim(" Available lists:"));
372
+ availableLists.slice(0, 5).forEach((list, i) => {
373
+ console.log(c.dim(` ${i + 1}. ${list}`));
374
+ });
375
+ }
376
+ console.log(c.dim(" Leave empty to auto-detect (prefers *-bugfixes list)"));
377
+
378
+ const currentList = config.taskListId || "(auto-detect)";
379
+ const listInput = await prompt(`Task list ID [${c.cyan(currentList)}]: `);
380
+
381
+ if (listInput) {
382
+ const num = parseInt(listInput, 10);
383
+ const selectableLists = bugfixLists.length > 0 ? bugfixLists : availableLists;
384
+ if (!isNaN(num) && num > 0 && num <= selectableLists.length) {
385
+ config.taskListId = selectableLists[num - 1];
386
+ } else {
387
+ config.taskListId = listInput;
388
+ }
389
+ } else if (!existingConfig.taskListId) {
390
+ config.taskListId = undefined;
391
+ }
392
+
393
+ // Keywords
394
+ const currentKeywords = config.keywords?.join(", ") || "dev";
395
+ console.log();
396
+ console.log(c.bold("Keywords:"));
397
+ console.log(c.dim(" Only run review for sessions matching these keywords"));
398
+ const keywordsInput = await prompt(`Keywords (comma-separated) [${c.cyan(currentKeywords)}]: `);
399
+
400
+ if (keywordsInput) {
401
+ config.keywords = keywordsInput.split(",").map((k) => k.trim().toLowerCase()).filter(Boolean);
402
+ } else if (!existingConfig.keywords) {
403
+ config.keywords = ["dev"];
404
+ }
405
+
406
+ config.enabled = true;
407
+
408
+ return config;
409
+ }
410
+
411
+ async function install(args: string[]) {
412
+ console.log(`\n${c.bold("hook-checkdocs install")}\n`);
413
+
414
+ const installOptions = parseInstallArgs(args);
415
+ const target = await resolveTarget(args);
416
+ if (!target) return;
417
+
418
+ const settingsPath = getSettingsPath(target.path);
419
+ let settings = readSettings(settingsPath);
420
+
421
+ if (hookExists(settings)) {
422
+ console.log(c.yellow("!"), `Hook already installed in ${target.label}`);
423
+ if (!installOptions.nonInteractive) {
424
+ const update = await prompt("Update configuration? (y/n): ");
425
+ if (update.toLowerCase() !== "y") return;
426
+ }
427
+ // In non-interactive mode, proceed with update
428
+ } else {
429
+ settings = addHook(settings);
430
+ }
431
+
432
+ // Configure
433
+ const existingConfig = getConfig(settings);
434
+ const projectPath = target.path === "global" ? undefined : target.path;
435
+
436
+ let config: CheckDocsConfig;
437
+ if (installOptions.nonInteractive) {
438
+ // Non-interactive mode: use provided values or defaults
439
+ config = {
440
+ ...existingConfig,
441
+ editThreshold: installOptions.threshold ?? existingConfig.editThreshold ?? 3,
442
+ taskListId: installOptions.taskListId ?? existingConfig.taskListId,
443
+ keywords: installOptions.keywords ?? existingConfig.keywords ?? ["dev"],
444
+ enabled: true,
445
+ };
446
+ } else {
447
+ // Interactive mode: prompt for configuration
448
+ config = await promptForConfig(existingConfig, projectPath);
449
+ }
450
+
451
+ settings = setConfig(settings, config);
452
+
453
+ writeSettings(settingsPath, settings);
454
+
455
+ console.log();
456
+ console.log(c.green("V"), `Installed to ${target.label}`);
457
+ console.log();
458
+ console.log(c.bold("Configuration:"));
459
+ console.log(` Threshold: ${config.editThreshold || 3} edits`);
460
+ console.log(` Task list: ${config.taskListId || c.cyan("(auto-detect)")}`);
461
+ console.log(` Keywords: ${config.keywords?.join(", ") || "dev"}`);
462
+ console.log(` Async: ${c.green("yes")} (non-blocking)`);
463
+ console.log();
464
+ console.log(c.bold("Requires:"));
465
+ console.log(` - service-implementation CLI (for task dispatch)`);
466
+ console.log(` - claude CLI (for headless agent)`);
467
+ console.log();
468
+ }
469
+
470
+ async function configure(args: string[]) {
471
+ console.log(`\n${c.bold("hook-checkdocs config")}\n`);
472
+
473
+ const target = await resolveTarget(args);
474
+ if (!target) return;
475
+
476
+ const settingsPath = getSettingsPath(target.path);
477
+
478
+ if (!existsSync(settingsPath)) {
479
+ console.log(c.red("X"), `No settings file at ${settingsPath}`);
480
+ console.log(c.dim(" Run 'hook-checkdocs install' first"));
481
+ return;
482
+ }
483
+
484
+ let settings = readSettings(settingsPath);
485
+
486
+ if (!hookExists(settings)) {
487
+ console.log(c.red("X"), `Hook not installed in ${target.label}`);
488
+ console.log(c.dim(" Run 'hook-checkdocs install' first"));
489
+ return;
490
+ }
491
+
492
+ const existingConfig = getConfig(settings);
493
+ const projectPath = target.path === "global" ? undefined : target.path;
494
+ const config = await promptForConfig(existingConfig, projectPath);
495
+ settings = setConfig(settings, config);
496
+
497
+ writeSettings(settingsPath, settings);
498
+
499
+ console.log();
500
+ console.log(c.green("V"), `Configuration updated`);
501
+ console.log();
502
+ console.log(c.bold("New configuration:"));
503
+ console.log(` Threshold: ${config.editThreshold || 3} edits`);
504
+ console.log(` Task list: ${config.taskListId || c.cyan("(auto-detect)")}`);
505
+ console.log(` Keywords: ${config.keywords?.join(", ") || "dev"}`);
506
+ console.log();
507
+ }
508
+
509
+ async function uninstall(args: string[]) {
510
+ console.log(`\n${c.bold("hook-checkdocs uninstall")}\n`);
511
+
512
+ const target = await resolveTarget(args);
513
+ if (!target) return;
514
+
515
+ const settingsPath = getSettingsPath(target.path);
516
+
517
+ if (!existsSync(settingsPath)) {
518
+ console.log(c.yellow("!"), `No settings file at ${settingsPath}`);
519
+ return;
520
+ }
521
+
522
+ const settings = readSettings(settingsPath);
523
+
524
+ if (!hookExists(settings)) {
525
+ console.log(c.yellow("!"), `Hook not found in ${target.label}`);
526
+ return;
527
+ }
528
+
529
+ const updated = removeHook(settings);
530
+ writeSettings(settingsPath, updated);
531
+
532
+ console.log(c.green("V"), `Removed from ${target.label}`);
533
+ }
534
+
535
+ function status() {
536
+ console.log(`\n${c.bold("hook-checkdocs status")}\n`);
537
+
538
+ // Global
539
+ const globalPath = getSettingsPath("global");
540
+ const globalSettings = readSettings(globalPath);
541
+ const globalInstalled = hookExists(globalSettings);
542
+ const globalConfig = getConfig(globalSettings);
543
+
544
+ console.log(
545
+ globalInstalled ? c.green("V") : c.red("X"),
546
+ "Global:",
547
+ globalInstalled ? "Installed" : "Not installed",
548
+ c.dim(`(${globalPath})`)
549
+ );
550
+ if (globalInstalled) {
551
+ console.log(c.dim(` Threshold: ${globalConfig.editThreshold || 3}, List: ${globalConfig.taskListId || "(auto)"}`));
552
+ }
553
+
554
+ // Current directory
555
+ const cwd = process.cwd();
556
+ const projectPath = getSettingsPath(cwd);
557
+ if (existsSync(projectPath)) {
558
+ const projectSettings = readSettings(projectPath);
559
+ const projectInstalled = hookExists(projectSettings);
560
+ const projectConfig = getConfig(projectSettings);
561
+
562
+ console.log(
563
+ projectInstalled ? c.green("V") : c.red("X"),
564
+ "Project:",
565
+ projectInstalled ? "Installed" : "Not installed",
566
+ c.dim(`(${projectPath})`)
567
+ );
568
+ if (projectInstalled) {
569
+ console.log(c.dim(` Threshold: ${projectConfig.editThreshold || 3}, List: ${projectConfig.taskListId || "(auto)"}`));
570
+ }
571
+ } else {
572
+ console.log(c.dim("."), "Project:", c.dim("No .claude/settings.json"));
573
+ }
574
+
575
+ // Check dependencies
576
+ console.log();
577
+ console.log(c.bold("Dependencies:"));
578
+
579
+ try {
580
+ const { execSync } = require("child_process");
581
+ execSync("which service-implementation", { stdio: "pipe" });
582
+ console.log(c.green("V"), "service-implementation CLI");
583
+ } catch {
584
+ console.log(c.red("X"), "service-implementation CLI", c.dim("(required for task dispatch)"));
585
+ }
586
+
587
+ try {
588
+ const { execSync } = require("child_process");
589
+ execSync("which claude", { stdio: "pipe" });
590
+ console.log(c.green("V"), "claude CLI");
591
+ } catch {
592
+ console.log(c.red("X"), "claude CLI", c.dim("(required for headless review)"));
593
+ }
594
+
595
+ console.log();
596
+ }
597
+
598
+ // Main
599
+ const args = process.argv.slice(2);
600
+ const command = args[0];
601
+ const commandArgs = args.slice(1);
602
+
603
+ switch (command) {
604
+ case "install":
605
+ install(commandArgs);
606
+ break;
607
+ case "config":
608
+ configure(commandArgs);
609
+ break;
610
+ case "uninstall":
611
+ uninstall(commandArgs);
612
+ break;
613
+ case "run":
614
+ import("./hook.js").then((m) => m.run());
615
+ break;
616
+ case "status":
617
+ status();
618
+ break;
619
+ case "--help":
620
+ case "-h":
621
+ case undefined:
622
+ printUsage();
623
+ break;
624
+ default:
625
+ console.error(c.red(`Unknown command: ${command}`));
626
+ printUsage();
627
+ process.exit(1);
628
+ }