@mrpatronz/nexusflow 0.2.13 โ†’ 0.2.17

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 (186) hide show
  1. package/.github/dependabot.yml +52 -52
  2. package/.github/workflows/dependabot-merge.yml +53 -0
  3. package/.github/workflows/release.yml +112 -100
  4. package/.vscode/launch.json +17 -17
  5. package/.vscode/tasks.json +17 -17
  6. package/GETTING_STARTED.md +114 -109
  7. package/README.md +336 -311
  8. package/desktop/build-installer.js +228 -0
  9. package/desktop/build.js +118 -0
  10. package/desktop/installer/nexusflow.iss +35 -0
  11. package/desktop/neutralino.config.json +39 -0
  12. package/desktop/package-lock.json +1060 -0
  13. package/desktop/package.json +14 -0
  14. package/dist/commands/desktop.d.ts +12 -0
  15. package/dist/commands/desktop.d.ts.map +1 -0
  16. package/dist/commands/desktop.js +119 -0
  17. package/dist/commands/desktop.js.map +1 -0
  18. package/dist/commands/sync.d.ts.map +1 -1
  19. package/dist/commands/sync.js +1 -3
  20. package/dist/commands/sync.js.map +1 -1
  21. package/dist/commands/tui.d.ts +8 -0
  22. package/dist/commands/tui.d.ts.map +1 -0
  23. package/dist/commands/tui.js +386 -0
  24. package/dist/commands/tui.js.map +1 -0
  25. package/dist/commands/ui.d.ts +3 -1
  26. package/dist/commands/ui.d.ts.map +1 -1
  27. package/dist/commands/ui.js +76 -19
  28. package/dist/commands/ui.js.map +1 -1
  29. package/dist/generators/base.d.ts.map +1 -1
  30. package/dist/generators/base.js +78 -66
  31. package/dist/generators/base.js.map +1 -1
  32. package/dist/generators/codex.js +11 -11
  33. package/dist/generators/copilot.js +17 -17
  34. package/dist/generators/cursor.js +5 -5
  35. package/dist/generators/index.js +50 -50
  36. package/dist/generators/map-generator.js +14 -14
  37. package/dist/generators/skills-generator.js +28 -28
  38. package/dist/gui/app_logo.png +0 -0
  39. package/dist/gui/assets/index-Ct3qq-X4.js +25 -0
  40. package/dist/gui/assets/index-P_ZrgHXg.css +1 -0
  41. package/dist/gui/icons.svg +24 -24
  42. package/dist/gui/index.html +18 -18
  43. package/dist/index.js +43 -0
  44. package/dist/index.js.map +1 -1
  45. package/dist/server.d.ts.map +1 -1
  46. package/dist/server.js +182 -1
  47. package/dist/server.js.map +1 -1
  48. package/dist/server.test.js +78 -0
  49. package/dist/server.test.js.map +1 -1
  50. package/dist/types.d.ts +4 -0
  51. package/dist/types.d.ts.map +1 -1
  52. package/dist/utils/git.d.ts +16 -0
  53. package/dist/utils/git.d.ts.map +1 -1
  54. package/dist/utils/git.js +52 -0
  55. package/dist/utils/git.js.map +1 -1
  56. package/dist/utils/multi-git.d.ts +2 -0
  57. package/dist/utils/multi-git.d.ts.map +1 -1
  58. package/dist/utils/multi-git.js +5 -2
  59. package/dist/utils/multi-git.js.map +1 -1
  60. package/dist/utils/update-check.d.ts +3 -1
  61. package/dist/utils/update-check.d.ts.map +1 -1
  62. package/dist/utils/update-check.js +23 -6
  63. package/dist/utils/update-check.js.map +1 -1
  64. package/dist/utils/workflows.d.ts +11 -0
  65. package/dist/utils/workflows.d.ts.map +1 -0
  66. package/dist/utils/workflows.js +156 -0
  67. package/dist/utils/workflows.js.map +1 -0
  68. package/dist/utils/workflows.test.d.ts +2 -0
  69. package/dist/utils/workflows.test.d.ts.map +1 -0
  70. package/dist/utils/workflows.test.js +86 -0
  71. package/dist/utils/workflows.test.js.map +1 -0
  72. package/extension/media/icon.svg +1 -0
  73. package/extension/package-lock.json +2673 -2811
  74. package/extension/package.json +108 -70
  75. package/extension/src/extension.ts +631 -204
  76. package/extension/tsconfig.json +21 -19
  77. package/gui/README.md +73 -73
  78. package/gui/e2e/wizard.spec.ts +346 -327
  79. package/gui/eslint.config.js +26 -26
  80. package/gui/index.html +17 -17
  81. package/gui/package-lock.json +3079 -3118
  82. package/gui/package.json +36 -36
  83. package/gui/playwright.config.ts +41 -41
  84. package/gui/public/app_logo.png +0 -0
  85. package/gui/public/icons.svg +24 -24
  86. package/gui/src/App.css +1 -1
  87. package/gui/src/App.tsx +3407 -2722
  88. package/gui/src/assets/vite.svg +1 -1
  89. package/gui/src/features/changes/ChangesViewer.tsx +388 -388
  90. package/gui/src/features/knowledge/KnowledgeBase.tsx +84 -84
  91. package/gui/src/features/onboarding/OnboardingWizard.tsx +230 -230
  92. package/gui/src/features/plan/ImplementationPlan.tsx +32 -32
  93. package/gui/src/features/services/ServiceConsole.tsx +250 -250
  94. package/gui/src/features/sessions/SessionHistory.tsx +195 -195
  95. package/gui/src/features/workspace/WorkspaceList.tsx +666 -666
  96. package/gui/src/index.css +152 -110
  97. package/gui/src/main.tsx +94 -10
  98. package/gui/src/types.ts +62 -62
  99. package/gui/tsconfig.app.json +25 -25
  100. package/gui/tsconfig.json +7 -7
  101. package/gui/tsconfig.node.json +24 -24
  102. package/gui/vite.config.ts +12 -12
  103. package/package.json +56 -56
  104. package/resources/workflows/plan-implement-review.md +8 -0
  105. package/resources/workflows/research-verify.md +6 -0
  106. package/resources/workflows/solo-developer.md +3 -0
  107. package/scripts/simulate-workspaces.ts +55 -55
  108. package/src/analyzers/detect-apis.ts +290 -290
  109. package/src/analyzers/detect-deps.ts +315 -315
  110. package/src/analyzers/detect-existing.ts +74 -74
  111. package/src/analyzers/detect-ports.ts +110 -110
  112. package/src/analyzers/index.ts +97 -97
  113. package/src/analyzers/messaging-analyzer.ts +254 -254
  114. package/src/analyzers/readme-summarizer.ts +102 -102
  115. package/src/analyzers/run-analyzer.ts +269 -269
  116. package/src/analyzers/tech-stack.ts +283 -283
  117. package/src/commands/add-repo.ts +157 -157
  118. package/src/commands/commands.test.ts +155 -155
  119. package/src/commands/commit.ts +131 -131
  120. package/src/commands/create.ts +207 -207
  121. package/src/commands/desktop.ts +128 -0
  122. package/src/commands/diff.ts +125 -125
  123. package/src/commands/doctor.ts +357 -357
  124. package/src/commands/handoff.ts +266 -266
  125. package/src/commands/init.ts +134 -134
  126. package/src/commands/list.ts +46 -46
  127. package/src/commands/logs.ts +63 -63
  128. package/src/commands/mcp.ts +92 -92
  129. package/src/commands/open.ts +129 -129
  130. package/src/commands/pack.ts +73 -73
  131. package/src/commands/refresh.ts +147 -147
  132. package/src/commands/remove.ts +98 -98
  133. package/src/commands/start.ts +117 -117
  134. package/src/commands/status.ts +54 -54
  135. package/src/commands/stop.ts +55 -55
  136. package/src/commands/sync.ts +151 -153
  137. package/src/commands/tui.ts +424 -0
  138. package/src/commands/ui.ts +111 -47
  139. package/src/core/config.test.ts +96 -96
  140. package/src/core/config.ts +115 -115
  141. package/src/core/graph.ts +344 -344
  142. package/src/core/packer.test.ts +99 -99
  143. package/src/core/packer.ts +107 -107
  144. package/src/core/scanner.test.ts +61 -61
  145. package/src/core/scanner.ts +91 -91
  146. package/src/core/workspace.ts +380 -380
  147. package/src/core/worktree.ts +120 -120
  148. package/src/generators/antigravity.ts +32 -32
  149. package/src/generators/base.ts +240 -227
  150. package/src/generators/claude.ts +34 -34
  151. package/src/generators/codex.ts +48 -48
  152. package/src/generators/copilot.ts +56 -56
  153. package/src/generators/cursor.ts +44 -44
  154. package/src/generators/index.ts +250 -250
  155. package/src/generators/map-generator.test.ts +159 -159
  156. package/src/generators/map-generator.ts +542 -542
  157. package/src/generators/plan-generator.ts +481 -481
  158. package/src/generators/skills-generator.ts +259 -259
  159. package/src/index.ts +426 -382
  160. package/src/mcp/server.ts +294 -294
  161. package/src/orchestration/detect.ts +313 -313
  162. package/src/orchestration/index.ts +7 -7
  163. package/src/orchestration/runner.ts +283 -283
  164. package/src/server.test.ts +555 -464
  165. package/src/server.ts +1308 -1104
  166. package/src/types.ts +408 -403
  167. package/src/utils/detect-ai.test.ts +44 -44
  168. package/src/utils/detect-ai.ts +84 -84
  169. package/src/utils/detect-editors.test.ts +48 -48
  170. package/src/utils/detect-editors.ts +57 -57
  171. package/src/utils/git.test.ts +74 -74
  172. package/src/utils/git.ts +117 -61
  173. package/src/utils/local-ai.test.ts +130 -130
  174. package/src/utils/local-ai.ts +111 -111
  175. package/src/utils/multi-git.ts +313 -306
  176. package/src/utils/prompts.ts +209 -209
  177. package/src/utils/session-finder.ts +483 -483
  178. package/src/utils/system-scanner.test.ts +89 -89
  179. package/src/utils/system-scanner.ts +96 -96
  180. package/src/utils/update-check.ts +309 -275
  181. package/src/utils/workflows.test.ts +114 -0
  182. package/src/utils/workflows.ts +178 -0
  183. package/tsconfig.json +19 -19
  184. package/vitest.config.ts +14 -14
  185. package/dist/gui/assets/index-CFWwqFux.js +0 -23
  186. package/dist/gui/assets/index-Dvc9QMvl.css +0 -2
