@dv.nghiem/flowdeck 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.
Files changed (331) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +136 -0
  3. package/bin/flowdeck.js +108 -0
  4. package/dist/agents/architect.d.ts +3 -0
  5. package/dist/agents/architect.d.ts.map +1 -0
  6. package/dist/agents/code-explorer.d.ts +3 -0
  7. package/dist/agents/code-explorer.d.ts.map +1 -0
  8. package/dist/agents/coder.d.ts +3 -0
  9. package/dist/agents/coder.d.ts.map +1 -0
  10. package/dist/agents/debug.d.ts +4 -0
  11. package/dist/agents/debug.d.ts.map +1 -0
  12. package/dist/agents/doc-updater.d.ts +3 -0
  13. package/dist/agents/doc-updater.d.ts.map +1 -0
  14. package/dist/agents/flowdeck.d.ts +5 -0
  15. package/dist/agents/flowdeck.d.ts.map +1 -0
  16. package/dist/agents/index.d.ts +38 -0
  17. package/dist/agents/index.d.ts.map +1 -0
  18. package/dist/agents/mapper.d.ts +3 -0
  19. package/dist/agents/mapper.d.ts.map +1 -0
  20. package/dist/agents/orchestrator.d.ts +10 -0
  21. package/dist/agents/orchestrator.d.ts.map +1 -0
  22. package/dist/agents/performance.d.ts +4 -0
  23. package/dist/agents/performance.d.ts.map +1 -0
  24. package/dist/agents/planner.d.ts +3 -0
  25. package/dist/agents/planner.d.ts.map +1 -0
  26. package/dist/agents/policy-enforcer.d.ts +3 -0
  27. package/dist/agents/policy-enforcer.d.ts.map +1 -0
  28. package/dist/agents/researcher.d.ts +3 -0
  29. package/dist/agents/researcher.d.ts.map +1 -0
  30. package/dist/agents/reviewer.d.ts +3 -0
  31. package/dist/agents/reviewer.d.ts.map +1 -0
  32. package/dist/agents/risk-analyst.d.ts +3 -0
  33. package/dist/agents/risk-analyst.d.ts.map +1 -0
  34. package/dist/agents/security-auditor.d.ts +3 -0
  35. package/dist/agents/security-auditor.d.ts.map +1 -0
  36. package/dist/agents/specialist.d.ts +5 -0
  37. package/dist/agents/specialist.d.ts.map +1 -0
  38. package/dist/agents/tester.d.ts +3 -0
  39. package/dist/agents/tester.d.ts.map +1 -0
  40. package/dist/agents/types.d.ts +20 -0
  41. package/dist/agents/types.d.ts.map +1 -0
  42. package/dist/agents/writer.d.ts +3 -0
  43. package/dist/agents/writer.d.ts.map +1 -0
  44. package/dist/commands/analysis/analysis.test.d.ts +2 -0
  45. package/dist/commands/analysis/analysis.test.d.ts.map +1 -0
  46. package/dist/commands/analysis/analyze-change.d.ts +148 -0
  47. package/dist/commands/analysis/analyze-change.d.ts.map +1 -0
  48. package/dist/commands/analysis/evaluate-risk.d.ts +77 -0
  49. package/dist/commands/analysis/evaluate-risk.d.ts.map +1 -0
  50. package/dist/commands/analysis/guarded-edit.d.ts +72 -0
  51. package/dist/commands/analysis/guarded-edit.d.ts.map +1 -0
  52. package/dist/commands/execution/deploy-check.d.ts +91 -0
  53. package/dist/commands/execution/deploy-check.d.ts.map +1 -0
  54. package/dist/commands/execution/fix-bug.d.ts +187 -0
  55. package/dist/commands/execution/fix-bug.d.ts.map +1 -0
  56. package/dist/commands/execution/new-feature.d.ts +171 -0
  57. package/dist/commands/execution/new-feature.d.ts.map +1 -0
  58. package/dist/commands/execution/review-code.d.ts +130 -0
  59. package/dist/commands/execution/review-code.d.ts.map +1 -0
  60. package/dist/commands/execution/write-docs.d.ts +94 -0
  61. package/dist/commands/execution/write-docs.d.ts.map +1 -0
  62. package/dist/commands/governance/approve.d.ts +80 -0
  63. package/dist/commands/governance/approve.d.ts.map +1 -0
  64. package/dist/commands/intelligence/blast-radius.d.ts +67 -0
  65. package/dist/commands/intelligence/blast-radius.d.ts.map +1 -0
  66. package/dist/commands/intelligence/impact-radar.d.ts +71 -0
  67. package/dist/commands/intelligence/impact-radar.d.ts.map +1 -0
  68. package/dist/commands/intelligence/intelligence.test.d.ts +2 -0
  69. package/dist/commands/intelligence/intelligence.test.d.ts.map +1 -0
  70. package/dist/commands/intelligence/regression-predict.d.ts +75 -0
  71. package/dist/commands/intelligence/regression-predict.d.ts.map +1 -0
  72. package/dist/commands/intelligence/review-route.d.ts +65 -0
  73. package/dist/commands/intelligence/review-route.d.ts.map +1 -0
  74. package/dist/commands/intelligence/test-gap.d.ts +73 -0
  75. package/dist/commands/intelligence/test-gap.d.ts.map +1 -0
  76. package/dist/commands/intelligence/translate-intent.d.ts +87 -0
  77. package/dist/commands/intelligence/translate-intent.d.ts.map +1 -0
  78. package/dist/commands/intelligence/volatility-map-cmd.d.ts +68 -0
  79. package/dist/commands/intelligence/volatility-map-cmd.d.ts.map +1 -0
  80. package/dist/commands/planning/ask.d.ts +62 -0
  81. package/dist/commands/planning/ask.d.ts.map +1 -0
  82. package/dist/commands/planning/ask.test.d.ts +2 -0
  83. package/dist/commands/planning/ask.test.d.ts.map +1 -0
  84. package/dist/commands/planning/dashboard.d.ts +30 -0
  85. package/dist/commands/planning/dashboard.d.ts.map +1 -0
  86. package/dist/commands/planning/discuss.d.ts +39 -0
  87. package/dist/commands/planning/discuss.d.ts.map +1 -0
  88. package/dist/commands/planning/plan.d.ts +67 -0
  89. package/dist/commands/planning/plan.d.ts.map +1 -0
  90. package/dist/commands/planning/roadmap.d.ts +105 -0
  91. package/dist/commands/planning/roadmap.d.ts.map +1 -0
  92. package/dist/commands/setup/doctor.d.ts +10 -0
  93. package/dist/commands/setup/doctor.d.ts.map +1 -0
  94. package/dist/commands/setup/map-codebase.d.ts +62 -0
  95. package/dist/commands/setup/map-codebase.d.ts.map +1 -0
  96. package/dist/commands/setup/new-project.d.ts +19 -0
  97. package/dist/commands/setup/new-project.d.ts.map +1 -0
  98. package/dist/commands/setup/settings.d.ts +57 -0
  99. package/dist/commands/setup/settings.d.ts.map +1 -0
  100. package/dist/commands/state/checkpoint.d.ts +27 -0
  101. package/dist/commands/state/checkpoint.d.ts.map +1 -0
  102. package/dist/commands/state/multi-repo.d.ts +63 -0
  103. package/dist/commands/state/multi-repo.d.ts.map +1 -0
  104. package/dist/commands/state/progress.d.ts +57 -0
  105. package/dist/commands/state/progress.d.ts.map +1 -0
  106. package/dist/commands/state/resume.d.ts +11 -0
  107. package/dist/commands/state/resume.d.ts.map +1 -0
  108. package/dist/commands/state/workspace-commands.d.ts +207 -0
  109. package/dist/commands/state/workspace-commands.d.ts.map +1 -0
  110. package/dist/dashboard/lib/port-finder.d.ts +10 -0
  111. package/dist/dashboard/lib/port-finder.d.ts.map +1 -0
  112. package/dist/dashboard/lib/port-finder.test.d.ts +2 -0
  113. package/dist/dashboard/lib/port-finder.test.d.ts.map +1 -0
  114. package/dist/dashboard/lib/state-reader.d.ts +3 -0
  115. package/dist/dashboard/lib/state-reader.d.ts.map +1 -0
  116. package/dist/dashboard/server.d.ts +2 -0
  117. package/dist/dashboard/server.d.ts.map +1 -0
  118. package/dist/dashboard/server.mjs +13649 -0
  119. package/dist/dashboard/types.d.ts +72 -0
  120. package/dist/dashboard/types.d.ts.map +1 -0
  121. package/dist/dashboard/views/index.ejs +391 -0
  122. package/dist/dashboard/views/partials/blockers.ejs +10 -0
  123. package/dist/dashboard/views/partials/header.ejs +20 -0
  124. package/dist/dashboard/views/partials/phase-timeline.ejs +40 -0
  125. package/dist/dashboard/views/partials/progress.ejs +12 -0
  126. package/dist/hooks/approval-hook.d.ts +13 -0
  127. package/dist/hooks/approval-hook.d.ts.map +1 -0
  128. package/dist/hooks/compaction-hook.d.ts +23 -0
  129. package/dist/hooks/compaction-hook.d.ts.map +1 -0
  130. package/dist/hooks/context-window-monitor.d.ts +21 -0
  131. package/dist/hooks/context-window-monitor.d.ts.map +1 -0
  132. package/dist/hooks/decision-trace-hook.d.ts +13 -0
  133. package/dist/hooks/decision-trace-hook.d.ts.map +1 -0
  134. package/dist/hooks/file-tracker.d.ts +29 -0
  135. package/dist/hooks/file-tracker.d.ts.map +1 -0
  136. package/dist/hooks/guard-rails.d.ts +33 -0
  137. package/dist/hooks/guard-rails.d.ts.map +1 -0
  138. package/dist/hooks/index.d.ts +5 -0
  139. package/dist/hooks/index.d.ts.map +1 -0
  140. package/dist/hooks/notifications.d.ts +21 -0
  141. package/dist/hooks/notifications.d.ts.map +1 -0
  142. package/dist/hooks/patch-trust.d.ts +27 -0
  143. package/dist/hooks/patch-trust.d.ts.map +1 -0
  144. package/dist/hooks/patch-trust.test.d.ts +2 -0
  145. package/dist/hooks/patch-trust.test.d.ts.map +1 -0
  146. package/dist/hooks/session-events.d.ts +8 -0
  147. package/dist/hooks/session-events.d.ts.map +1 -0
  148. package/dist/hooks/session-idle-hook.d.ts +21 -0
  149. package/dist/hooks/session-idle-hook.d.ts.map +1 -0
  150. package/dist/hooks/session-start.d.ts +10 -0
  151. package/dist/hooks/session-start.d.ts.map +1 -0
  152. package/dist/hooks/shell-env-hook.d.ts +21 -0
  153. package/dist/hooks/shell-env-hook.d.ts.map +1 -0
  154. package/dist/hooks/telemetry-hook.d.ts +25 -0
  155. package/dist/hooks/telemetry-hook.d.ts.map +1 -0
  156. package/dist/hooks/todo-hook.d.ts +25 -0
  157. package/dist/hooks/todo-hook.d.ts.map +1 -0
  158. package/dist/hooks/tool-guard.d.ts +41 -0
  159. package/dist/hooks/tool-guard.d.ts.map +1 -0
  160. package/dist/hooks/tool-guard.test.d.ts +2 -0
  161. package/dist/hooks/tool-guard.test.d.ts.map +1 -0
  162. package/dist/index.d.ts +4 -0
  163. package/dist/index.d.ts.map +1 -0
  164. package/dist/index.js +6639 -0
  165. package/dist/lib/confirmation.d.ts +20 -0
  166. package/dist/lib/confirmation.d.ts.map +1 -0
  167. package/dist/lib/impact-radar.d.ts +35 -0
  168. package/dist/lib/impact-radar.d.ts.map +1 -0
  169. package/dist/lib/signatures.d.ts +12 -0
  170. package/dist/lib/signatures.d.ts.map +1 -0
  171. package/dist/lib/timestamps.d.ts +23 -0
  172. package/dist/lib/timestamps.d.ts.map +1 -0
  173. package/dist/mcp/index.d.ts +20 -0
  174. package/dist/mcp/index.d.ts.map +1 -0
  175. package/dist/services/agent-performance.d.ts +29 -0
  176. package/dist/services/agent-performance.d.ts.map +1 -0
  177. package/dist/services/approval-manager.d.ts +30 -0
  178. package/dist/services/approval-manager.d.ts.map +1 -0
  179. package/dist/services/index.d.ts +7 -0
  180. package/dist/services/index.d.ts.map +1 -0
  181. package/dist/services/model-router.d.ts +35 -0
  182. package/dist/services/model-router.d.ts.map +1 -0
  183. package/dist/services/policy-compiler.d.ts +27 -0
  184. package/dist/services/policy-compiler.d.ts.map +1 -0
  185. package/dist/services/run-trace.d.ts +34 -0
  186. package/dist/services/run-trace.d.ts.map +1 -0
  187. package/dist/services/services.test.d.ts +2 -0
  188. package/dist/services/services.test.d.ts.map +1 -0
  189. package/dist/services/telemetry.d.ts +34 -0
  190. package/dist/services/telemetry.d.ts.map +1 -0
  191. package/dist/tools/agent-dispatch.test.d.ts +2 -0
  192. package/dist/tools/agent-dispatch.test.d.ts.map +1 -0
  193. package/dist/tools/codebase-state.d.ts +4 -0
  194. package/dist/tools/codebase-state.d.ts.map +1 -0
  195. package/dist/tools/context-generator.d.ts +3 -0
  196. package/dist/tools/context-generator.d.ts.map +1 -0
  197. package/dist/tools/council.d.ts +4 -0
  198. package/dist/tools/council.d.ts.map +1 -0
  199. package/dist/tools/decision-trace.d.ts +16 -0
  200. package/dist/tools/decision-trace.d.ts.map +1 -0
  201. package/dist/tools/delegate.d.ts +4 -0
  202. package/dist/tools/delegate.d.ts.map +1 -0
  203. package/dist/tools/failure-replay.d.ts +19 -0
  204. package/dist/tools/failure-replay.d.ts.map +1 -0
  205. package/dist/tools/failure-replay.test.d.ts +2 -0
  206. package/dist/tools/failure-replay.test.d.ts.map +1 -0
  207. package/dist/tools/hash-edit.d.ts +3 -0
  208. package/dist/tools/hash-edit.d.ts.map +1 -0
  209. package/dist/tools/planning-state-lib.d.ts +65 -0
  210. package/dist/tools/planning-state-lib.d.ts.map +1 -0
  211. package/dist/tools/planning-state.d.ts +3 -0
  212. package/dist/tools/planning-state.d.ts.map +1 -0
  213. package/dist/tools/policy-engine.d.ts +19 -0
  214. package/dist/tools/policy-engine.d.ts.map +1 -0
  215. package/dist/tools/repo-memory.d.ts +20 -0
  216. package/dist/tools/repo-memory.d.ts.map +1 -0
  217. package/dist/tools/repo-memory.test.d.ts +2 -0
  218. package/dist/tools/repo-memory.test.d.ts.map +1 -0
  219. package/dist/tools/run-parallel.d.ts +4 -0
  220. package/dist/tools/run-parallel.d.ts.map +1 -0
  221. package/dist/tools/run-pipeline.d.ts +4 -0
  222. package/dist/tools/run-pipeline.d.ts.map +1 -0
  223. package/dist/tools/volatility-map.d.ts +18 -0
  224. package/dist/tools/volatility-map.d.ts.map +1 -0
  225. package/dist/tools/volatility-map.test.d.ts +2 -0
  226. package/dist/tools/volatility-map.test.d.ts.map +1 -0
  227. package/dist/tools/workspace-state.d.ts +3 -0
  228. package/dist/tools/workspace-state.d.ts.map +1 -0
  229. package/docs/USER_GUIDE.md +20 -0
  230. package/docs/agents.md +562 -0
  231. package/docs/best-practices.md +47 -0
  232. package/docs/command-migration.md +175 -0
  233. package/docs/commands/fd-analyze-change.md +107 -0
  234. package/docs/commands/fd-ask.md +51 -0
  235. package/docs/commands/fd-checkpoint.md +10 -0
  236. package/docs/commands/fd-dashboard.md +11 -0
  237. package/docs/commands/fd-deploy-check.md +11 -0
  238. package/docs/commands/fd-discuss.md +28 -0
  239. package/docs/commands/fd-evaluate-risk.md +134 -0
  240. package/docs/commands/fd-fix-bug.md +24 -0
  241. package/docs/commands/fd-guarded-edit.md +105 -0
  242. package/docs/commands/fd-map-codebase.md +27 -0
  243. package/docs/commands/fd-multi-repo.md +63 -0
  244. package/docs/commands/fd-new-feature.md +25 -0
  245. package/docs/commands/fd-new-project.md +24 -0
  246. package/docs/commands/fd-plan.md +33 -0
  247. package/docs/commands/fd-progress.md +11 -0
  248. package/docs/commands/fd-resume.md +10 -0
  249. package/docs/commands/fd-review-code.md +29 -0
  250. package/docs/commands/fd-roadmap.md +10 -0
  251. package/docs/commands/fd-settings.md +10 -0
  252. package/docs/commands/fd-write-docs.md +10 -0
  253. package/docs/commands.md +476 -0
  254. package/docs/configuration.md +211 -0
  255. package/docs/feature-integration-architecture.md +255 -0
  256. package/docs/index.md +75 -0
  257. package/docs/installation.md +134 -0
  258. package/docs/intelligence.md +294 -0
  259. package/docs/multi-repo.md +201 -0
  260. package/docs/notifications.md +170 -0
  261. package/docs/parallel-execution.md +227 -0
  262. package/docs/quick-start.md +174 -0
  263. package/docs/rules.md +459 -0
  264. package/docs/skills.md +408 -0
  265. package/docs/workflows.md +376 -0
  266. package/package.json +58 -0
  267. package/postinstall.mjs +102 -0
  268. package/src/rules/README.md +37 -0
  269. package/src/rules/common/agent-orchestration.md +86 -0
  270. package/src/rules/common/coding-style.md +120 -0
  271. package/src/rules/common/git-workflow.md +77 -0
  272. package/src/rules/common/security.md +94 -0
  273. package/src/rules/common/testing.md +105 -0
  274. package/src/rules/golang/patterns.md +187 -0
  275. package/src/rules/java/patterns.md +204 -0
  276. package/src/rules/python/patterns.md +141 -0
  277. package/src/rules/rust/patterns.md +210 -0
  278. package/src/rules/typescript/patterns.md +168 -0
  279. package/src/skills/api-design/SKILL.md +143 -0
  280. package/src/skills/arch-constraint-guard/SKILL.md +61 -0
  281. package/src/skills/blast-radius-preview/SKILL.md +65 -0
  282. package/src/skills/change-impact-radar/SKILL.md +63 -0
  283. package/src/skills/code-review/SKILL.md +108 -0
  284. package/src/skills/code-tour/SKILL.md +101 -0
  285. package/src/skills/codebase-mapping/SKILL.md +87 -0
  286. package/src/skills/codebase-onboarding/SKILL.md +133 -0
  287. package/src/skills/confidence-aware-planning/SKILL.md +67 -0
  288. package/src/skills/context-load/SKILL.md +63 -0
  289. package/src/skills/debug-flow/SKILL.md +75 -0
  290. package/src/skills/decision-trace/SKILL.md +72 -0
  291. package/src/skills/dependency-audit/SKILL.md +126 -0
  292. package/src/skills/deploy-check/SKILL.md +87 -0
  293. package/src/skills/documentation-writer/SKILL.md +154 -0
  294. package/src/skills/failure-replay-engine/SKILL.md +59 -0
  295. package/src/skills/git-release/SKILL.md +94 -0
  296. package/src/skills/git-workflow/SKILL.md +177 -0
  297. package/src/skills/golang-patterns/SKILL.md +511 -0
  298. package/src/skills/human-review-routing/SKILL.md +65 -0
  299. package/src/skills/intent-translator/SKILL.md +57 -0
  300. package/src/skills/java-patterns/SKILL.md +479 -0
  301. package/src/skills/multi-repo/SKILL.md +187 -0
  302. package/src/skills/parallel-execute/SKILL.md +92 -0
  303. package/src/skills/patch-trust-score/SKILL.md +44 -0
  304. package/src/skills/performance-profiling/SKILL.md +153 -0
  305. package/src/skills/plan-task/SKILL.md +101 -0
  306. package/src/skills/python-patterns/SKILL.md +529 -0
  307. package/src/skills/refactor-guide/SKILL.md +117 -0
  308. package/src/skills/regression-prediction/SKILL.md +57 -0
  309. package/src/skills/repo-memory-graph/SKILL.md +49 -0
  310. package/src/skills/rust-patterns/SKILL.md +492 -0
  311. package/src/skills/security-scan/SKILL.md +91 -0
  312. package/src/skills/self-healing-policies/SKILL.md +76 -0
  313. package/src/skills/tdd-workflow/SKILL.md +126 -0
  314. package/src/skills/test-coverage/SKILL.md +94 -0
  315. package/src/skills/test-gap-detector/SKILL.md +58 -0
  316. package/src/skills/volatility-map/SKILL.md +52 -0
  317. package/src/workflows/debug-flow.md +119 -0
  318. package/src/workflows/deploy-check-flow.md +98 -0
  319. package/src/workflows/discuss-flow.md +97 -0
  320. package/src/workflows/execute-flow.md +233 -0
  321. package/src/workflows/execute-phase.md +142 -0
  322. package/src/workflows/fix-bug-flow.md +210 -0
  323. package/src/workflows/map-codebase-flow.md +92 -0
  324. package/src/workflows/multi-repo-flow.md +226 -0
  325. package/src/workflows/parallel-execution-flow.md +236 -0
  326. package/src/workflows/plan-flow.md +126 -0
  327. package/src/workflows/plan-phase.md +101 -0
  328. package/src/workflows/refactor-flow.md +122 -0
  329. package/src/workflows/review-code-flow.md +105 -0
  330. package/src/workflows/spec-driven-flow.md +43 -0
  331. package/src/workflows/write-docs-flow.md +95 -0
