@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.
- package/LICENSE +21 -0
- package/README.md +136 -0
- package/bin/flowdeck.js +108 -0
- package/dist/agents/architect.d.ts +3 -0
- package/dist/agents/architect.d.ts.map +1 -0
- package/dist/agents/code-explorer.d.ts +3 -0
- package/dist/agents/code-explorer.d.ts.map +1 -0
- package/dist/agents/coder.d.ts +3 -0
- package/dist/agents/coder.d.ts.map +1 -0
- package/dist/agents/debug.d.ts +4 -0
- package/dist/agents/debug.d.ts.map +1 -0
- package/dist/agents/doc-updater.d.ts +3 -0
- package/dist/agents/doc-updater.d.ts.map +1 -0
- package/dist/agents/flowdeck.d.ts +5 -0
- package/dist/agents/flowdeck.d.ts.map +1 -0
- package/dist/agents/index.d.ts +38 -0
- package/dist/agents/index.d.ts.map +1 -0
- package/dist/agents/mapper.d.ts +3 -0
- package/dist/agents/mapper.d.ts.map +1 -0
- package/dist/agents/orchestrator.d.ts +10 -0
- package/dist/agents/orchestrator.d.ts.map +1 -0
- package/dist/agents/performance.d.ts +4 -0
- package/dist/agents/performance.d.ts.map +1 -0
- package/dist/agents/planner.d.ts +3 -0
- package/dist/agents/planner.d.ts.map +1 -0
- package/dist/agents/policy-enforcer.d.ts +3 -0
- package/dist/agents/policy-enforcer.d.ts.map +1 -0
- package/dist/agents/researcher.d.ts +3 -0
- package/dist/agents/researcher.d.ts.map +1 -0
- package/dist/agents/reviewer.d.ts +3 -0
- package/dist/agents/reviewer.d.ts.map +1 -0
- package/dist/agents/risk-analyst.d.ts +3 -0
- package/dist/agents/risk-analyst.d.ts.map +1 -0
- package/dist/agents/security-auditor.d.ts +3 -0
- package/dist/agents/security-auditor.d.ts.map +1 -0
- package/dist/agents/specialist.d.ts +5 -0
- package/dist/agents/specialist.d.ts.map +1 -0
- package/dist/agents/tester.d.ts +3 -0
- package/dist/agents/tester.d.ts.map +1 -0
- package/dist/agents/types.d.ts +20 -0
- package/dist/agents/types.d.ts.map +1 -0
- package/dist/agents/writer.d.ts +3 -0
- package/dist/agents/writer.d.ts.map +1 -0
- package/dist/commands/analysis/analysis.test.d.ts +2 -0
- package/dist/commands/analysis/analysis.test.d.ts.map +1 -0
- package/dist/commands/analysis/analyze-change.d.ts +148 -0
- package/dist/commands/analysis/analyze-change.d.ts.map +1 -0
- package/dist/commands/analysis/evaluate-risk.d.ts +77 -0
- package/dist/commands/analysis/evaluate-risk.d.ts.map +1 -0
- package/dist/commands/analysis/guarded-edit.d.ts +72 -0
- package/dist/commands/analysis/guarded-edit.d.ts.map +1 -0
- package/dist/commands/execution/deploy-check.d.ts +91 -0
- package/dist/commands/execution/deploy-check.d.ts.map +1 -0
- package/dist/commands/execution/fix-bug.d.ts +187 -0
- package/dist/commands/execution/fix-bug.d.ts.map +1 -0
- package/dist/commands/execution/new-feature.d.ts +171 -0
- package/dist/commands/execution/new-feature.d.ts.map +1 -0
- package/dist/commands/execution/review-code.d.ts +130 -0
- package/dist/commands/execution/review-code.d.ts.map +1 -0
- package/dist/commands/execution/write-docs.d.ts +94 -0
- package/dist/commands/execution/write-docs.d.ts.map +1 -0
- package/dist/commands/governance/approve.d.ts +80 -0
- package/dist/commands/governance/approve.d.ts.map +1 -0
- package/dist/commands/intelligence/blast-radius.d.ts +67 -0
- package/dist/commands/intelligence/blast-radius.d.ts.map +1 -0
- package/dist/commands/intelligence/impact-radar.d.ts +71 -0
- package/dist/commands/intelligence/impact-radar.d.ts.map +1 -0
- package/dist/commands/intelligence/intelligence.test.d.ts +2 -0
- package/dist/commands/intelligence/intelligence.test.d.ts.map +1 -0
- package/dist/commands/intelligence/regression-predict.d.ts +75 -0
- package/dist/commands/intelligence/regression-predict.d.ts.map +1 -0
- package/dist/commands/intelligence/review-route.d.ts +65 -0
- package/dist/commands/intelligence/review-route.d.ts.map +1 -0
- package/dist/commands/intelligence/test-gap.d.ts +73 -0
- package/dist/commands/intelligence/test-gap.d.ts.map +1 -0
- package/dist/commands/intelligence/translate-intent.d.ts +87 -0
- package/dist/commands/intelligence/translate-intent.d.ts.map +1 -0
- package/dist/commands/intelligence/volatility-map-cmd.d.ts +68 -0
- package/dist/commands/intelligence/volatility-map-cmd.d.ts.map +1 -0
- package/dist/commands/planning/ask.d.ts +62 -0
- package/dist/commands/planning/ask.d.ts.map +1 -0
- package/dist/commands/planning/ask.test.d.ts +2 -0
- package/dist/commands/planning/ask.test.d.ts.map +1 -0
- package/dist/commands/planning/dashboard.d.ts +30 -0
- package/dist/commands/planning/dashboard.d.ts.map +1 -0
- package/dist/commands/planning/discuss.d.ts +39 -0
- package/dist/commands/planning/discuss.d.ts.map +1 -0
- package/dist/commands/planning/plan.d.ts +67 -0
- package/dist/commands/planning/plan.d.ts.map +1 -0
- package/dist/commands/planning/roadmap.d.ts +105 -0
- package/dist/commands/planning/roadmap.d.ts.map +1 -0
- package/dist/commands/setup/doctor.d.ts +10 -0
- package/dist/commands/setup/doctor.d.ts.map +1 -0
- package/dist/commands/setup/map-codebase.d.ts +62 -0
- package/dist/commands/setup/map-codebase.d.ts.map +1 -0
- package/dist/commands/setup/new-project.d.ts +19 -0
- package/dist/commands/setup/new-project.d.ts.map +1 -0
- package/dist/commands/setup/settings.d.ts +57 -0
- package/dist/commands/setup/settings.d.ts.map +1 -0
- package/dist/commands/state/checkpoint.d.ts +27 -0
- package/dist/commands/state/checkpoint.d.ts.map +1 -0
- package/dist/commands/state/multi-repo.d.ts +63 -0
- package/dist/commands/state/multi-repo.d.ts.map +1 -0
- package/dist/commands/state/progress.d.ts +57 -0
- package/dist/commands/state/progress.d.ts.map +1 -0
- package/dist/commands/state/resume.d.ts +11 -0
- package/dist/commands/state/resume.d.ts.map +1 -0
- package/dist/commands/state/workspace-commands.d.ts +207 -0
- package/dist/commands/state/workspace-commands.d.ts.map +1 -0
- package/dist/dashboard/lib/port-finder.d.ts +10 -0
- package/dist/dashboard/lib/port-finder.d.ts.map +1 -0
- package/dist/dashboard/lib/port-finder.test.d.ts +2 -0
- package/dist/dashboard/lib/port-finder.test.d.ts.map +1 -0
- package/dist/dashboard/lib/state-reader.d.ts +3 -0
- package/dist/dashboard/lib/state-reader.d.ts.map +1 -0
- package/dist/dashboard/server.d.ts +2 -0
- package/dist/dashboard/server.d.ts.map +1 -0
- package/dist/dashboard/server.mjs +13649 -0
- package/dist/dashboard/types.d.ts +72 -0
- package/dist/dashboard/types.d.ts.map +1 -0
- package/dist/dashboard/views/index.ejs +391 -0
- package/dist/dashboard/views/partials/blockers.ejs +10 -0
- package/dist/dashboard/views/partials/header.ejs +20 -0
- package/dist/dashboard/views/partials/phase-timeline.ejs +40 -0
- package/dist/dashboard/views/partials/progress.ejs +12 -0
- package/dist/hooks/approval-hook.d.ts +13 -0
- package/dist/hooks/approval-hook.d.ts.map +1 -0
- package/dist/hooks/compaction-hook.d.ts +23 -0
- package/dist/hooks/compaction-hook.d.ts.map +1 -0
- package/dist/hooks/context-window-monitor.d.ts +21 -0
- package/dist/hooks/context-window-monitor.d.ts.map +1 -0
- package/dist/hooks/decision-trace-hook.d.ts +13 -0
- package/dist/hooks/decision-trace-hook.d.ts.map +1 -0
- package/dist/hooks/file-tracker.d.ts +29 -0
- package/dist/hooks/file-tracker.d.ts.map +1 -0
- package/dist/hooks/guard-rails.d.ts +33 -0
- package/dist/hooks/guard-rails.d.ts.map +1 -0
- package/dist/hooks/index.d.ts +5 -0
- package/dist/hooks/index.d.ts.map +1 -0
- package/dist/hooks/notifications.d.ts +21 -0
- package/dist/hooks/notifications.d.ts.map +1 -0
- package/dist/hooks/patch-trust.d.ts +27 -0
- package/dist/hooks/patch-trust.d.ts.map +1 -0
- package/dist/hooks/patch-trust.test.d.ts +2 -0
- package/dist/hooks/patch-trust.test.d.ts.map +1 -0
- package/dist/hooks/session-events.d.ts +8 -0
- package/dist/hooks/session-events.d.ts.map +1 -0
- package/dist/hooks/session-idle-hook.d.ts +21 -0
- package/dist/hooks/session-idle-hook.d.ts.map +1 -0
- package/dist/hooks/session-start.d.ts +10 -0
- package/dist/hooks/session-start.d.ts.map +1 -0
- package/dist/hooks/shell-env-hook.d.ts +21 -0
- package/dist/hooks/shell-env-hook.d.ts.map +1 -0
- package/dist/hooks/telemetry-hook.d.ts +25 -0
- package/dist/hooks/telemetry-hook.d.ts.map +1 -0
- package/dist/hooks/todo-hook.d.ts +25 -0
- package/dist/hooks/todo-hook.d.ts.map +1 -0
- package/dist/hooks/tool-guard.d.ts +41 -0
- package/dist/hooks/tool-guard.d.ts.map +1 -0
- package/dist/hooks/tool-guard.test.d.ts +2 -0
- package/dist/hooks/tool-guard.test.d.ts.map +1 -0
- package/dist/index.d.ts +4 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +6639 -0
- package/dist/lib/confirmation.d.ts +20 -0
- package/dist/lib/confirmation.d.ts.map +1 -0
- package/dist/lib/impact-radar.d.ts +35 -0
- package/dist/lib/impact-radar.d.ts.map +1 -0
- package/dist/lib/signatures.d.ts +12 -0
- package/dist/lib/signatures.d.ts.map +1 -0
- package/dist/lib/timestamps.d.ts +23 -0
- package/dist/lib/timestamps.d.ts.map +1 -0
- package/dist/mcp/index.d.ts +20 -0
- package/dist/mcp/index.d.ts.map +1 -0
- package/dist/services/agent-performance.d.ts +29 -0
- package/dist/services/agent-performance.d.ts.map +1 -0
- package/dist/services/approval-manager.d.ts +30 -0
- package/dist/services/approval-manager.d.ts.map +1 -0
- package/dist/services/index.d.ts +7 -0
- package/dist/services/index.d.ts.map +1 -0
- package/dist/services/model-router.d.ts +35 -0
- package/dist/services/model-router.d.ts.map +1 -0
- package/dist/services/policy-compiler.d.ts +27 -0
- package/dist/services/policy-compiler.d.ts.map +1 -0
- package/dist/services/run-trace.d.ts +34 -0
- package/dist/services/run-trace.d.ts.map +1 -0
- package/dist/services/services.test.d.ts +2 -0
- package/dist/services/services.test.d.ts.map +1 -0
- package/dist/services/telemetry.d.ts +34 -0
- package/dist/services/telemetry.d.ts.map +1 -0
- package/dist/tools/agent-dispatch.test.d.ts +2 -0
- package/dist/tools/agent-dispatch.test.d.ts.map +1 -0
- package/dist/tools/codebase-state.d.ts +4 -0
- package/dist/tools/codebase-state.d.ts.map +1 -0
- package/dist/tools/context-generator.d.ts +3 -0
- package/dist/tools/context-generator.d.ts.map +1 -0
- package/dist/tools/council.d.ts +4 -0
- package/dist/tools/council.d.ts.map +1 -0
- package/dist/tools/decision-trace.d.ts +16 -0
- package/dist/tools/decision-trace.d.ts.map +1 -0
- package/dist/tools/delegate.d.ts +4 -0
- package/dist/tools/delegate.d.ts.map +1 -0
- package/dist/tools/failure-replay.d.ts +19 -0
- package/dist/tools/failure-replay.d.ts.map +1 -0
- package/dist/tools/failure-replay.test.d.ts +2 -0
- package/dist/tools/failure-replay.test.d.ts.map +1 -0
- package/dist/tools/hash-edit.d.ts +3 -0
- package/dist/tools/hash-edit.d.ts.map +1 -0
- package/dist/tools/planning-state-lib.d.ts +65 -0
- package/dist/tools/planning-state-lib.d.ts.map +1 -0
- package/dist/tools/planning-state.d.ts +3 -0
- package/dist/tools/planning-state.d.ts.map +1 -0
- package/dist/tools/policy-engine.d.ts +19 -0
- package/dist/tools/policy-engine.d.ts.map +1 -0
- package/dist/tools/repo-memory.d.ts +20 -0
- package/dist/tools/repo-memory.d.ts.map +1 -0
- package/dist/tools/repo-memory.test.d.ts +2 -0
- package/dist/tools/repo-memory.test.d.ts.map +1 -0
- package/dist/tools/run-parallel.d.ts +4 -0
- package/dist/tools/run-parallel.d.ts.map +1 -0
- package/dist/tools/run-pipeline.d.ts +4 -0
- package/dist/tools/run-pipeline.d.ts.map +1 -0
- package/dist/tools/volatility-map.d.ts +18 -0
- package/dist/tools/volatility-map.d.ts.map +1 -0
- package/dist/tools/volatility-map.test.d.ts +2 -0
- package/dist/tools/volatility-map.test.d.ts.map +1 -0
- package/dist/tools/workspace-state.d.ts +3 -0
- package/dist/tools/workspace-state.d.ts.map +1 -0
- package/docs/USER_GUIDE.md +20 -0
- package/docs/agents.md +562 -0
- package/docs/best-practices.md +47 -0
- package/docs/command-migration.md +175 -0
- package/docs/commands/fd-analyze-change.md +107 -0
- package/docs/commands/fd-ask.md +51 -0
- package/docs/commands/fd-checkpoint.md +10 -0
- package/docs/commands/fd-dashboard.md +11 -0
- package/docs/commands/fd-deploy-check.md +11 -0
- package/docs/commands/fd-discuss.md +28 -0
- package/docs/commands/fd-evaluate-risk.md +134 -0
- package/docs/commands/fd-fix-bug.md +24 -0
- package/docs/commands/fd-guarded-edit.md +105 -0
- package/docs/commands/fd-map-codebase.md +27 -0
- package/docs/commands/fd-multi-repo.md +63 -0
- package/docs/commands/fd-new-feature.md +25 -0
- package/docs/commands/fd-new-project.md +24 -0
- package/docs/commands/fd-plan.md +33 -0
- package/docs/commands/fd-progress.md +11 -0
- package/docs/commands/fd-resume.md +10 -0
- package/docs/commands/fd-review-code.md +29 -0
- package/docs/commands/fd-roadmap.md +10 -0
- package/docs/commands/fd-settings.md +10 -0
- package/docs/commands/fd-write-docs.md +10 -0
- package/docs/commands.md +476 -0
- package/docs/configuration.md +211 -0
- package/docs/feature-integration-architecture.md +255 -0
- package/docs/index.md +75 -0
- package/docs/installation.md +134 -0
- package/docs/intelligence.md +294 -0
- package/docs/multi-repo.md +201 -0
- package/docs/notifications.md +170 -0
- package/docs/parallel-execution.md +227 -0
- package/docs/quick-start.md +174 -0
- package/docs/rules.md +459 -0
- package/docs/skills.md +408 -0
- package/docs/workflows.md +376 -0
- package/package.json +58 -0
- package/postinstall.mjs +102 -0
- package/src/rules/README.md +37 -0
- package/src/rules/common/agent-orchestration.md +86 -0
- package/src/rules/common/coding-style.md +120 -0
- package/src/rules/common/git-workflow.md +77 -0
- package/src/rules/common/security.md +94 -0
- package/src/rules/common/testing.md +105 -0
- package/src/rules/golang/patterns.md +187 -0
- package/src/rules/java/patterns.md +204 -0
- package/src/rules/python/patterns.md +141 -0
- package/src/rules/rust/patterns.md +210 -0
- package/src/rules/typescript/patterns.md +168 -0
- package/src/skills/api-design/SKILL.md +143 -0
- package/src/skills/arch-constraint-guard/SKILL.md +61 -0
- package/src/skills/blast-radius-preview/SKILL.md +65 -0
- package/src/skills/change-impact-radar/SKILL.md +63 -0
- package/src/skills/code-review/SKILL.md +108 -0
- package/src/skills/code-tour/SKILL.md +101 -0
- package/src/skills/codebase-mapping/SKILL.md +87 -0
- package/src/skills/codebase-onboarding/SKILL.md +133 -0
- package/src/skills/confidence-aware-planning/SKILL.md +67 -0
- package/src/skills/context-load/SKILL.md +63 -0
- package/src/skills/debug-flow/SKILL.md +75 -0
- package/src/skills/decision-trace/SKILL.md +72 -0
- package/src/skills/dependency-audit/SKILL.md +126 -0
- package/src/skills/deploy-check/SKILL.md +87 -0
- package/src/skills/documentation-writer/SKILL.md +154 -0
- package/src/skills/failure-replay-engine/SKILL.md +59 -0
- package/src/skills/git-release/SKILL.md +94 -0
- package/src/skills/git-workflow/SKILL.md +177 -0
- package/src/skills/golang-patterns/SKILL.md +511 -0
- package/src/skills/human-review-routing/SKILL.md +65 -0
- package/src/skills/intent-translator/SKILL.md +57 -0
- package/src/skills/java-patterns/SKILL.md +479 -0
- package/src/skills/multi-repo/SKILL.md +187 -0
- package/src/skills/parallel-execute/SKILL.md +92 -0
- package/src/skills/patch-trust-score/SKILL.md +44 -0
- package/src/skills/performance-profiling/SKILL.md +153 -0
- package/src/skills/plan-task/SKILL.md +101 -0
- package/src/skills/python-patterns/SKILL.md +529 -0
- package/src/skills/refactor-guide/SKILL.md +117 -0
- package/src/skills/regression-prediction/SKILL.md +57 -0
- package/src/skills/repo-memory-graph/SKILL.md +49 -0
- package/src/skills/rust-patterns/SKILL.md +492 -0
- package/src/skills/security-scan/SKILL.md +91 -0
- package/src/skills/self-healing-policies/SKILL.md +76 -0
- package/src/skills/tdd-workflow/SKILL.md +126 -0
- package/src/skills/test-coverage/SKILL.md +94 -0
- package/src/skills/test-gap-detector/SKILL.md +58 -0
- package/src/skills/volatility-map/SKILL.md +52 -0
- package/src/workflows/debug-flow.md +119 -0
- package/src/workflows/deploy-check-flow.md +98 -0
- package/src/workflows/discuss-flow.md +97 -0
- package/src/workflows/execute-flow.md +233 -0
- package/src/workflows/execute-phase.md +142 -0
- package/src/workflows/fix-bug-flow.md +210 -0
- package/src/workflows/map-codebase-flow.md +92 -0
- package/src/workflows/multi-repo-flow.md +226 -0
- package/src/workflows/parallel-execution-flow.md +236 -0
- package/src/workflows/plan-flow.md +126 -0
- package/src/workflows/plan-phase.md +101 -0
- package/src/workflows/refactor-flow.md +122 -0
- package/src/workflows/review-code-flow.md +105 -0
- package/src/workflows/spec-driven-flow.md +43 -0
- package/src/workflows/write-docs-flow.md +95 -0
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
import type { CommandContext } from "../../types/command-context";
|
|
2
|
+
export declare const regressionPredictCommand: {
|
|
3
|
+
name: string;
|
|
4
|
+
description: string;
|
|
5
|
+
execute(context: CommandContext, args?: {
|
|
6
|
+
change?: string;
|
|
7
|
+
files?: string;
|
|
8
|
+
json?: boolean;
|
|
9
|
+
}): Promise<{
|
|
10
|
+
error: string;
|
|
11
|
+
code: string;
|
|
12
|
+
success?: undefined;
|
|
13
|
+
data?: undefined;
|
|
14
|
+
meta?: undefined;
|
|
15
|
+
message?: undefined;
|
|
16
|
+
config?: undefined;
|
|
17
|
+
phase?: undefined;
|
|
18
|
+
} | {
|
|
19
|
+
success: boolean;
|
|
20
|
+
data: {
|
|
21
|
+
config: {
|
|
22
|
+
change_description: string;
|
|
23
|
+
affected_files: string[];
|
|
24
|
+
regression_categories: string[];
|
|
25
|
+
past_regression_signals: string[];
|
|
26
|
+
agents: {
|
|
27
|
+
name: string;
|
|
28
|
+
role: string;
|
|
29
|
+
}[];
|
|
30
|
+
output_format: {
|
|
31
|
+
predictions: string;
|
|
32
|
+
top_risk: string;
|
|
33
|
+
};
|
|
34
|
+
workflow: string;
|
|
35
|
+
};
|
|
36
|
+
phase: number;
|
|
37
|
+
};
|
|
38
|
+
meta: {
|
|
39
|
+
formatted: string;
|
|
40
|
+
timestamp: string;
|
|
41
|
+
};
|
|
42
|
+
error?: undefined;
|
|
43
|
+
code?: undefined;
|
|
44
|
+
message?: undefined;
|
|
45
|
+
config?: undefined;
|
|
46
|
+
phase?: undefined;
|
|
47
|
+
} | {
|
|
48
|
+
success: boolean;
|
|
49
|
+
message: string;
|
|
50
|
+
config: {
|
|
51
|
+
change_description: string;
|
|
52
|
+
affected_files: string[];
|
|
53
|
+
regression_categories: string[];
|
|
54
|
+
past_regression_signals: string[];
|
|
55
|
+
agents: {
|
|
56
|
+
name: string;
|
|
57
|
+
role: string;
|
|
58
|
+
}[];
|
|
59
|
+
output_format: {
|
|
60
|
+
predictions: string;
|
|
61
|
+
top_risk: string;
|
|
62
|
+
};
|
|
63
|
+
workflow: string;
|
|
64
|
+
};
|
|
65
|
+
phase: number;
|
|
66
|
+
meta: {
|
|
67
|
+
formatted: string;
|
|
68
|
+
timestamp: string;
|
|
69
|
+
};
|
|
70
|
+
error?: undefined;
|
|
71
|
+
code?: undefined;
|
|
72
|
+
data?: undefined;
|
|
73
|
+
}>;
|
|
74
|
+
};
|
|
75
|
+
//# sourceMappingURL=regression-predict.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"regression-predict.d.ts","sourceRoot":"","sources":["../../../src/commands/intelligence/regression-predict.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,6BAA6B,CAAA;AAkBjE,eAAO,MAAM,wBAAwB;;;qBAGZ,cAAc,SAAS;QAAE,MAAM,CAAC,EAAE,MAAM,CAAC;QAAC,KAAK,CAAC,EAAE,MAAM,CAAC;QAAC,IAAI,CAAC,EAAE,OAAO,CAAA;KAAE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA6DlG,CAAA"}
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
import type { CommandContext } from "../../types/command-context";
|
|
2
|
+
import { type TrustVerdict } from "../../hooks/patch-trust";
|
|
3
|
+
export declare const reviewRouteCommand: {
|
|
4
|
+
name: string;
|
|
5
|
+
description: string;
|
|
6
|
+
execute(context: CommandContext, args?: {
|
|
7
|
+
files?: string;
|
|
8
|
+
change?: string;
|
|
9
|
+
json?: boolean;
|
|
10
|
+
}): Promise<{
|
|
11
|
+
error: string;
|
|
12
|
+
code: string;
|
|
13
|
+
success?: undefined;
|
|
14
|
+
data?: undefined;
|
|
15
|
+
meta?: undefined;
|
|
16
|
+
message?: undefined;
|
|
17
|
+
config?: undefined;
|
|
18
|
+
phase?: undefined;
|
|
19
|
+
routed_to?: undefined;
|
|
20
|
+
} | {
|
|
21
|
+
success: boolean;
|
|
22
|
+
data: {
|
|
23
|
+
config: {
|
|
24
|
+
files: string[];
|
|
25
|
+
change_description: string;
|
|
26
|
+
trust_verdict: TrustVerdict;
|
|
27
|
+
routed_to: ("security" | "data" | "backend" | "infra" | "domain-owner" | "frontend" | "devops")[];
|
|
28
|
+
routing_rationale: string[];
|
|
29
|
+
workflow: string;
|
|
30
|
+
};
|
|
31
|
+
phase: number;
|
|
32
|
+
};
|
|
33
|
+
meta: {
|
|
34
|
+
formatted: string;
|
|
35
|
+
timestamp: string;
|
|
36
|
+
};
|
|
37
|
+
error?: undefined;
|
|
38
|
+
code?: undefined;
|
|
39
|
+
message?: undefined;
|
|
40
|
+
config?: undefined;
|
|
41
|
+
phase?: undefined;
|
|
42
|
+
routed_to?: undefined;
|
|
43
|
+
} | {
|
|
44
|
+
success: boolean;
|
|
45
|
+
message: string;
|
|
46
|
+
config: {
|
|
47
|
+
files: string[];
|
|
48
|
+
change_description: string;
|
|
49
|
+
trust_verdict: TrustVerdict;
|
|
50
|
+
routed_to: ("security" | "data" | "backend" | "infra" | "domain-owner" | "frontend" | "devops")[];
|
|
51
|
+
routing_rationale: string[];
|
|
52
|
+
workflow: string;
|
|
53
|
+
};
|
|
54
|
+
phase: number;
|
|
55
|
+
routed_to: ("security" | "data" | "backend" | "infra" | "domain-owner" | "frontend" | "devops")[];
|
|
56
|
+
meta: {
|
|
57
|
+
formatted: string;
|
|
58
|
+
timestamp: string;
|
|
59
|
+
};
|
|
60
|
+
error?: undefined;
|
|
61
|
+
code?: undefined;
|
|
62
|
+
data?: undefined;
|
|
63
|
+
}>;
|
|
64
|
+
};
|
|
65
|
+
//# sourceMappingURL=review-route.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"review-route.d.ts","sourceRoot":"","sources":["../../../src/commands/intelligence/review-route.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,6BAA6B,CAAA;AAIjE,OAAO,EAAc,KAAK,YAAY,EAAE,MAAM,yBAAyB,CAAA;AA0BvE,eAAO,MAAM,kBAAkB;;;qBAGN,cAAc,SAAS;QAAE,KAAK,CAAC,EAAE,MAAM,CAAC;QAAC,MAAM,CAAC,EAAE,MAAM,CAAC;QAAC,IAAI,CAAC,EAAE,OAAO,CAAA;KAAE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAgDlG,CAAA"}
|
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
import type { CommandContext } from "../../types/command-context";
|
|
2
|
+
export declare const testGapCommand: {
|
|
3
|
+
name: string;
|
|
4
|
+
description: string;
|
|
5
|
+
execute(context: CommandContext, args?: {
|
|
6
|
+
scope?: string;
|
|
7
|
+
change?: string;
|
|
8
|
+
json?: boolean;
|
|
9
|
+
}): Promise<{
|
|
10
|
+
error: string;
|
|
11
|
+
code: string;
|
|
12
|
+
success?: undefined;
|
|
13
|
+
data?: undefined;
|
|
14
|
+
meta?: undefined;
|
|
15
|
+
message?: undefined;
|
|
16
|
+
config?: undefined;
|
|
17
|
+
phase?: undefined;
|
|
18
|
+
} | {
|
|
19
|
+
success: boolean;
|
|
20
|
+
data: {
|
|
21
|
+
config: {
|
|
22
|
+
scope: string;
|
|
23
|
+
change_description: string;
|
|
24
|
+
agents: {
|
|
25
|
+
name: string;
|
|
26
|
+
role: string;
|
|
27
|
+
}[];
|
|
28
|
+
gap_types: string[];
|
|
29
|
+
output_format: {
|
|
30
|
+
gaps: string;
|
|
31
|
+
minimum_viable_set: string;
|
|
32
|
+
};
|
|
33
|
+
workflow: string;
|
|
34
|
+
};
|
|
35
|
+
phase: number;
|
|
36
|
+
};
|
|
37
|
+
meta: {
|
|
38
|
+
formatted: string;
|
|
39
|
+
timestamp: string;
|
|
40
|
+
};
|
|
41
|
+
error?: undefined;
|
|
42
|
+
code?: undefined;
|
|
43
|
+
message?: undefined;
|
|
44
|
+
config?: undefined;
|
|
45
|
+
phase?: undefined;
|
|
46
|
+
} | {
|
|
47
|
+
success: boolean;
|
|
48
|
+
message: string;
|
|
49
|
+
config: {
|
|
50
|
+
scope: string;
|
|
51
|
+
change_description: string;
|
|
52
|
+
agents: {
|
|
53
|
+
name: string;
|
|
54
|
+
role: string;
|
|
55
|
+
}[];
|
|
56
|
+
gap_types: string[];
|
|
57
|
+
output_format: {
|
|
58
|
+
gaps: string;
|
|
59
|
+
minimum_viable_set: string;
|
|
60
|
+
};
|
|
61
|
+
workflow: string;
|
|
62
|
+
};
|
|
63
|
+
phase: number;
|
|
64
|
+
meta: {
|
|
65
|
+
formatted: string;
|
|
66
|
+
timestamp: string;
|
|
67
|
+
};
|
|
68
|
+
error?: undefined;
|
|
69
|
+
code?: undefined;
|
|
70
|
+
data?: undefined;
|
|
71
|
+
}>;
|
|
72
|
+
};
|
|
73
|
+
//# sourceMappingURL=test-gap.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"test-gap.d.ts","sourceRoot":"","sources":["../../../src/commands/intelligence/test-gap.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,6BAA6B,CAAA;AAIjE,eAAO,MAAM,cAAc;;;qBAGF,cAAc,SAAS;QAAE,KAAK,CAAC,EAAE,MAAM,CAAC;QAAC,MAAM,CAAC,EAAE,MAAM,CAAC;QAAC,IAAI,CAAC,EAAE,OAAO,CAAA;KAAE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAyDlG,CAAA"}
|
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
export declare const translateIntentCommand: {
|
|
2
|
+
name: string;
|
|
3
|
+
description: string;
|
|
4
|
+
execute(context: any, args?: {
|
|
5
|
+
intent?: string;
|
|
6
|
+
"rank-options"?: boolean;
|
|
7
|
+
json?: boolean;
|
|
8
|
+
}): Promise<{
|
|
9
|
+
error: string;
|
|
10
|
+
code: string;
|
|
11
|
+
hint?: undefined;
|
|
12
|
+
success?: undefined;
|
|
13
|
+
data?: undefined;
|
|
14
|
+
meta?: undefined;
|
|
15
|
+
message?: undefined;
|
|
16
|
+
config?: undefined;
|
|
17
|
+
phase?: undefined;
|
|
18
|
+
} | {
|
|
19
|
+
error: string;
|
|
20
|
+
code: string;
|
|
21
|
+
hint: string;
|
|
22
|
+
success?: undefined;
|
|
23
|
+
data?: undefined;
|
|
24
|
+
meta?: undefined;
|
|
25
|
+
message?: undefined;
|
|
26
|
+
config?: undefined;
|
|
27
|
+
phase?: undefined;
|
|
28
|
+
} | {
|
|
29
|
+
success: boolean;
|
|
30
|
+
data: {
|
|
31
|
+
config: {
|
|
32
|
+
intent: string;
|
|
33
|
+
agents: {
|
|
34
|
+
name: string;
|
|
35
|
+
role: string;
|
|
36
|
+
}[];
|
|
37
|
+
output_format: {
|
|
38
|
+
options: string;
|
|
39
|
+
recommended_option: string;
|
|
40
|
+
assumptions: string;
|
|
41
|
+
clarifying_questions: string;
|
|
42
|
+
};
|
|
43
|
+
rank_options: boolean;
|
|
44
|
+
workflow: string;
|
|
45
|
+
};
|
|
46
|
+
phase: number;
|
|
47
|
+
};
|
|
48
|
+
meta: {
|
|
49
|
+
formatted: string;
|
|
50
|
+
timestamp: string;
|
|
51
|
+
};
|
|
52
|
+
error?: undefined;
|
|
53
|
+
code?: undefined;
|
|
54
|
+
hint?: undefined;
|
|
55
|
+
message?: undefined;
|
|
56
|
+
config?: undefined;
|
|
57
|
+
phase?: undefined;
|
|
58
|
+
} | {
|
|
59
|
+
success: boolean;
|
|
60
|
+
message: string;
|
|
61
|
+
config: {
|
|
62
|
+
intent: string;
|
|
63
|
+
agents: {
|
|
64
|
+
name: string;
|
|
65
|
+
role: string;
|
|
66
|
+
}[];
|
|
67
|
+
output_format: {
|
|
68
|
+
options: string;
|
|
69
|
+
recommended_option: string;
|
|
70
|
+
assumptions: string;
|
|
71
|
+
clarifying_questions: string;
|
|
72
|
+
};
|
|
73
|
+
rank_options: boolean;
|
|
74
|
+
workflow: string;
|
|
75
|
+
};
|
|
76
|
+
phase: number;
|
|
77
|
+
meta: {
|
|
78
|
+
formatted: string;
|
|
79
|
+
timestamp: string;
|
|
80
|
+
};
|
|
81
|
+
error?: undefined;
|
|
82
|
+
code?: undefined;
|
|
83
|
+
hint?: undefined;
|
|
84
|
+
data?: undefined;
|
|
85
|
+
}>;
|
|
86
|
+
};
|
|
87
|
+
//# sourceMappingURL=translate-intent.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"translate-intent.d.ts","sourceRoot":"","sources":["../../../src/commands/intelligence/translate-intent.ts"],"names":[],"mappings":"AAGA,eAAO,MAAM,sBAAsB;;;qBAGV,GAAG,SAAS;QAAE,MAAM,CAAC,EAAE,MAAM,CAAC;QAAC,cAAc,CAAC,EAAE,OAAO,CAAC;QAAC,IAAI,CAAC,EAAE,OAAO,CAAA;KAAE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA2DjG,CAAA"}
|
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
import type { CommandContext } from "../../types/command-context";
|
|
2
|
+
export declare const volatilityMapCommand: {
|
|
3
|
+
name: string;
|
|
4
|
+
description: string;
|
|
5
|
+
execute(context: CommandContext, args?: {
|
|
6
|
+
threshold?: "stable" | "moderate" | "volatile" | "critical";
|
|
7
|
+
json?: boolean;
|
|
8
|
+
}): Promise<{
|
|
9
|
+
error: string;
|
|
10
|
+
code: string;
|
|
11
|
+
success?: undefined;
|
|
12
|
+
data?: undefined;
|
|
13
|
+
meta?: undefined;
|
|
14
|
+
message?: undefined;
|
|
15
|
+
config?: undefined;
|
|
16
|
+
phase?: undefined;
|
|
17
|
+
} | {
|
|
18
|
+
success: boolean;
|
|
19
|
+
data: {
|
|
20
|
+
config: {
|
|
21
|
+
threshold: "stable" | "moderate" | "volatile" | "critical";
|
|
22
|
+
agents: {
|
|
23
|
+
name: string;
|
|
24
|
+
role: string;
|
|
25
|
+
}[];
|
|
26
|
+
output_tool: string;
|
|
27
|
+
output_action: string;
|
|
28
|
+
output_file: string;
|
|
29
|
+
has_existing_data: boolean;
|
|
30
|
+
workflow: string;
|
|
31
|
+
};
|
|
32
|
+
phase: number;
|
|
33
|
+
};
|
|
34
|
+
meta: {
|
|
35
|
+
formatted: string;
|
|
36
|
+
timestamp: string;
|
|
37
|
+
};
|
|
38
|
+
error?: undefined;
|
|
39
|
+
code?: undefined;
|
|
40
|
+
message?: undefined;
|
|
41
|
+
config?: undefined;
|
|
42
|
+
phase?: undefined;
|
|
43
|
+
} | {
|
|
44
|
+
success: boolean;
|
|
45
|
+
message: string;
|
|
46
|
+
config: {
|
|
47
|
+
threshold: "stable" | "moderate" | "volatile" | "critical";
|
|
48
|
+
agents: {
|
|
49
|
+
name: string;
|
|
50
|
+
role: string;
|
|
51
|
+
}[];
|
|
52
|
+
output_tool: string;
|
|
53
|
+
output_action: string;
|
|
54
|
+
output_file: string;
|
|
55
|
+
has_existing_data: boolean;
|
|
56
|
+
workflow: string;
|
|
57
|
+
};
|
|
58
|
+
phase: number;
|
|
59
|
+
meta: {
|
|
60
|
+
formatted: string;
|
|
61
|
+
timestamp: string;
|
|
62
|
+
};
|
|
63
|
+
error?: undefined;
|
|
64
|
+
code?: undefined;
|
|
65
|
+
data?: undefined;
|
|
66
|
+
}>;
|
|
67
|
+
};
|
|
68
|
+
//# sourceMappingURL=volatility-map-cmd.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"volatility-map-cmd.d.ts","sourceRoot":"","sources":["../../../src/commands/intelligence/volatility-map-cmd.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,6BAA6B,CAAA;AAKjE,eAAO,MAAM,oBAAoB;;;qBAGR,cAAc,SAAS;QAAE,SAAS,CAAC,EAAE,QAAQ,GAAG,UAAU,GAAG,UAAU,GAAG,UAAU,CAAC;QAAC,IAAI,CAAC,EAAE,OAAO,CAAA;KAAE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAkD9H,CAAA"}
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
import type { CommandContext } from "../../types/command-context";
|
|
2
|
+
export declare const askCommand: {
|
|
3
|
+
name: string;
|
|
4
|
+
description: string;
|
|
5
|
+
execute(context: CommandContext, args?: {
|
|
6
|
+
task?: string;
|
|
7
|
+
agent?: string;
|
|
8
|
+
json?: boolean;
|
|
9
|
+
}): Promise<{
|
|
10
|
+
error: string;
|
|
11
|
+
code: string;
|
|
12
|
+
hint: string;
|
|
13
|
+
examples: {
|
|
14
|
+
agent: string;
|
|
15
|
+
example: string;
|
|
16
|
+
}[];
|
|
17
|
+
success?: undefined;
|
|
18
|
+
data?: undefined;
|
|
19
|
+
meta?: undefined;
|
|
20
|
+
message?: undefined;
|
|
21
|
+
dispatch?: undefined;
|
|
22
|
+
} | {
|
|
23
|
+
success: boolean;
|
|
24
|
+
data: {
|
|
25
|
+
agent: string;
|
|
26
|
+
task: string;
|
|
27
|
+
focus: string;
|
|
28
|
+
routed_by: string;
|
|
29
|
+
impact_radar: import("../../lib/impact-radar").ImpactRadarResult | undefined;
|
|
30
|
+
};
|
|
31
|
+
meta: {
|
|
32
|
+
formatted: string;
|
|
33
|
+
timestamp: string;
|
|
34
|
+
};
|
|
35
|
+
error?: undefined;
|
|
36
|
+
code?: undefined;
|
|
37
|
+
hint?: undefined;
|
|
38
|
+
examples?: undefined;
|
|
39
|
+
message?: undefined;
|
|
40
|
+
dispatch?: undefined;
|
|
41
|
+
} | {
|
|
42
|
+
success: boolean;
|
|
43
|
+
message: string;
|
|
44
|
+
dispatch: {
|
|
45
|
+
agent: string;
|
|
46
|
+
task: string;
|
|
47
|
+
focus: string;
|
|
48
|
+
routed_by: string;
|
|
49
|
+
impact_radar: import("../../lib/impact-radar").ImpactRadarResult | undefined;
|
|
50
|
+
};
|
|
51
|
+
meta: {
|
|
52
|
+
formatted: string;
|
|
53
|
+
timestamp: string;
|
|
54
|
+
};
|
|
55
|
+
error?: undefined;
|
|
56
|
+
code?: undefined;
|
|
57
|
+
hint?: undefined;
|
|
58
|
+
examples?: undefined;
|
|
59
|
+
data?: undefined;
|
|
60
|
+
}>;
|
|
61
|
+
};
|
|
62
|
+
//# sourceMappingURL=ask.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ask.d.ts","sourceRoot":"","sources":["../../../src/commands/planning/ask.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,6BAA6B,CAAA;AA2GjE,eAAO,MAAM,UAAU;;;qBAGE,cAAc,SAAS;QAAE,IAAI,CAAC,EAAE,MAAM,CAAC;QAAC,KAAK,CAAC,EAAE,MAAM,CAAC;QAAC,IAAI,CAAC,EAAE,OAAO,CAAA;KAAE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA8DhG,CAAA"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ask.test.d.ts","sourceRoot":"","sources":["../../../src/commands/planning/ask.test.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import type { CommandContext } from "../../types/command-context";
|
|
2
|
+
export declare const dashboardCommand: {
|
|
3
|
+
name: string;
|
|
4
|
+
description: string;
|
|
5
|
+
execute(context: CommandContext, args?: {
|
|
6
|
+
refresh?: boolean;
|
|
7
|
+
}): Promise<{
|
|
8
|
+
success: boolean;
|
|
9
|
+
error: string;
|
|
10
|
+
code: string;
|
|
11
|
+
message?: undefined;
|
|
12
|
+
meta?: undefined;
|
|
13
|
+
} | {
|
|
14
|
+
success: boolean;
|
|
15
|
+
message: string;
|
|
16
|
+
error?: undefined;
|
|
17
|
+
code?: undefined;
|
|
18
|
+
meta?: undefined;
|
|
19
|
+
} | {
|
|
20
|
+
success: boolean;
|
|
21
|
+
message: string;
|
|
22
|
+
meta: {
|
|
23
|
+
port: number;
|
|
24
|
+
url: string;
|
|
25
|
+
};
|
|
26
|
+
error?: undefined;
|
|
27
|
+
code?: undefined;
|
|
28
|
+
}>;
|
|
29
|
+
};
|
|
30
|
+
//# sourceMappingURL=dashboard.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"dashboard.d.ts","sourceRoot":"","sources":["../../../src/commands/planning/dashboard.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,6BAA6B,CAAA;AAUjE,eAAO,MAAM,gBAAgB;;;qBAGJ,cAAc,SAAS;QAAE,OAAO,CAAC,EAAE,OAAO,CAAA;KAAE;;;;;;;;;;;;;;;;;;;;;;CAyCpE,CAAA"}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import type { CommandContext } from "../../types/command-context";
|
|
2
|
+
export declare const discussCommand: {
|
|
3
|
+
name: string;
|
|
4
|
+
description: string;
|
|
5
|
+
execute(context: CommandContext, args?: {
|
|
6
|
+
topic?: string;
|
|
7
|
+
}): Promise<{
|
|
8
|
+
error: string;
|
|
9
|
+
code: string;
|
|
10
|
+
success?: undefined;
|
|
11
|
+
message?: undefined;
|
|
12
|
+
topic?: undefined;
|
|
13
|
+
workflow?: undefined;
|
|
14
|
+
phase_dir?: undefined;
|
|
15
|
+
impact_radar?: undefined;
|
|
16
|
+
next_step?: undefined;
|
|
17
|
+
} | {
|
|
18
|
+
error: string;
|
|
19
|
+
code?: undefined;
|
|
20
|
+
success?: undefined;
|
|
21
|
+
message?: undefined;
|
|
22
|
+
topic?: undefined;
|
|
23
|
+
workflow?: undefined;
|
|
24
|
+
phase_dir?: undefined;
|
|
25
|
+
impact_radar?: undefined;
|
|
26
|
+
next_step?: undefined;
|
|
27
|
+
} | {
|
|
28
|
+
success: boolean;
|
|
29
|
+
message: string;
|
|
30
|
+
topic: string;
|
|
31
|
+
workflow: string;
|
|
32
|
+
phase_dir: string;
|
|
33
|
+
impact_radar: import("../../lib/impact-radar").ImpactRadarResult;
|
|
34
|
+
next_step: string;
|
|
35
|
+
error?: undefined;
|
|
36
|
+
code?: undefined;
|
|
37
|
+
}>;
|
|
38
|
+
};
|
|
39
|
+
//# sourceMappingURL=discuss.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"discuss.d.ts","sourceRoot":"","sources":["../../../src/commands/planning/discuss.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,6BAA6B,CAAA;AAMjE,eAAO,MAAM,cAAc;;;qBAIF,cAAc,SAAS;QAAE,KAAK,CAAC,EAAE,MAAM,CAAA;KAAE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA4CjE,CAAA"}
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
import type { CommandContext } from "../../types/command-context";
|
|
2
|
+
export declare const planCommand: {
|
|
3
|
+
name: string;
|
|
4
|
+
description: string;
|
|
5
|
+
execute(context: CommandContext, args?: {
|
|
6
|
+
phase?: string;
|
|
7
|
+
confirm?: boolean;
|
|
8
|
+
json?: boolean;
|
|
9
|
+
yes?: boolean;
|
|
10
|
+
}): Promise<{
|
|
11
|
+
error: string;
|
|
12
|
+
code: string;
|
|
13
|
+
hint?: undefined;
|
|
14
|
+
success?: undefined;
|
|
15
|
+
message?: undefined;
|
|
16
|
+
phase?: undefined;
|
|
17
|
+
decisions_count?: undefined;
|
|
18
|
+
plan_file?: undefined;
|
|
19
|
+
status?: undefined;
|
|
20
|
+
} | {
|
|
21
|
+
error: string;
|
|
22
|
+
code?: undefined;
|
|
23
|
+
hint?: undefined;
|
|
24
|
+
success?: undefined;
|
|
25
|
+
message?: undefined;
|
|
26
|
+
phase?: undefined;
|
|
27
|
+
decisions_count?: undefined;
|
|
28
|
+
plan_file?: undefined;
|
|
29
|
+
status?: undefined;
|
|
30
|
+
} | {
|
|
31
|
+
error: string;
|
|
32
|
+
code: string;
|
|
33
|
+
hint: string;
|
|
34
|
+
success?: undefined;
|
|
35
|
+
message?: undefined;
|
|
36
|
+
phase?: undefined;
|
|
37
|
+
decisions_count?: undefined;
|
|
38
|
+
plan_file?: undefined;
|
|
39
|
+
status?: undefined;
|
|
40
|
+
} | {
|
|
41
|
+
phase: number;
|
|
42
|
+
decisions_found: number;
|
|
43
|
+
workflow: string;
|
|
44
|
+
next_step: string;
|
|
45
|
+
success: boolean;
|
|
46
|
+
message: string;
|
|
47
|
+
status: "AWAITING_CONFIRM";
|
|
48
|
+
confirm_mode: "y/n";
|
|
49
|
+
operation: string;
|
|
50
|
+
error?: undefined;
|
|
51
|
+
code?: undefined;
|
|
52
|
+
hint?: undefined;
|
|
53
|
+
decisions_count?: undefined;
|
|
54
|
+
plan_file?: undefined;
|
|
55
|
+
} | {
|
|
56
|
+
success: boolean;
|
|
57
|
+
message: string;
|
|
58
|
+
phase: number;
|
|
59
|
+
decisions_count: number;
|
|
60
|
+
plan_file: string;
|
|
61
|
+
status: string;
|
|
62
|
+
error?: undefined;
|
|
63
|
+
code?: undefined;
|
|
64
|
+
hint?: undefined;
|
|
65
|
+
}>;
|
|
66
|
+
};
|
|
67
|
+
//# sourceMappingURL=plan.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"plan.d.ts","sourceRoot":"","sources":["../../../src/commands/planning/plan.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,6BAA6B,CAAA;AAwCjE,eAAO,MAAM,WAAW;;;qBAGC,cAAc,SAAS;QAAE,KAAK,CAAC,EAAE,MAAM,CAAC;QAAC,OAAO,CAAC,EAAE,OAAO,CAAC;QAAC,IAAI,CAAC,EAAE,OAAO,CAAC;QAAC,GAAG,CAAC,EAAE,OAAO,CAAA;KAAE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAmJnH,CAAA"}
|