@wundr.io/cli 1.0.0 → 1.0.2-dev.20260530174250.ef0ec927

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 (230) hide show
  1. package/README.md +696 -280
  2. package/bin/wundr.js +13 -5
  3. package/package.json +30 -9
  4. package/src/ai/ai-service.ts +6 -4
  5. package/src/ai/claude-client.ts +6 -2
  6. package/src/ai/conversation-manager.ts +12 -5
  7. package/src/cli.ts +42 -13
  8. package/src/commands/ai.ts +340 -64
  9. package/src/commands/alignment.ts +1212 -0
  10. package/src/commands/analyze-optimized.ts +371 -33
  11. package/src/commands/analyze.ts +8 -6
  12. package/src/commands/batch.ts +166 -26
  13. package/src/commands/chat.ts +20 -10
  14. package/src/commands/claude-init.ts +31 -27
  15. package/src/commands/claude-setup.ts +761 -81
  16. package/src/commands/computer-setup.ts +524 -12
  17. package/src/commands/create-command.ts +3 -3
  18. package/src/commands/create.ts +9 -6
  19. package/src/commands/dashboard.ts +11 -6
  20. package/src/commands/govern.ts +11 -6
  21. package/src/commands/governance.ts +1005 -0
  22. package/src/commands/guardian.ts +887 -0
  23. package/src/commands/init.ts +104 -11
  24. package/src/commands/orchestrator.ts +789 -0
  25. package/src/commands/performance-optimizer.ts +15 -10
  26. package/src/commands/plugins.ts +8 -5
  27. package/src/commands/project-update.ts +1156 -0
  28. package/src/commands/rag.ts +1011 -0
  29. package/src/commands/session.ts +631 -0
  30. package/src/commands/setup.ts +42 -344
  31. package/src/commands/test-init.ts +3 -2
  32. package/src/commands/test.ts +3 -2
  33. package/src/commands/watch.ts +21 -11
  34. package/src/commands/worktree.ts +1057 -0
  35. package/src/context/context-manager.ts +5 -2
  36. package/src/context/session-manager.ts +18 -7
  37. package/src/framework/command-interface.ts +520 -0
  38. package/src/framework/command-registry.ts +942 -0
  39. package/src/framework/completion-exporter.ts +383 -0
  40. package/src/framework/debug-logger.ts +519 -0
  41. package/src/framework/error-handler.ts +867 -0
  42. package/src/framework/help-generator.ts +540 -0
  43. package/src/framework/index.ts +169 -0
  44. package/src/framework/interactive-repl.ts +703 -0
  45. package/src/framework/output-formatter.ts +834 -0
  46. package/src/framework/progress-manager.ts +539 -0
  47. package/src/index.ts +3 -2
  48. package/src/interactive/interactive-mode.ts +14 -7
  49. package/src/lib/conflict-resolution.ts +818 -0
  50. package/src/lib/merge-strategy.ts +550 -0
  51. package/src/lib/safety-mechanisms.ts +451 -0
  52. package/src/lib/state-detection.ts +1030 -0
  53. package/src/nlp/command-mapper.ts +8 -3
  54. package/src/nlp/command-parser.ts +5 -2
  55. package/src/nlp/intent-parser.ts +23 -9
  56. package/src/plugins/plugin-manager.ts +50 -24
  57. package/src/tests/computer-setup-integration.test.ts +470 -0
  58. package/src/types/index.ts +1 -1
  59. package/src/types/modules.d.ts +425 -1
  60. package/src/utils/backup-rollback-manager.ts +366 -0
  61. package/src/utils/claude-config-installer.ts +823 -0
  62. package/src/utils/config-manager.ts +9 -6
  63. package/src/utils/error-handler.ts +3 -1
  64. package/src/utils/logger.ts +35 -12
  65. package/templates/batch/ci-cd.yaml +7 -7
  66. package/test-suites/api/health.spec.ts +20 -23
  67. package/test-suites/helpers/test-config.ts +14 -13
  68. package/test-suites/ui/accessibility.spec.ts +27 -22
  69. package/test-suites/ui/smoke.spec.ts +26 -21
  70. package/dist/ai/ai-service.d.ts +0 -152
  71. package/dist/ai/ai-service.d.ts.map +0 -1
  72. package/dist/ai/ai-service.js +0 -430
  73. package/dist/ai/ai-service.js.map +0 -1
  74. package/dist/ai/claude-client.d.ts +0 -130
  75. package/dist/ai/claude-client.d.ts.map +0 -1
  76. package/dist/ai/claude-client.js +0 -339
  77. package/dist/ai/claude-client.js.map +0 -1
  78. package/dist/ai/conversation-manager.d.ts +0 -164
  79. package/dist/ai/conversation-manager.d.ts.map +0 -1
  80. package/dist/ai/conversation-manager.js +0 -612
  81. package/dist/ai/conversation-manager.js.map +0 -1
  82. package/dist/ai/index.d.ts +0 -5
  83. package/dist/ai/index.d.ts.map +0 -1
  84. package/dist/ai/index.js +0 -8
  85. package/dist/ai/index.js.map +0 -1
  86. package/dist/cli.d.ts +0 -36
  87. package/dist/cli.d.ts.map +0 -1
  88. package/dist/cli.js +0 -173
  89. package/dist/cli.js.map +0 -1
  90. package/dist/commands/ai.d.ts +0 -89
  91. package/dist/commands/ai.d.ts.map +0 -1
  92. package/dist/commands/ai.js +0 -735
  93. package/dist/commands/ai.js.map +0 -1
  94. package/dist/commands/analyze-optimized.d.ts +0 -14
  95. package/dist/commands/analyze-optimized.d.ts.map +0 -1
  96. package/dist/commands/analyze-optimized.js +0 -437
  97. package/dist/commands/analyze-optimized.js.map +0 -1
  98. package/dist/commands/analyze.d.ts +0 -65
  99. package/dist/commands/analyze.d.ts.map +0 -1
  100. package/dist/commands/analyze.js +0 -435
  101. package/dist/commands/analyze.js.map +0 -1
  102. package/dist/commands/batch.d.ts +0 -71
  103. package/dist/commands/batch.d.ts.map +0 -1
  104. package/dist/commands/batch.js +0 -738
  105. package/dist/commands/batch.js.map +0 -1
  106. package/dist/commands/chat.d.ts +0 -71
  107. package/dist/commands/chat.d.ts.map +0 -1
  108. package/dist/commands/chat.js +0 -674
  109. package/dist/commands/chat.js.map +0 -1
  110. package/dist/commands/claude-init.d.ts +0 -28
  111. package/dist/commands/claude-init.d.ts.map +0 -1
  112. package/dist/commands/claude-init.js +0 -587
  113. package/dist/commands/claude-init.js.map +0 -1
  114. package/dist/commands/claude-setup.d.ts +0 -32
  115. package/dist/commands/claude-setup.d.ts.map +0 -1
  116. package/dist/commands/claude-setup.js +0 -570
  117. package/dist/commands/claude-setup.js.map +0 -1
  118. package/dist/commands/computer-setup-commands.d.ts +0 -39
  119. package/dist/commands/computer-setup-commands.d.ts.map +0 -1
  120. package/dist/commands/computer-setup-commands.js +0 -563
  121. package/dist/commands/computer-setup-commands.js.map +0 -1
  122. package/dist/commands/computer-setup.d.ts +0 -7
  123. package/dist/commands/computer-setup.d.ts.map +0 -1
  124. package/dist/commands/computer-setup.js +0 -481
  125. package/dist/commands/computer-setup.js.map +0 -1
  126. package/dist/commands/create-command.d.ts +0 -7
  127. package/dist/commands/create-command.d.ts.map +0 -1
  128. package/dist/commands/create-command.js +0 -158
  129. package/dist/commands/create-command.js.map +0 -1
  130. package/dist/commands/create.d.ts +0 -74
  131. package/dist/commands/create.d.ts.map +0 -1
  132. package/dist/commands/create.js +0 -556
  133. package/dist/commands/create.js.map +0 -1
  134. package/dist/commands/dashboard.d.ts +0 -91
  135. package/dist/commands/dashboard.d.ts.map +0 -1
  136. package/dist/commands/dashboard.js +0 -537
  137. package/dist/commands/dashboard.js.map +0 -1
  138. package/dist/commands/govern.d.ts +0 -70
  139. package/dist/commands/govern.d.ts.map +0 -1
  140. package/dist/commands/govern.js +0 -480
  141. package/dist/commands/govern.js.map +0 -1
  142. package/dist/commands/init.d.ts +0 -55
  143. package/dist/commands/init.d.ts.map +0 -1
  144. package/dist/commands/init.js +0 -584
  145. package/dist/commands/init.js.map +0 -1
  146. package/dist/commands/performance-optimizer.d.ts +0 -30
  147. package/dist/commands/performance-optimizer.d.ts.map +0 -1
  148. package/dist/commands/performance-optimizer.js +0 -649
  149. package/dist/commands/performance-optimizer.js.map +0 -1
  150. package/dist/commands/plugins.d.ts +0 -87
  151. package/dist/commands/plugins.d.ts.map +0 -1
  152. package/dist/commands/plugins.js +0 -685
  153. package/dist/commands/plugins.js.map +0 -1
  154. package/dist/commands/setup.d.ts +0 -29
  155. package/dist/commands/setup.d.ts.map +0 -1
  156. package/dist/commands/setup.js +0 -399
  157. package/dist/commands/setup.js.map +0 -1
  158. package/dist/commands/test-init.d.ts +0 -9
  159. package/dist/commands/test-init.d.ts.map +0 -1
  160. package/dist/commands/test-init.js +0 -222
  161. package/dist/commands/test-init.js.map +0 -1
  162. package/dist/commands/test.d.ts +0 -25
  163. package/dist/commands/test.d.ts.map +0 -1
  164. package/dist/commands/test.js +0 -217
  165. package/dist/commands/test.js.map +0 -1
  166. package/dist/commands/watch.d.ts +0 -76
  167. package/dist/commands/watch.d.ts.map +0 -1
  168. package/dist/commands/watch.js +0 -610
  169. package/dist/commands/watch.js.map +0 -1
  170. package/dist/context/context-manager.d.ts +0 -155
  171. package/dist/context/context-manager.d.ts.map +0 -1
  172. package/dist/context/context-manager.js +0 -383
  173. package/dist/context/context-manager.js.map +0 -1
  174. package/dist/context/index.d.ts +0 -3
  175. package/dist/context/index.d.ts.map +0 -1
  176. package/dist/context/index.js +0 -6
  177. package/dist/context/index.js.map +0 -1
  178. package/dist/context/session-manager.d.ts +0 -207
  179. package/dist/context/session-manager.d.ts.map +0 -1
  180. package/dist/context/session-manager.js +0 -682
  181. package/dist/context/session-manager.js.map +0 -1
  182. package/dist/index.d.ts +0 -8
  183. package/dist/index.d.ts.map +0 -1
  184. package/dist/index.js +0 -51
  185. package/dist/index.js.map +0 -1
  186. package/dist/interactive/interactive-mode.d.ts +0 -76
  187. package/dist/interactive/interactive-mode.d.ts.map +0 -1
  188. package/dist/interactive/interactive-mode.js +0 -730
  189. package/dist/interactive/interactive-mode.js.map +0 -1
  190. package/dist/nlp/command-mapper.d.ts +0 -174
  191. package/dist/nlp/command-mapper.d.ts.map +0 -1
  192. package/dist/nlp/command-mapper.js +0 -623
  193. package/dist/nlp/command-mapper.js.map +0 -1
  194. package/dist/nlp/command-parser.d.ts +0 -106
  195. package/dist/nlp/command-parser.d.ts.map +0 -1
  196. package/dist/nlp/command-parser.js +0 -416
  197. package/dist/nlp/command-parser.js.map +0 -1
  198. package/dist/nlp/index.d.ts +0 -5
  199. package/dist/nlp/index.d.ts.map +0 -1
  200. package/dist/nlp/index.js +0 -8
  201. package/dist/nlp/index.js.map +0 -1
  202. package/dist/nlp/intent-classifier.d.ts +0 -59
  203. package/dist/nlp/intent-classifier.d.ts.map +0 -1
  204. package/dist/nlp/intent-classifier.js +0 -384
  205. package/dist/nlp/intent-classifier.js.map +0 -1
  206. package/dist/nlp/intent-parser.d.ts +0 -152
  207. package/dist/nlp/intent-parser.d.ts.map +0 -1
  208. package/dist/nlp/intent-parser.js +0 -739
  209. package/dist/nlp/intent-parser.js.map +0 -1
  210. package/dist/plugins/plugin-manager.d.ts +0 -120
  211. package/dist/plugins/plugin-manager.d.ts.map +0 -1
  212. package/dist/plugins/plugin-manager.js +0 -595
  213. package/dist/plugins/plugin-manager.js.map +0 -1
  214. package/dist/types/index.d.ts +0 -224
  215. package/dist/types/index.d.ts.map +0 -1
  216. package/dist/types/index.js +0 -3
  217. package/dist/types/index.js.map +0 -1
  218. package/dist/utils/config-manager.d.ts +0 -73
  219. package/dist/utils/config-manager.d.ts.map +0 -1
  220. package/dist/utils/config-manager.js +0 -339
  221. package/dist/utils/config-manager.js.map +0 -1
  222. package/dist/utils/error-handler.d.ts +0 -46
  223. package/dist/utils/error-handler.d.ts.map +0 -1
  224. package/dist/utils/error-handler.js +0 -169
  225. package/dist/utils/error-handler.js.map +0 -1
  226. package/dist/utils/logger.d.ts +0 -25
  227. package/dist/utils/logger.d.ts.map +0 -1
  228. package/dist/utils/logger.js +0 -94
  229. package/dist/utils/logger.js.map +0 -1
  230. package/src/commands/computer-setup-commands.ts +0 -709