@@ -1,266 +1,266 @@
1
- import chalk from 'chalk';
2
- import { select } from '@inquirer/prompts';
3
- import * as path from 'node:path';
4
- import * as fs from 'node:fs/promises';
5
- import { execa } from 'execa';
6
-
7
- import { loadConfig } from '../core/config.js';
8
- import { listWorkspaces, loadFeatureConfig } from '../core/workspace.js';
9
- import { getWorkspaceRepos, getRepoStatus } from '../utils/multi-git.js';
10
- import { analyzeAllRepos } from '../analyzers/index.js';
11
- import { buildDependencyGraph } from '../generators/plan-generator.js';
12
-
13
- /**
14
- * Runs the handoff command.
15
- * Auto-detects workspace from CWD or prompts user to select one.
16
- *
17
- * @param workspaceArg - Optional workspace path from CLI.
18
- */
19
- export async function handoffCommand(workspaceArg?: string): Promise<void> {
20
- console.log(chalk.bold.cyan('\n๐Ÿค NexusFlow โ€” Handoff Bundle\n'));
21
-
22
- const workspacePath = await resolveWorkspace(workspaceArg);
23
- if (!workspacePath) return;
24
-
25
- const feature = await loadFeatureConfig(workspacePath);
26
- if (!feature) {
27
- console.error(chalk.red('โœ– Failed to load workspace configuration. Ensure nexusflow.json exists.'));
28
- return;
29
- }
30
-
31
- const allRepos = await Promise.all(
32
- feature.repos.map(async (r) => {
33
- const repoName = path.basename(r);
34
- return {
35
- name: repoName,
36
- path: r,
37
- defaultBranch: 'main',
38
- };
39
- })
40
- );
41
-
42
- console.log(chalk.cyan('Retrieving repository statuses and running analysis...'));
43
- const analysis = await analyzeAllRepos(allRepos);
44
-
45
- const reposStatusInfo = await Promise.all(
46
- allRepos.map(async (repo) => {
47
- const status = await getRepoStatus(repo.path);
48
- const branch = await getRepoBranch(repo.path);
49
- const repoAnalysis = analysis.get(repo.path);
50
-
51
- const suggestedFiles = getSuggestedFiles(repo.path, status.changedFiles, repoAnalysis);
52
- const testCommand = getTestCommand(repo.path, repoAnalysis);
53
-
54
- return {
55
- name: repo.name,
56
- path: repo.path,
57
- branch,
58
- dirtySummary: status.summary,
59
- isDirty: status.hasChanges,
60
- changedFiles: status.changedFiles,
61
- suggestedFiles,
62
- testCommand,
63
- };
64
- })
65
- );
66
-
67
- // Parse knowledge from nexusflow-knowledge.md if it exists
68
- const knowledgePath = path.join(workspacePath, 'nexusflow-knowledge.md');
69
- let extractedGotchas = '_None recorded yet._';
70
- let extractedDecisions = '_None recorded yet._';
71
- let extractedQuestions = '_None recorded yet._';
72
-
73
- try {
74
- const knowledgeContent = await fs.readFile(knowledgePath, 'utf-8');
75
- extractedGotchas = extractSection(knowledgeContent, 'Known Gotchas');
76
- extractedDecisions = extractSection(knowledgeContent, 'Architecture Decisions');
77
- extractedQuestions = extractSection(knowledgeContent, 'Clarifying Questions for the User');
78
- } catch {}
79
-
80
- // Build dependency description
81
- let depGraphDescription = '';
82
- try {
83
- const graph = buildDependencyGraph(analysis, allRepos);
84
- const relations: string[] = [];
85
- for (const [name, node] of graph) {
86
- if (node.dependsOn.length > 0) {
87
- relations.push(`- **${name}** depends on: ${node.dependsOn.map(d => `\`${d}\``).join(', ')}`);
88
- }
89
- }
90
- depGraphDescription = relations.length > 0 ? relations.join('\n') : '_No inter-repo package dependencies detected._';
91
- } catch {
92
- depGraphDescription = '_Error generating dependency graph._';
93
- }
94
-
95
- const timestamp = new Date().toISOString();
96
-
97
- // Format handoff bundle
98
- const md: string[] = [];
99
- md.push(`# NexusFlow Handoff Bundle โ€” ${feature.branchName}`);
100
- md.push('');
101
- md.push(`> **Workspace Path:** \`${workspacePath}\``);
102
- md.push(`> **Current Branch:** \`${feature.branchName}\``);
103
- md.push(`> **Generated:** ${timestamp} (UTC)`);
104
- md.push('> **Instruction:** Read this handoff bundle first to resume context immediately.');
105
- md.push('');
106
- md.push('## ๐Ÿ“‹ Repository Statuses');
107
- md.push('');
108
- md.push('| Repository | Branch | Git Status | Suggested Files to Read |');
109
- md.push('|---|---|---|---|');
110
-
111
- for (const r of reposStatusInfo) {
112
- const filesList = r.suggestedFiles.map(f => `\`${f}\``).join(', ') || 'โ€”';
113
- const statusText = r.isDirty ? `โš ๏ธ ${r.dirtySummary}` : 'โœ… Clean';
114
- md.push(`| **${r.name}** | \`${r.branch}\` | ${statusText} | ${filesList} |`);
115
- }
116
- md.push('');
117
-
118
- md.push('## ๐Ÿงช Verification & Run Commands');
119
- md.push('');
120
- for (const r of reposStatusInfo) {
121
- md.push(`- **${r.name}**: \`${r.testCommand}\``);
122
- }
123
- md.push('');
124
-
125
- md.push('## ๐Ÿ—๏ธ Inter-Repo Package Graph');
126
- md.push('');
127
- md.push(depGraphDescription);
128
- md.push('');
129
-
130
- md.push('## ๐Ÿ“ Active Session Context (from nexusflow-knowledge.md)');
131
- md.push('');
132
- md.push('### Open Gotchas & Blockers');
133
- md.push(extractedGotchas);
134
- md.push('');
135
- md.push('### Recent Architecture Decisions');
136
- md.push(extractedDecisions);
137
- md.push('');
138
- md.push('### Outstanding Clarifying Questions');
139
- md.push(extractedQuestions);
140
- md.push('');
141
-
142
- const handoffFilePath = path.join(workspacePath, 'nexusflow-handoff.md');
143
- await fs.writeFile(handoffFilePath, md.join('\n'), 'utf-8');
144
-
145
- console.log(chalk.green(`\nโœ… Generated handoff bundle: ${chalk.bold('nexusflow-handoff.md')}`));
146
- console.log(chalk.dim(` Path: ${handoffFilePath}\n`));
147
- }
148
-
149
- /**
150
- * Gets the current branch name of a repository.
151
- */
152
- async function getRepoBranch(repoPath: string): Promise<string> {
153
- try {
154
- const { stdout } = await execa('git', ['rev-parse', '--abbrev-ref', 'HEAD'], { cwd: repoPath });
155
- return stdout.trim();
156
- } catch {
157
- return 'unknown';
158
- }
159
- }
160
-
161
- /**
162
- * Determines a candidate list of files to read first.
163
- */
164
- function getSuggestedFiles(repoPath: string, dirtyFiles: string[], analysis?: any): string[] {
165
- if (dirtyFiles.length > 0) {
166
- return dirtyFiles.slice(0, 3).map(f => f.replace(/\\/g, '/'));
167
- }
168
-
169
- const suggestions: string[] = [];
170
- if (analysis && analysis.runConfig && analysis.runConfig.entryPoints) {
171
- for (const ep of analysis.runConfig.entryPoints) {
172
- if (ep.projectPath && !suggestions.includes(ep.projectPath)) {
173
- suggestions.push(ep.projectPath);
174
- }
175
- }
176
- }
177
-
178
- suggestions.push('README.md');
179
- return suggestions.slice(0, 3);
180
- }
181
-
182
- /**
183
- * Resolves correct test command.
184
- */
185
- function getTestCommand(repoPath: string, analysis?: any): string {
186
- if (analysis) {
187
- if (analysis.techStack.languages.includes('csharp')) {
188
- return 'dotnet test';
189
- }
190
- if (analysis.techStack.languages.includes('typescript') || analysis.techStack.languages.includes('javascript')) {
191
- return 'npm test';
192
- }
193
- if (analysis.techStack.languages.includes('python')) {
194
- return 'pytest';
195
- }
196
- if (analysis.techStack.languages.includes('go')) {
197
- return 'go test ./...';
198
- }
199
- }
200
- return 'npm test'; // fallback
201
- }
202
-
203
- /**
204
- * Extracts a specific section from the knowledge file.
205
- */
206
- function extractSection(content: string, header: string): string {
207
- const lines = content.split('\n');
208
- const index = lines.findIndex(l => l.trim().startsWith(`## ${header}`));
209
- if (index === -1) return '_None recorded yet._';
210
-
211
- const resultLines: string[] = [];
212
- for (let i = index + 1; i < lines.length; i++) {
213
- if (lines[i]!.trim().startsWith('##')) break;
214
- resultLines.push(lines[i]!);
215
- }
216
-
217
- const sectionContent = resultLines.join('\n').trim();
218
- if (
219
- !sectionContent ||
220
- sectionContent.includes('No assumptions recorded yet') ||
221
- sectionContent.includes('No open questions recorded yet') ||
222
- sectionContent.includes('No decisions recorded yet') ||
223
- sectionContent.includes('No gotchas recorded yet') ||
224
- sectionContent.includes('AI assistant to populate')
225
- ) {
226
- return '_None recorded yet._';
227
- }
228
- return sectionContent;
229
- }
230
-
231
- /**
232
- * Resolves a workspace path.
233
- */
234
- async function resolveWorkspace(workspaceArg?: string): Promise<string | null> {
235
- if (workspaceArg) {
236
- const absolutePath = path.resolve(workspaceArg);
237
- try {
238
- await fs.access(path.join(absolutePath, 'nexusflow.json'));
239
- return absolutePath;
240
- } catch {
241
- console.error(chalk.red(`โœ– Invalid workspace: No nexusflow.json found at ${absolutePath}`));
242
- return null;
243
- }
244
- }
245
-
246
- const cwdFeature = await loadFeatureConfig(process.cwd());
247
- if (cwdFeature) return cwdFeature.workspacePath;
248
-
249
- const config = await loadConfig();
250
- const workspaces = await listWorkspaces(config.workspacesDir);
251
-
252
- if (workspaces.length === 0) {
253
- console.log(chalk.yellow('No workspaces found.\n'));
254
- return null;
255
- }
256
-
257
- const selected = await select({
258
- message: 'Select a workspace:',
259
- choices: workspaces.map((ws) => ({
260
- name: `${ws.branchName} ${chalk.dim(`(${ws.repos.length} repos)`)}`,
261
- value: ws.workspacePath,
262
- })),
263
- });
264
-
265
- return selected;
266
- }
1
+ import chalk from 'chalk';
2
+ import { select } from '@inquirer/prompts';
3
+ import * as path from 'node:path';
4
+ import * as fs from 'node:fs/promises';
5
+ import { execa } from 'execa';
6
+
7
+ import { loadConfig } from '../core/config.js';
8
+ import { listWorkspaces, loadFeatureConfig } from '../core/workspace.js';
9
+ import { getWorkspaceRepos, getRepoStatus } from '../utils/multi-git.js';
10
+ import { analyzeAllRepos } from '../analyzers/index.js';
11
+ import { buildDependencyGraph } from '../generators/plan-generator.js';
12
+
13
+ /**
14
+ * Runs the handoff command.
15
+ * Auto-detects workspace from CWD or prompts user to select one.
16
+ *
17
+ * @param workspaceArg - Optional workspace path from CLI.
18
+ */
19
+ export async function handoffCommand(workspaceArg?: string): Promise<void> {
20
+ console.log(chalk.bold.cyan('\n๐Ÿค NexusFlow โ€” Handoff Bundle\n'));
21
+
22
+ const workspacePath = await resolveWorkspace(workspaceArg);
23
+ if (!workspacePath) return;
24
+
25
+ const feature = await loadFeatureConfig(workspacePath);
26
+ if (!feature) {
27
+ console.error(chalk.red('โœ– Failed to load workspace configuration. Ensure nexusflow.json exists.'));
28
+ return;
29
+ }
30
+
31
+ const allRepos = await Promise.all(
32
+ feature.repos.map(async (r) => {
33
+ const repoName = path.basename(r);
34
+ return {
35
+ name: repoName,
36
+ path: r,
37
+ defaultBranch: 'main',
38
+ };
39
+ })
40
+ );
41
+
42
+ console.log(chalk.cyan('Retrieving repository statuses and running analysis...'));
43
+ const analysis = await analyzeAllRepos(allRepos);
44
+
45
+ const reposStatusInfo = await Promise.all(
46
+ allRepos.map(async (repo) => {
47
+ const status = await getRepoStatus(repo.path);
48
+ const branch = await getRepoBranch(repo.path);
49
+ const repoAnalysis = analysis.get(repo.path);
50
+
51
+ const suggestedFiles = getSuggestedFiles(repo.path, status.changedFiles, repoAnalysis);
52
+ const testCommand = getTestCommand(repo.path, repoAnalysis);
53
+
54
+ return {
55
+ name: repo.name,
56
+ path: repo.path,
57
+ branch,
58
+ dirtySummary: status.summary,
59
+ isDirty: status.hasChanges,
60
+ changedFiles: status.changedFiles,
61
+ suggestedFiles,
62
+ testCommand,
63
+ };
64
+ })
65
+ );
66
+
67
+ // Parse knowledge from nexusflow-knowledge.md if it exists
68
+ const knowledgePath = path.join(workspacePath, 'nexusflow-knowledge.md');
69
+ let extractedGotchas = '_None recorded yet._';
70
+ let extractedDecisions = '_None recorded yet._';
71
+ let extractedQuestions = '_None recorded yet._';
72
+
73
+ try {
74
+ const knowledgeContent = await fs.readFile(knowledgePath, 'utf-8');
75
+ extractedGotchas = extractSection(knowledgeContent, 'Known Gotchas');
76
+ extractedDecisions = extractSection(knowledgeContent, 'Architecture Decisions');
77
+ extractedQuestions = extractSection(knowledgeContent, 'Clarifying Questions for the User');
78
+ } catch {}
79
+
80
+ // Build dependency description
81
+ let depGraphDescription = '';
82
+ try {
83
+ const graph = buildDependencyGraph(analysis, allRepos);
84
+ const relations: string[] = [];
85
+ for (const [name, node] of graph) {
86
+ if (node.dependsOn.length > 0) {
87
+ relations.push(`- **${name}** depends on: ${node.dependsOn.map(d => `\`${d}\``).join(', ')}`);
88
+ }
89
+ }
90
+ depGraphDescription = relations.length > 0 ? relations.join('\n') : '_No inter-repo package dependencies detected._';
91
+ } catch {
92
+ depGraphDescription = '_Error generating dependency graph._';
93
+ }
94
+
95
+ const timestamp = new Date().toISOString();
96
+
97
+ // Format handoff bundle
98
+ const md: string[] = [];
99
+ md.push(`# NexusFlow Handoff Bundle โ€” ${feature.branchName}`);
100
+ md.push('');
101
+ md.push(`> **Workspace Path:** \`${workspacePath}\``);
102
+ md.push(`> **Current Branch:** \`${feature.branchName}\``);
103
+ md.push(`> **Generated:** ${timestamp} (UTC)`);
104
+ md.push('> **Instruction:** Read this handoff bundle first to resume context immediately.');
105
+ md.push('');
106
+ md.push('## ๐Ÿ“‹ Repository Statuses');
107
+ md.push('');
108
+ md.push('| Repository | Branch | Git Status | Suggested Files to Read |');
109
+ md.push('|---|---|---|---|');
110
+
111
+ for (const r of reposStatusInfo) {
112
+ const filesList = r.suggestedFiles.map(f => `\`${f}\``).join(', ') || 'โ€”';
113
+ const statusText = r.isDirty ? `โš ๏ธ ${r.dirtySummary}` : 'โœ… Clean';
114
+ md.push(`| **${r.name}** | \`${r.branch}\` | ${statusText} | ${filesList} |`);
115
+ }
116
+ md.push('');
117
+
118
+ md.push('## ๐Ÿงช Verification & Run Commands');
119
+ md.push('');
120
+ for (const r of reposStatusInfo) {
121
+ md.push(`- **${r.name}**: \`${r.testCommand}\``);
122
+ }
123
+ md.push('');
124
+
125
+ md.push('## ๐Ÿ—๏ธ Inter-Repo Package Graph');
126
+ md.push('');
127
+ md.push(depGraphDescription);
128
+ md.push('');
129
+
130
+ md.push('## ๐Ÿ“ Active Session Context (from nexusflow-knowledge.md)');
131
+ md.push('');
132
+ md.push('### Open Gotchas & Blockers');
133
+ md.push(extractedGotchas);
134
+ md.push('');
135
+ md.push('### Recent Architecture Decisions');
136
+ md.push(extractedDecisions);
137
+ md.push('');
138
+ md.push('### Outstanding Clarifying Questions');
139
+ md.push(extractedQuestions);
140
+ md.push('');
141
+
142
+ const handoffFilePath = path.join(workspacePath, 'nexusflow-handoff.md');
143
+ await fs.writeFile(handoffFilePath, md.join('\n'), 'utf-8');
144
+
145
+ console.log(chalk.green(`\nโœ… Generated handoff bundle: ${chalk.bold('nexusflow-handoff.md')}`));
146
+ console.log(chalk.dim(` Path: ${handoffFilePath}\n`));
147
+ }
148
+
149
+ /**
150
+ * Gets the current branch name of a repository.
151
+ */
152
+ async function getRepoBranch(repoPath: string): Promise<string> {
153
+ try {
154
+ const { stdout } = await execa('git', ['rev-parse', '--abbrev-ref', 'HEAD'], { cwd: repoPath });
155
+ return stdout.trim();
156
+ } catch {
157
+ return 'unknown';
158
+ }
159
+ }
160
+
161
+ /**
162
+ * Determines a candidate list of files to read first.
163
+ */
164
+ function getSuggestedFiles(repoPath: string, dirtyFiles: string[], analysis?: any): string[] {
165
+ if (dirtyFiles.length > 0) {
166
+ return dirtyFiles.slice(0, 3).map(f => f.replace(/\\/g, '/'));
167
+ }
168
+
169
+ const suggestions: string[] = [];
170
+ if (analysis && analysis.runConfig && analysis.runConfig.entryPoints) {
171
+ for (const ep of analysis.runConfig.entryPoints) {
172
+ if (ep.projectPath && !suggestions.includes(ep.projectPath)) {
173
+ suggestions.push(ep.projectPath);
174
+ }
175
+ }
176
+ }
177
+
178
+ suggestions.push('README.md');
179
+ return suggestions.slice(0, 3);
180
+ }
181
+
182
+ /**
183
+ * Resolves correct test command.
184
+ */
185
+ function getTestCommand(repoPath: string, analysis?: any): string {
186
+ if (analysis) {
187
+ if (analysis.techStack.languages.includes('csharp')) {
188
+ return 'dotnet test';
189
+ }
190
+ if (analysis.techStack.languages.includes('typescript') || analysis.techStack.languages.includes('javascript')) {
191
+ return 'npm test';
192
+ }
193
+ if (analysis.techStack.languages.includes('python')) {
194
+ return 'pytest';
195
+ }
196
+ if (analysis.techStack.languages.includes('go')) {
197
+ return 'go test ./...';
198
+ }
199
+ }
200
+ return 'npm test'; // fallback
201
+ }
202
+
203
+ /**
204
+ * Extracts a specific section from the knowledge file.
205
+ */
206
+ function extractSection(content: string, header: string): string {
207
+ const lines = content.split('\n');
208
+ const index = lines.findIndex(l => l.trim().startsWith(`## ${header}`));
209
+ if (index === -1) return '_None recorded yet._';
210
+
211
+ const resultLines: string[] = [];
212
+ for (let i = index + 1; i < lines.length; i++) {
213
+ if (lines[i]!.trim().startsWith('##')) break;
214
+ resultLines.push(lines[i]!);
215
+ }
216
+
217
+ const sectionContent = resultLines.join('\n').trim();
218
+ if (
219
+ !sectionContent ||
220
+ sectionContent.includes('No assumptions recorded yet') ||
221
+ sectionContent.includes('No open questions recorded yet') ||
222
+ sectionContent.includes('No decisions recorded yet') ||
223
+ sectionContent.includes('No gotchas recorded yet') ||
224
+ sectionContent.includes('AI assistant to populate')
225
+ ) {
226
+ return '_None recorded yet._';
227
+ }
228
+ return sectionContent;
229
+ }
230
+
231
+ /**
232
+ * Resolves a workspace path.
233
+ */
234
+ async function resolveWorkspace(workspaceArg?: string): Promise<string | null> {
235
+ if (workspaceArg) {
236
+ const absolutePath = path.resolve(workspaceArg);
237
+ try {
238
+ await fs.access(path.join(absolutePath, 'nexusflow.json'));
239
+ return absolutePath;
240
+ } catch {
241
+ console.error(chalk.red(`โœ– Invalid workspace: No nexusflow.json found at ${absolutePath}`));
242
+ return null;
243
+ }
244
+ }
245
+
246
+ const cwdFeature = await loadFeatureConfig(process.cwd());
247
+ if (cwdFeature) return cwdFeature.workspacePath;
248
+
249
+ const config = await loadConfig();
250
+ const workspaces = await listWorkspaces(config.workspacesDir);
251
+
252
+ if (workspaces.length === 0) {
253
+ console.log(chalk.yellow('No workspaces found.\n'));
254
+ return null;
255
+ }
256
+
257
+ const selected = await select({
258
+ message: 'Select a workspace:',
259
+ choices: workspaces.map((ws) => ({
260
+ name: `${ws.branchName} ${chalk.dim(`(${ws.repos.length} repos)`)}`,
261
+ value: ws.workspacePath,
262
+ })),
263
+ });
264
+
265
+ return selected;
266
+ }