@@ -0,0 +1,105 @@
1
+ import type { CommandContext } from "../../types/command-context";
2
+ export declare const roadmapCommand: {
3
+ name: string;
4
+ description: string;
5
+ execute(context: CommandContext, args?: {
6
+ add?: string;
7
+ complete?: string;
8
+ json?: boolean;
9
+ dryRun?: boolean;
10
+ yes?: boolean;
11
+ filter?: string;
12
+ search?: string;
13
+ sort?: string;
14
+ }): Promise<{
15
+ error: string;
16
+ code: string;
17
+ success?: undefined;
18
+ message?: undefined;
19
+ meta?: undefined;
20
+ phase?: undefined;
21
+ data?: undefined;
22
+ } | {
23
+ phase: number;
24
+ success: boolean;
25
+ message: string;
26
+ status: "AWAITING_CONFIRM";
27
+ confirm_mode: "y/n";
28
+ operation: string;
29
+ error?: undefined;
30
+ code?: undefined;
31
+ meta?: undefined;
32
+ data?: undefined;
33
+ } | {
34
+ success: boolean;
35
+ message: string;
36
+ meta: {
37
+ dryRun: boolean;
38
+ phase: number;
39
+ formatted?: undefined;
40
+ timestamp?: undefined;
41
+ };
42
+ error?: undefined;
43
+ code?: undefined;
44
+ phase?: undefined;
45
+ data?: undefined;
46
+ } | {
47
+ success: boolean;
48
+ message: string;
49
+ phase: number;
50
+ error?: undefined;
51
+ code?: undefined;
52
+ meta?: undefined;
53
+ data?: undefined;
54
+ } | {
55
+ success: boolean;
56
+ message: string;
57
+ meta: {
58
+ dryRun: boolean;
59
+ phase: string;
60
+ formatted?: undefined;
61
+ timestamp?: undefined;
62
+ };
63
+ error?: undefined;
64
+ code?: undefined;
65
+ phase?: undefined;
66
+ data?: undefined;
67
+ } | {
68
+ success: boolean;
69
+ message: string;
70
+ phase: string;
71
+ error?: undefined;
72
+ code?: undefined;
73
+ meta?: undefined;
74
+ data?: undefined;
75
+ } | {
76
+ success: boolean;
77
+ data: {
78
+ roadmap: string;
79
+ };
80
+ meta: {
81
+ formatted: string;
82
+ timestamp: string;
83
+ dryRun?: undefined;
84
+ phase?: undefined;
85
+ };
86
+ error?: undefined;
87
+ code?: undefined;
88
+ message?: undefined;
89
+ phase?: undefined;
90
+ } | {
91
+ success: boolean;
92
+ message: string;
93
+ meta: {
94
+ formatted: string;
95
+ timestamp: string;
96
+ dryRun?: undefined;
97
+ phase?: undefined;
98
+ };
99
+ error?: undefined;
100
+ code?: undefined;
101
+ phase?: undefined;
102
+ data?: undefined;
103
+ }>;
104
+ };
105
+ //# sourceMappingURL=roadmap.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"roadmap.d.ts","sourceRoot":"","sources":["../../../src/commands/planning/roadmap.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,6BAA6B,CAAA;AAMjE,eAAO,MAAM,cAAc;;;qBAGF,cAAc,SAAS;QAAE,GAAG,CAAC,EAAE,MAAM,CAAC;QAAC,QAAQ,CAAC,EAAE,MAAM,CAAC;QAAC,IAAI,CAAC,EAAE,OAAO,CAAC;QAAC,MAAM,CAAC,EAAE,OAAO,CAAC;QAAC,GAAG,CAAC,EAAE,OAAO,CAAC;QAAC,MAAM,CAAC,EAAE,MAAM,CAAC;QAAC,MAAM,CAAC,EAAE,MAAM,CAAC;QAAC,IAAI,CAAC,EAAE,MAAM,CAAA;KAAE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAuSpL,CAAA"}
@@ -0,0 +1,10 @@
1
+ import type { CommandContext } from "../../types/command-context";
2
+ export declare const doctorCommand: {
3
+ name: string;
4
+ description: string;
5
+ execute(context: CommandContext): Promise<{
6
+ content: string;
7
+ healthy: boolean;
8
+ }>;
9
+ };
10
+ //# sourceMappingURL=doctor.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"doctor.d.ts","sourceRoot":"","sources":["../../../src/commands/setup/doctor.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,6BAA6B,CAAA;AAKjE,eAAO,MAAM,aAAa;;;qBAGD,cAAc;;;;CAkDtC,CAAA"}
@@ -0,0 +1,62 @@
1
+ import type { CommandContext } from "../../types/command-context";
2
+ import { type TimestampsData } from "../../lib/timestamps";
3
+ export declare const mapCodebaseCommand: {
4
+ name: string;
5
+ description: string;
6
+ execute(context: CommandContext, args?: {
7
+ incremental?: boolean;
8
+ yes?: boolean;
9
+ }): Promise<Record<string, unknown> | {
10
+ code: string;
11
+ hint: string;
12
+ success: boolean;
13
+ message: string;
14
+ status: "AWAITING_CONFIRM";
15
+ confirm_mode: "y/n";
16
+ operation: string;
17
+ workflow?: undefined;
18
+ output_dir?: undefined;
19
+ docs?: undefined;
20
+ next_step?: undefined;
21
+ incremental_mode?: undefined;
22
+ files_processed?: undefined;
23
+ } | {
24
+ success: boolean;
25
+ message: string;
26
+ workflow: string;
27
+ output_dir: string;
28
+ docs: string[];
29
+ next_step: string;
30
+ incremental_mode: boolean;
31
+ files_processed: number;
32
+ }>;
33
+ runFullRebuild(dir: string, args?: {
34
+ incremental?: boolean;
35
+ yes?: boolean;
36
+ }): Promise<{
37
+ code: string;
38
+ hint: string;
39
+ success: boolean;
40
+ message: string;
41
+ status: "AWAITING_CONFIRM";
42
+ confirm_mode: "y/n";
43
+ operation: string;
44
+ workflow?: undefined;
45
+ output_dir?: undefined;
46
+ docs?: undefined;
47
+ next_step?: undefined;
48
+ incremental_mode?: undefined;
49
+ files_processed?: undefined;
50
+ } | {
51
+ success: boolean;
52
+ message: string;
53
+ workflow: string;
54
+ output_dir: string;
55
+ docs: string[];
56
+ next_step: string;
57
+ incremental_mode: boolean;
58
+ files_processed: number;
59
+ }>;
60
+ runIncremental(dir: string, timestamps: TimestampsData): Promise<Record<string, unknown>>;
61
+ };
62
+ //# sourceMappingURL=map-codebase.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"map-codebase.d.ts","sourceRoot":"","sources":["../../../src/commands/setup/map-codebase.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,6BAA6B,CAAA;AAIjE,OAAO,EAAqE,KAAK,cAAc,EAAqB,MAAM,sBAAsB,CAAA;AA8BhJ,eAAO,MAAM,kBAAkB;;;qBAGN,cAAc,SAAS;QAAE,WAAW,CAAC,EAAE,OAAO,CAAC;QAAC,GAAG,CAAC,EAAE,OAAO,CAAA;KAAE;;;;;;;;;;;;;;;;;;;;;;;;wBA8B5D,MAAM,SAAS;QAAE,WAAW,CAAC,EAAE,OAAO,CAAC;QAAC,GAAG,CAAC,EAAE,OAAO,CAAA;KAAE;;;;;;;;;;;;;;;;;;;;;;;;wBAoDvD,MAAM,cAAc,cAAc;CA2E7D,CAAA"}
@@ -0,0 +1,19 @@
1
+ import type { CommandContext } from "../../types/command-context";
2
+ export declare const newProjectCommand: {
3
+ name: string;
4
+ description: string;
5
+ execute(context: CommandContext): Promise<{
6
+ error: string;
7
+ code: string;
8
+ success?: undefined;
9
+ message?: undefined;
10
+ files?: undefined;
11
+ } | {
12
+ success: boolean;
13
+ message: string;
14
+ files: string[];
15
+ error?: undefined;
16
+ code?: undefined;
17
+ }>;
18
+ };
19
+ //# sourceMappingURL=new-project.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"new-project.d.ts","sourceRoot":"","sources":["../../../src/commands/setup/new-project.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,6BAA6B,CAAA;AAiHjE,eAAO,MAAM,iBAAiB;;;qBAGL,cAAc;;;;;;;;;;;;;CAqCtC,CAAA"}
@@ -0,0 +1,57 @@
1
+ import type { CommandContext } from "../../types/command-context";
2
+ export declare const settingsCommand: {
3
+ name: string;
4
+ description: string;
5
+ execute(context: CommandContext, args?: {
6
+ profile?: "quality" | "balanced" | "budget";
7
+ agent?: string;
8
+ model?: string;
9
+ toggle?: string;
10
+ value?: string;
11
+ json?: boolean;
12
+ }): Promise<{
13
+ success: boolean;
14
+ message: string;
15
+ meta: {
16
+ formatted: string;
17
+ timestamp: string;
18
+ };
19
+ } | {
20
+ success: boolean;
21
+ message: string;
22
+ profile: "quality" | "balanced" | "budget";
23
+ agents: {
24
+ orchestrator: string;
25
+ discusser: string;
26
+ coder: string;
27
+ } | {
28
+ orchestrator: string;
29
+ discusser: string;
30
+ coder: string;
31
+ } | {
32
+ orchestrator: string;
33
+ discusser: string;
34
+ coder: string;
35
+ };
36
+ } | {
37
+ error: string;
38
+ code: string;
39
+ success?: undefined;
40
+ message?: undefined;
41
+ agent?: undefined;
42
+ model?: undefined;
43
+ } | {
44
+ success: boolean;
45
+ message: string;
46
+ agent: string;
47
+ model: string;
48
+ error?: undefined;
49
+ code?: undefined;
50
+ } | {
51
+ success: boolean;
52
+ message: string;
53
+ phase: string;
54
+ enabled: boolean;
55
+ }>;
56
+ };
57
+ //# sourceMappingURL=settings.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"settings.d.ts","sourceRoot":"","sources":["../../../src/commands/setup/settings.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,6BAA6B,CAAA;AA4CjE,eAAO,MAAM,eAAe;;;qBAGH,cAAc,SAAS;QAC5C,OAAO,CAAC,EAAE,SAAS,GAAG,UAAU,GAAG,QAAQ,CAAA;QAC3C,KAAK,CAAC,EAAE,MAAM,CAAA;QACd,KAAK,CAAC,EAAE,MAAM,CAAA;QACd,MAAM,CAAC,EAAE,MAAM,CAAA;QACf,KAAK,CAAC,EAAE,MAAM,CAAA;QACd,IAAI,CAAC,EAAE,OAAO,CAAA;KACf;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA6BF,CAAA"}
@@ -0,0 +1,27 @@
1
+ import type { CommandContext } from "../../types/command-context";
2
+ export declare const checkpointCommand: {
3
+ name: string;
4
+ description: string;
5
+ execute(context: CommandContext, args?: {
6
+ yes?: boolean;
7
+ }): Promise<{
8
+ error: string;
9
+ success?: undefined;
10
+ message?: undefined;
11
+ saved_to?: undefined;
12
+ } | {
13
+ saved_to: string;
14
+ success: boolean;
15
+ message: string;
16
+ status: "AWAITING_CONFIRM";
17
+ confirm_mode: "y/n";
18
+ operation: string;
19
+ error?: undefined;
20
+ } | {
21
+ success: boolean;
22
+ message: string;
23
+ saved_to: string;
24
+ error?: undefined;
25
+ }>;
26
+ };
27
+ //# sourceMappingURL=checkpoint.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"checkpoint.d.ts","sourceRoot":"","sources":["../../../src/commands/state/checkpoint.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,6BAA6B,CAAA;AAKjE,eAAO,MAAM,iBAAiB;;;qBAGL,cAAc,SAAS;QAAE,GAAG,CAAC,EAAE,OAAO,CAAA;KAAE;;;;;;;;;;;;;;;;;;;CA+ChE,CAAA"}
@@ -0,0 +1,63 @@
1
+ import type { CommandContext } from "../../types/command-context";
2
+ declare const VALID_ROLES: readonly ["upstream-api", "downstream-consumer", "shared-lib", "gateway", "worker"];
3
+ type RepoRole = typeof VALID_ROLES[number];
4
+ interface MultiRepo {
5
+ name: string;
6
+ path: string;
7
+ role: RepoRole;
8
+ tech_stack: string;
9
+ owner_team: string;
10
+ added_at: string;
11
+ }
12
+ export declare const multiRepoCommand: {
13
+ name: string;
14
+ description: string;
15
+ execute(context: CommandContext, args?: {
16
+ add?: string;
17
+ role?: string;
18
+ name?: string;
19
+ tech_stack?: string;
20
+ owner_team?: string;
21
+ list?: boolean;
22
+ status?: boolean;
23
+ remove?: string;
24
+ json?: boolean;
25
+ }): Promise<{
26
+ error: string;
27
+ code: string;
28
+ hint: string;
29
+ success?: undefined;
30
+ message?: undefined;
31
+ data?: undefined;
32
+ } | {
33
+ error: string;
34
+ code: string;
35
+ hint?: undefined;
36
+ success?: undefined;
37
+ message?: undefined;
38
+ data?: undefined;
39
+ } | {
40
+ success: boolean;
41
+ message: string;
42
+ data: MultiRepo;
43
+ error?: undefined;
44
+ code?: undefined;
45
+ hint?: undefined;
46
+ } | {
47
+ success: boolean;
48
+ message: string;
49
+ error?: undefined;
50
+ code?: undefined;
51
+ hint?: undefined;
52
+ data?: undefined;
53
+ } | {
54
+ success: boolean;
55
+ data: MultiRepo[];
56
+ error?: undefined;
57
+ code?: undefined;
58
+ hint?: undefined;
59
+ message?: undefined;
60
+ }>;
61
+ };
62
+ export {};
63
+ //# sourceMappingURL=multi-repo.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"multi-repo.d.ts","sourceRoot":"","sources":["../../../src/commands/state/multi-repo.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,6BAA6B,CAAA;AAMjE,QAAA,MAAM,WAAW,qFAAsF,CAAA;AACvG,KAAK,QAAQ,GAAG,OAAO,WAAW,CAAC,MAAM,CAAC,CAAA;AAE1C,UAAU,SAAS;IACjB,IAAI,EAAE,MAAM,CAAA;IACZ,IAAI,EAAE,MAAM,CAAA;IACZ,IAAI,EAAE,QAAQ,CAAA;IACd,UAAU,EAAE,MAAM,CAAA;IAClB,UAAU,EAAE,MAAM,CAAA;IAClB,QAAQ,EAAE,MAAM,CAAA;CACjB;AAsGD,eAAO,MAAM,gBAAgB;;;qBAIhB,cAAc,SAChB;QACL,GAAG,CAAC,EAAE,MAAM,CAAA;QACZ,IAAI,CAAC,EAAE,MAAM,CAAA;QACb,IAAI,CAAC,EAAE,MAAM,CAAA;QACb,UAAU,CAAC,EAAE,MAAM,CAAA;QACnB,UAAU,CAAC,EAAE,MAAM,CAAA;QACnB,IAAI,CAAC,EAAE,OAAO,CAAA;QACd,MAAM,CAAC,EAAE,OAAO,CAAA;QAChB,MAAM,CAAC,EAAE,MAAM,CAAA;QACf,IAAI,CAAC,EAAE,OAAO,CAAA;KACf;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA+EJ,CAAA"}
@@ -0,0 +1,57 @@
1
+ import type { CommandContext } from "../../types/command-context";
2
+ export declare const progressCommand: {
3
+ name: string;
4
+ description: string;
5
+ execute(context: CommandContext, args?: {
6
+ json?: boolean;
7
+ }): Promise<{
8
+ error: string;
9
+ code: string;
10
+ hint: string;
11
+ success?: undefined;
12
+ data?: undefined;
13
+ meta?: undefined;
14
+ message?: undefined;
15
+ } | {
16
+ success: boolean;
17
+ data: {
18
+ state: Record<string, unknown>;
19
+ phase: number;
20
+ plan_preview: string | null;
21
+ recent_results: {
22
+ phase: number;
23
+ preview: string;
24
+ }[];
25
+ last_updated: {};
26
+ };
27
+ meta: {
28
+ formatted: string;
29
+ timestamp: string;
30
+ };
31
+ error?: undefined;
32
+ code?: undefined;
33
+ hint?: undefined;
34
+ message?: undefined;
35
+ } | {
36
+ success: boolean;
37
+ message: string;
38
+ data: {
39
+ state: Record<string, unknown>;
40
+ phase: number;
41
+ plan_preview: string | null;
42
+ recent_results: {
43
+ phase: number;
44
+ preview: string;
45
+ }[];
46
+ last_updated: {};
47
+ };
48
+ meta: {
49
+ formatted: string;
50
+ timestamp: string;
51
+ };
52
+ error?: undefined;
53
+ code?: undefined;
54
+ hint?: undefined;
55
+ }>;
56
+ };
57
+ //# sourceMappingURL=progress.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"progress.d.ts","sourceRoot":"","sources":["../../../src/commands/state/progress.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,6BAA6B,CAAA;AAIjE,eAAO,MAAM,eAAe;;;qBAGH,cAAc,SAAS;QAAE,IAAI,CAAC,EAAE,OAAO,CAAA;KAAE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA8EjE,CAAA"}
@@ -0,0 +1,11 @@
1
+ import type { CommandContext } from "../../types/command-context";
2
+ export declare const resumeCommand: {
3
+ name: string;
4
+ description: string;
5
+ execute(context: CommandContext, args?: {
6
+ confirm?: boolean;
7
+ json?: boolean;
8
+ yes?: boolean;
9
+ }): Promise<Record<string, unknown>>;
10
+ };
11
+ //# sourceMappingURL=resume.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"resume.d.ts","sourceRoot":"","sources":["../../../src/commands/state/resume.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,6BAA6B,CAAA;AAMjE,eAAO,MAAM,aAAa;;;qBAGD,cAAc,SAAS;QAAE,OAAO,CAAC,EAAE,OAAO,CAAC;QAAC,IAAI,CAAC,EAAE,OAAO,CAAC;QAAC,GAAG,CAAC,EAAE,OAAO,CAAA;KAAE;CAyHnG,CAAA"}
@@ -0,0 +1,207 @@
1
+ import type { CommandContext } from "../../types/command-context";
2
+ export declare const statusCommand: {
3
+ name: string;
4
+ description: string;
5
+ execute(context: CommandContext, args?: {
6
+ json?: boolean;
7
+ }): Promise<{
8
+ error: string;
9
+ success?: undefined;
10
+ message?: undefined;
11
+ data?: undefined;
12
+ } | {
13
+ success: boolean;
14
+ message: string;
15
+ error?: undefined;
16
+ data?: undefined;
17
+ } | {
18
+ success: boolean;
19
+ message: string;
20
+ data: {
21
+ workspace_root: string;
22
+ workspace_mode: "shared" | "per-repo";
23
+ repos: {
24
+ name: string;
25
+ status: "active" | "not_initialized" | "not_found";
26
+ state: Record<string, unknown>;
27
+ }[];
28
+ };
29
+ error?: undefined;
30
+ }>;
31
+ };
32
+ export declare const syncCommand: {
33
+ name: string;
34
+ description: string;
35
+ execute(context: CommandContext): Promise<{
36
+ error: string;
37
+ success?: undefined;
38
+ message?: undefined;
39
+ } | {
40
+ success: boolean;
41
+ message: string;
42
+ error?: undefined;
43
+ }>;
44
+ };
45
+ export declare const switchCommand: {
46
+ name: string;
47
+ description: string;
48
+ execute(context: CommandContext, args?: {
49
+ repo?: string;
50
+ }): Promise<{
51
+ error: string;
52
+ success?: undefined;
53
+ message?: undefined;
54
+ } | {
55
+ success: boolean;
56
+ message: string;
57
+ error?: undefined;
58
+ }>;
59
+ };
60
+ export declare const addCommand: {
61
+ name: string;
62
+ description: string;
63
+ execute(context: CommandContext, args?: {
64
+ path?: string;
65
+ }): Promise<{
66
+ error: string;
67
+ success?: undefined;
68
+ message?: undefined;
69
+ } | {
70
+ success: boolean;
71
+ message: string;
72
+ error?: undefined;
73
+ }>;
74
+ };
75
+ export declare const removeCommand: {
76
+ name: string;
77
+ description: string;
78
+ execute(context: CommandContext, args?: {
79
+ repo?: string;
80
+ }): Promise<{
81
+ error: string;
82
+ success?: undefined;
83
+ message?: undefined;
84
+ } | {
85
+ success: boolean;
86
+ message: string;
87
+ error?: undefined;
88
+ }>;
89
+ };
90
+ export declare const defaultCommand: {
91
+ name: string;
92
+ description: string;
93
+ execute(context: CommandContext, args?: {
94
+ subcommand?: string;
95
+ }): Promise<{
96
+ error: string;
97
+ success?: undefined;
98
+ message?: undefined;
99
+ data?: undefined;
100
+ } | {
101
+ success: boolean;
102
+ message: string;
103
+ error?: undefined;
104
+ data?: undefined;
105
+ } | {
106
+ success: boolean;
107
+ message: string;
108
+ data: {
109
+ workspace_root: string;
110
+ workspace_mode: "shared" | "per-repo";
111
+ repos: {
112
+ name: string;
113
+ status: "active" | "not_initialized" | "not_found";
114
+ state: Record<string, unknown>;
115
+ }[];
116
+ };
117
+ error?: undefined;
118
+ }>;
119
+ };
120
+ export declare const workspaceCommands: ({
121
+ name: string;
122
+ description: string;
123
+ execute(context: CommandContext, args?: {
124
+ json?: boolean;
125
+ }): Promise<{
126
+ error: string;
127
+ success?: undefined;
128
+ message?: undefined;
129
+ data?: undefined;
130
+ } | {
131
+ success: boolean;
132
+ message: string;
133
+ error?: undefined;
134
+ data?: undefined;
135
+ } | {
136
+ success: boolean;
137
+ message: string;
138
+ data: {
139
+ workspace_root: string;
140
+ workspace_mode: "shared" | "per-repo";
141
+ repos: {
142
+ name: string;
143
+ status: "active" | "not_initialized" | "not_found";
144
+ state: Record<string, unknown>;
145
+ }[];
146
+ };
147
+ error?: undefined;
148
+ }>;
149
+ } | {
150
+ name: string;
151
+ description: string;
152
+ execute(context: CommandContext, args?: {
153
+ repo?: string;
154
+ }): Promise<{
155
+ error: string;
156
+ success?: undefined;
157
+ message?: undefined;
158
+ } | {
159
+ success: boolean;
160
+ message: string;
161
+ error?: undefined;
162
+ }>;
163
+ } | {
164
+ name: string;
165
+ description: string;
166
+ execute(context: CommandContext, args?: {
167
+ path?: string;
168
+ }): Promise<{
169
+ error: string;
170
+ success?: undefined;
171
+ message?: undefined;
172
+ } | {
173
+ success: boolean;
174
+ message: string;
175
+ error?: undefined;
176
+ }>;
177
+ } | {
178
+ name: string;
179
+ description: string;
180
+ execute(context: CommandContext, args?: {
181
+ subcommand?: string;
182
+ }): Promise<{
183
+ error: string;
184
+ success?: undefined;
185
+ message?: undefined;
186
+ data?: undefined;
187
+ } | {
188
+ success: boolean;
189
+ message: string;
190
+ error?: undefined;
191
+ data?: undefined;
192
+ } | {
193
+ success: boolean;
194
+ message: string;
195
+ data: {
196
+ workspace_root: string;
197
+ workspace_mode: "shared" | "per-repo";
198
+ repos: {
199
+ name: string;
200
+ status: "active" | "not_initialized" | "not_found";
201
+ state: Record<string, unknown>;
202
+ }[];
203
+ };
204
+ error?: undefined;
205
+ }>;
206
+ })[];
207
+ //# sourceMappingURL=workspace-commands.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"workspace-commands.d.ts","sourceRoot":"","sources":["../../../src/commands/state/workspace-commands.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,6BAA6B,CAAA;AAiGjE,eAAO,MAAM,aAAa;;;qBAGD,cAAc,SAAS;QAAE,IAAI,CAAC,EAAE,OAAO,CAAA;KAAE;;;;;;;;;;;;;;;;;;;;;;;;CA0CjE,CAAA;AAED,eAAO,MAAM,WAAW;;;qBAGC,cAAc;;;;;;;;;CA6EtC,CAAA;AAED,eAAO,MAAM,aAAa;;;qBAGD,cAAc,SAAS;QAAE,IAAI,CAAC,EAAE,MAAM,CAAA;KAAE;;;;;;;;;CA0ChE,CAAA;AAED,eAAO,MAAM,UAAU;;;qBAGE,cAAc,SAAS;QAAE,IAAI,CAAC,EAAE,MAAM,CAAA;KAAE;;;;;;;;;CA0ChE,CAAA;AAED,eAAO,MAAM,aAAa;;;qBAGD,cAAc,SAAS;QAAE,IAAI,CAAC,EAAE,MAAM,CAAA;KAAE;;;;;;;;;CA2ChE,CAAA;AAED,eAAO,MAAM,cAAc;;;qBAGF,cAAc,SAAS;QAAE,UAAU,CAAC,EAAE,MAAM,CAAA;KAAE;;;;;;;;;;;;;;;;;;;;;;;;CAGtE,CAAA;AAED,eAAO,MAAM,iBAAiB;;;qBApRL,cAAc,SAAS;QAAE,IAAI,CAAC,EAAE,OAAO,CAAA;KAAE;;;;;;;;;;;;;;;;;;;;;;;;;;;qBAiIzC,cAAc,SAAS;QAAE,IAAI,CAAC,EAAE,MAAM,CAAA;KAAE;;;;;;;;;;;;qBA+CxC,cAAc,SAAS;QAAE,IAAI,CAAC,EAAE,MAAM,CAAA;KAAE;;;;;;;;;;;;qBA+FxC,cAAc,SAAS;QAAE,UAAU,CAAC,EAAE,MAAM,CAAA;KAAE;;;;;;;;;;;;;;;;;;;;;;;;IAYtE,CAAA"}
@@ -0,0 +1,10 @@
1
+ export interface PortFinderResult {
2
+ port: number;
3
+ host: string;
4
+ }
5
+ /**
6
+ * Finds an open port starting from startPort.
7
+ * Uses Node.js http createServer to check port availability.
8
+ */
9
+ export declare function findOpenPort(startPort?: number, maxRetries?: number): Promise<PortFinderResult>;
10
+ //# sourceMappingURL=port-finder.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"port-finder.d.ts","sourceRoot":"","sources":["../../../src/dashboard/lib/port-finder.ts"],"names":[],"mappings":"AAEA,MAAM,WAAW,gBAAgB;IAC/B,IAAI,EAAE,MAAM,CAAA;IACZ,IAAI,EAAE,MAAM,CAAA;CACb;AAED;;;GAGG;AACH,wBAAsB,YAAY,CAAC,SAAS,GAAE,MAAa,EAAE,UAAU,GAAE,MAAY,GAAG,OAAO,CAAC,gBAAgB,CAAC,CAchH"}
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=port-finder.test.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"port-finder.test.d.ts","sourceRoot":"","sources":["../../../src/dashboard/lib/port-finder.test.ts"],"names":[],"mappings":""}