package/bin/wundr.js CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  /**
4
4
  * Wundr CLI Entry Point
5
- *
5
+ *
6
6
  * This is the main executable for the Wundr CLI tool.
7
7
  * It handles cross-platform compatibility and bootstraps the CLI.
8
8
  */
@@ -26,14 +26,22 @@ if (isDevelopment && existsSync(srcPath)) {
26
26
  if (existsSync(distPath)) {
27
27
  require(distPath);
28
28
  } else {
29
- console.error('No compiled JavaScript found. Please run "npm run build" first.');
29
+ console.error(
30
+ 'No compiled JavaScript found. Please run "npm run build" first.'
31
+ );
30
32
  process.exit(1);
31
33
  }
32
34
  }
33
35
  } else if (existsSync(distPath)) {
34
36
  // Production: use compiled JavaScript
35
- require(distPath);
37
+ const cli = require(distPath);
38
+ // Call main() since require.main check in index.js won't trigger
39
+ if (typeof cli.main === 'function') {
40
+ cli.main();
41
+ }
36
42
  } else {
37
- console.error('Wundr CLI not properly installed. Please reinstall the package.');
43
+ console.error(
44
+ 'Wundr CLI not properly installed. Please reinstall the package.'
45
+ );
38
46
  process.exit(1);
39
- }
47
+ }
package/package.json CHANGED
@@ -1,8 +1,15 @@
1
1
  {
2
2
  "name": "@wundr.io/cli",
3
- "version": "1.0.0",
3
+ "version": "1.0.2-dev.20260530174250.ef0ec927",
4
4
  "description": "Unified CLI framework for the Wundr platform",
5
- "keywords": ["wundr", "cli", "commander", "interactive", "tui", "automation"],
5
+ "keywords": [
6
+ "wundr",
7
+ "cli",
8
+ "commander",
9
+ "interactive",
10
+ "tui",
11
+ "automation"
12
+ ],
6
13
  "homepage": "https://wundr.io",
7
14
  "bugs": {
8
15
  "url": "https://github.com/adapticai/wundr/issues"
@@ -23,7 +30,14 @@
23
30
  "bin": {
24
31
  "wundr": "./bin/wundr.js"
25
32
  },
26
- "files": ["dist", "bin", "src", "templates", "test-suites", "README.md"],
33
+ "files": [
34
+ "dist",
35
+ "bin",
36
+ "src",
37
+ "templates",
38
+ "test-suites",
39
+ "README.md"
40
+ ],
27
41
  "scripts": {
28
42
  "build": "tsc",
29
43
  "build:watch": "tsc --watch",
@@ -37,18 +51,24 @@
37
51
  "typecheck": "tsc --noEmit"
38
52
  },
39
53
  "dependencies": {
54
+ "@axe-core/playwright": "^4.10.0",
40
55
  "@oclif/core": "^3.15.0",
41
56
  "@oclif/plugin-help": "^6.0.0",
42
57
  "@oclif/plugin-plugins": "^4.1.0",
58
+ "@playwright/test": "^1.48.0",
43
59
  "@types/axios": "^0.9.36",
44
60
  "@types/open": "^6.2.1",
45
- "@wundr.io/computer-setup": "workspace:*",
46
- "@wundr.io/config": "workspace:*",
47
- "@wundr.io/core": "workspace:*",
61
+ "@wundr.io/computer-setup": "^1.0.2-dev.20260530174250.ef0ec927",
62
+ "@wundr.io/config": "^1.0.2-dev.20260530174250.ef0ec927",
63
+ "@wundr.io/core": "^1.0.2-dev.20260530174250.ef0ec927",
64
+ "@wundr.io/governance": "^1.0.2-dev.20260530174250.ef0ec927",
65
+ "@wundr.io/guardian-dashboard": "^1.0.2-dev.20260530174250.ef0ec927",
66
+ "@wundr.io/vp-daemon": "^1.0.6",
48
67
  "axios": "^1.11.0",
49
68
  "blessed": "^0.1.81",
50
69
  "blessed-contrib": "^4.11.0",
51
70
  "chalk": "^5.3.0",
71
+ "chokidar": "^3.5.3",
52
72
  "commander": "^11.1.0",
53
73
  "conf": "^12.0.0",
54
74
  "execa": "^8.0.1",
@@ -60,8 +80,6 @@
60
80
  "node-pty": "^1.0.0",
61
81
  "open": "^10.2.0",
62
82
  "ora": "^8.0.1",
63
- "@playwright/test": "^1.48.0",
64
- "@axe-core/playwright": "^4.10.0",
65
83
  "prompts": "^2.4.2",
66
84
  "rxjs": "^7.8.1",
67
85
  "terminal-kit": "^3.0.1",
@@ -90,7 +108,10 @@
90
108
  "bin": "wundr",
91
109
  "dirname": "wundr",
92
110
  "commands": "./dist/commands",
93
- "plugins": ["@oclif/plugin-help", "@oclif/plugin-plugins"],
111
+ "plugins": [
112
+ "@oclif/plugin-help",
113
+ "@oclif/plugin-plugins"
114
+ ],
94
115
  "topicSeparator": ":",
95
116
  "topics": {
96
117
  "init": {
@@ -1,7 +1,9 @@
1
- import { ClaudeClient, ClaudeMessage } from './claude-client';
2
- import { ConfigManager } from '../utils/config-manager';
1
+ import { ClaudeClient } from './claude-client';
3
2
  import { logger } from '../utils/logger';
4
- import { ChatSession, ChatMessage } from '../types';
3
+
4
+ import type { ChatSession, ChatMessage } from '../types';
5
+ import type { ClaudeMessage } from './claude-client';
6
+ import type { ConfigManager } from '../utils/config-manager';
5
7
 
6
8
  /**
7
9
  * AI service configuration
@@ -489,7 +491,7 @@ export class AIService {
489
491
 
490
492
  if (!configuredKey) {
491
493
  throw new Error(
492
- `AI API key not configured.\n\nTo set up AI features:\n1. Run: wundr ai setup\n2. Or set environment variable: export CLAUDE_API_KEY=your_key_here\n3. Or add to config: wundr ai config set apiKey your_key_here`
494
+ 'AI API key not configured.\n\nTo set up AI features:\n1. Run: wundr ai setup\n2. Or set environment variable: export CLAUDE_API_KEY=your_key_here\n3. Or add to config: wundr ai config set apiKey your_key_here'
493
495
  );
494
496
  }
495
497
 
@@ -1,6 +1,8 @@
1
1
  import axios from 'axios';
2
+
2
3
  import { logger } from '../utils/logger';
3
- import { WundrError } from '../types';
4
+
5
+ import type { WundrError } from '../types';
4
6
 
5
7
  /**
6
8
  * Claude API client configuration
@@ -183,7 +185,9 @@ export class ClaudeClient {
183
185
  for (const line of lines) {
184
186
  if (line.startsWith('data: ')) {
185
187
  const data = line.slice(6);
186
- if (data === '[DONE]') return;
188
+ if (data === '[DONE]') {
189
+ return;
190
+ }
187
191
 
188
192
  try {
189
193
  const parsed: ClaudeStreamChunk = JSON.parse(data);
@@ -1,10 +1,13 @@
1
1
  import { EventEmitter } from 'events';
2
- import fs from 'fs-extra';
3
2
  import path from 'path';
4
- import { ClaudeClient, ClaudeMessage } from './claude-client';
5
- import { ChatSession, ChatMessage } from '../types';
3
+
4
+ import fs from 'fs-extra';
5
+
6
6
  import { logger } from '../utils/logger';
7
7
 
8
+ import type { ClaudeClient, ClaudeMessage } from './claude-client';
9
+ import type { ChatSession, ChatMessage } from '../types';
10
+
8
11
  /**
9
12
  * Configuration for conversation management
10
13
  */
@@ -439,7 +442,9 @@ export class ConversationManager extends EventEmitter {
439
442
  getSessionStats(sessionId?: string): any {
440
443
  if (sessionId) {
441
444
  const session = this.activeSessions.get(sessionId);
442
- if (!session) return null;
445
+ if (!session) {
446
+ return null;
447
+ }
443
448
 
444
449
  return {
445
450
  messageCount: session.history.length,
@@ -660,7 +665,9 @@ export class ConversationManager extends EventEmitter {
660
665
  const recent = messages.slice(-recentCount);
661
666
  const older = messages.slice(0, -recentCount);
662
667
 
663
- if (older.length === 0) return recent;
668
+ if (older.length === 0) {
669
+ return recent;
670
+ }
664
671
 
665
672
  const summary: ChatMessage = {
666
673
  role: 'system',
package/src/cli.ts CHANGED
@@ -1,26 +1,36 @@
1
1
  import { Command } from 'commander';
2
+
2
3
  import { version } from '../package.json';
3
- import { InteractiveMode } from './interactive/interactive-mode';
4
- import { PluginManager } from './plugins/plugin-manager';
5
- import { ConfigManager } from './utils/config-manager';
6
- import { logger } from './utils/logger';
7
4
 
8
5
  // Import command modules
9
- import { InitCommands } from './commands/init';
10
- import { CreateCommands } from './commands/create';
11
- import { AnalyzeCommands } from './commands/analyze';
12
- import { GovernCommands } from './commands/govern';
13
6
  import { AICommands } from './commands/ai';
14
- import { DashboardCommands } from './commands/dashboard';
15
- import { WatchCommands } from './commands/watch';
7
+ import { AnalyzeCommands } from './commands/analyze';
16
8
  import { BatchCommands } from './commands/batch';
17
9
  import { ChatCommands } from './commands/chat';
10
+ import claudeInitCommand from './commands/claude-init';
11
+ import claudeSetupCommand from './commands/claude-setup';
12
+ import { createComputerSetupCommand } from './commands/computer-setup';
13
+ import { CreateCommands } from './commands/create';
14
+ import { createGuardianCommand } from './commands/guardian';
15
+ import { createRAGCommand } from './commands/rag';
16
+ import { createSessionCommand } from './commands/session';
17
+ import { createOrchestratorCommand } from './commands/orchestrator';
18
+ import { createWorktreeCommand } from './commands/worktree';
19
+ import { DashboardCommands } from './commands/dashboard';
20
+ import { GovernCommands } from './commands/govern';
21
+ import {
22
+ createGovernanceCommand,
23
+ createAlignmentCommand,
24
+ } from './commands/governance';
25
+ import { InitCommands } from './commands/init';
18
26
  import { PluginCommands } from './commands/plugins';
19
27
  import { SetupCommands } from './commands/setup';
20
- import { createComputerSetupCommand } from './commands/computer-setup';
21
28
  import { createTestCommand } from './commands/test';
22
- import claudeInitCommand from './commands/claude-init';
23
- import claudeSetupCommand from './commands/claude-setup';
29
+ import { WatchCommands } from './commands/watch';
30
+ import { InteractiveMode } from './interactive/interactive-mode';
31
+ import { PluginManager } from './plugins/plugin-manager';
32
+ import { ConfigManager } from './utils/config-manager';
33
+ import { logger } from './utils/logger';
24
34
 
25
35
  /**
26
36
  * Main CLI class that orchestrates all commands and modes
@@ -85,6 +95,10 @@ The Unified Developer Platform
85
95
  new AnalyzeCommands(this.program, this.configManager, this.pluginManager);
86
96
  new GovernCommands(this.program, this.configManager, this.pluginManager);
87
97
 
98
+ // IPRE Governance Commands (governance/gov, alignment)
99
+ this.program.addCommand(createGovernanceCommand());
100
+ this.program.addCommand(createAlignmentCommand());
101
+
88
102
  // Project Management
89
103
  new InitCommands(this.program, this.configManager, this.pluginManager);
90
104
  new CreateCommands(this.program, this.configManager, this.pluginManager);
@@ -100,6 +114,21 @@ The Unified Developer Platform
100
114
  // Testing
101
115
  this.program.addCommand(createTestCommand());
102
116
 
117
+ // RAG (Retrieval-Augmented Generation)
118
+ this.program.addCommand(createRAGCommand());
119
+
120
+ // Session Management
121
+ this.program.addCommand(createSessionCommand());
122
+
123
+ // Orchestrator Daemon Management
124
+ this.program.addCommand(createOrchestratorCommand());
125
+
126
+ // Guardian Dashboard
127
+ this.program.addCommand(createGuardianCommand());
128
+
129
+ // Worktree Management
130
+ this.program.addCommand(createWorktreeCommand());
131
+
103
132
  // Interactive Modes
104
133
  new ChatCommands(this.program, this.configManager, this.pluginManager);
105
134