@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,171 @@
|
|
|
1
|
+
import type { CommandContext } from "../../types/command-context";
|
|
2
|
+
export declare const newFeatureCommand: {
|
|
3
|
+
name: string;
|
|
4
|
+
description: string;
|
|
5
|
+
execute(context: CommandContext, args?: {
|
|
6
|
+
feature?: string;
|
|
7
|
+
json?: boolean;
|
|
8
|
+
}): Promise<{
|
|
9
|
+
error: string;
|
|
10
|
+
code: string;
|
|
11
|
+
hint: string;
|
|
12
|
+
success?: undefined;
|
|
13
|
+
data?: undefined;
|
|
14
|
+
meta?: undefined;
|
|
15
|
+
message?: undefined;
|
|
16
|
+
workflow?: undefined;
|
|
17
|
+
config?: undefined;
|
|
18
|
+
phase?: undefined;
|
|
19
|
+
plan_file?: undefined;
|
|
20
|
+
impact_radar?: undefined;
|
|
21
|
+
prior_failures?: undefined;
|
|
22
|
+
} | {
|
|
23
|
+
error: string;
|
|
24
|
+
code: string;
|
|
25
|
+
hint?: undefined;
|
|
26
|
+
success?: undefined;
|
|
27
|
+
data?: undefined;
|
|
28
|
+
meta?: undefined;
|
|
29
|
+
message?: undefined;
|
|
30
|
+
workflow?: undefined;
|
|
31
|
+
config?: undefined;
|
|
32
|
+
phase?: undefined;
|
|
33
|
+
plan_file?: undefined;
|
|
34
|
+
impact_radar?: undefined;
|
|
35
|
+
prior_failures?: undefined;
|
|
36
|
+
} | {
|
|
37
|
+
success: boolean;
|
|
38
|
+
data: {
|
|
39
|
+
workflow: string;
|
|
40
|
+
config: {
|
|
41
|
+
orchestrator: {
|
|
42
|
+
model: string;
|
|
43
|
+
temperature: number;
|
|
44
|
+
maxSteps: number;
|
|
45
|
+
};
|
|
46
|
+
agents: {
|
|
47
|
+
name: string;
|
|
48
|
+
model: string;
|
|
49
|
+
temperature: number;
|
|
50
|
+
reasoningEffort?: string;
|
|
51
|
+
}[];
|
|
52
|
+
run_id: string;
|
|
53
|
+
parallel: {
|
|
54
|
+
coder: boolean;
|
|
55
|
+
researcher: boolean;
|
|
56
|
+
};
|
|
57
|
+
worktree: boolean;
|
|
58
|
+
impact_radar: import("../../lib/impact-radar").ImpactRadarResult;
|
|
59
|
+
prior_failures: {
|
|
60
|
+
id: string;
|
|
61
|
+
type: "reverted_commit" | "failed_deployment" | "flaky_test" | "bug_fix" | "build_failure";
|
|
62
|
+
description: string;
|
|
63
|
+
affected_paths: string[];
|
|
64
|
+
root_cause: string | null;
|
|
65
|
+
fix_applied: string | null;
|
|
66
|
+
recurrence_count: number;
|
|
67
|
+
}[];
|
|
68
|
+
post_execution: {
|
|
69
|
+
step: string;
|
|
70
|
+
agent: string;
|
|
71
|
+
actions: ({
|
|
72
|
+
tool: string;
|
|
73
|
+
action: string;
|
|
74
|
+
note: string;
|
|
75
|
+
condition?: undefined;
|
|
76
|
+
} | {
|
|
77
|
+
tool: string;
|
|
78
|
+
action: string;
|
|
79
|
+
condition: string;
|
|
80
|
+
note: string;
|
|
81
|
+
})[];
|
|
82
|
+
};
|
|
83
|
+
};
|
|
84
|
+
phase: number;
|
|
85
|
+
plan_file: string;
|
|
86
|
+
};
|
|
87
|
+
meta: {
|
|
88
|
+
formatted: string;
|
|
89
|
+
timestamp: string;
|
|
90
|
+
};
|
|
91
|
+
error?: undefined;
|
|
92
|
+
code?: undefined;
|
|
93
|
+
hint?: undefined;
|
|
94
|
+
message?: undefined;
|
|
95
|
+
workflow?: undefined;
|
|
96
|
+
config?: undefined;
|
|
97
|
+
phase?: undefined;
|
|
98
|
+
plan_file?: undefined;
|
|
99
|
+
impact_radar?: undefined;
|
|
100
|
+
prior_failures?: undefined;
|
|
101
|
+
} | {
|
|
102
|
+
success: boolean;
|
|
103
|
+
message: string;
|
|
104
|
+
workflow: string;
|
|
105
|
+
config: {
|
|
106
|
+
orchestrator: {
|
|
107
|
+
model: string;
|
|
108
|
+
temperature: number;
|
|
109
|
+
maxSteps: number;
|
|
110
|
+
};
|
|
111
|
+
agents: {
|
|
112
|
+
name: string;
|
|
113
|
+
model: string;
|
|
114
|
+
temperature: number;
|
|
115
|
+
reasoningEffort?: string;
|
|
116
|
+
}[];
|
|
117
|
+
run_id: string;
|
|
118
|
+
parallel: {
|
|
119
|
+
coder: boolean;
|
|
120
|
+
researcher: boolean;
|
|
121
|
+
};
|
|
122
|
+
worktree: boolean;
|
|
123
|
+
impact_radar: import("../../lib/impact-radar").ImpactRadarResult;
|
|
124
|
+
prior_failures: {
|
|
125
|
+
id: string;
|
|
126
|
+
type: "reverted_commit" | "failed_deployment" | "flaky_test" | "bug_fix" | "build_failure";
|
|
127
|
+
description: string;
|
|
128
|
+
affected_paths: string[];
|
|
129
|
+
root_cause: string | null;
|
|
130
|
+
fix_applied: string | null;
|
|
131
|
+
recurrence_count: number;
|
|
132
|
+
}[];
|
|
133
|
+
post_execution: {
|
|
134
|
+
step: string;
|
|
135
|
+
agent: string;
|
|
136
|
+
actions: ({
|
|
137
|
+
tool: string;
|
|
138
|
+
action: string;
|
|
139
|
+
note: string;
|
|
140
|
+
condition?: undefined;
|
|
141
|
+
} | {
|
|
142
|
+
tool: string;
|
|
143
|
+
action: string;
|
|
144
|
+
condition: string;
|
|
145
|
+
note: string;
|
|
146
|
+
})[];
|
|
147
|
+
};
|
|
148
|
+
};
|
|
149
|
+
phase: number;
|
|
150
|
+
plan_file: string;
|
|
151
|
+
impact_radar: import("../../lib/impact-radar").ImpactRadarResult;
|
|
152
|
+
prior_failures: {
|
|
153
|
+
id: string;
|
|
154
|
+
type: "reverted_commit" | "failed_deployment" | "flaky_test" | "bug_fix" | "build_failure";
|
|
155
|
+
description: string;
|
|
156
|
+
affected_paths: string[];
|
|
157
|
+
root_cause: string | null;
|
|
158
|
+
fix_applied: string | null;
|
|
159
|
+
recurrence_count: number;
|
|
160
|
+
}[];
|
|
161
|
+
meta: {
|
|
162
|
+
formatted: string;
|
|
163
|
+
timestamp: string;
|
|
164
|
+
};
|
|
165
|
+
error?: undefined;
|
|
166
|
+
code?: undefined;
|
|
167
|
+
hint?: undefined;
|
|
168
|
+
data?: undefined;
|
|
169
|
+
}>;
|
|
170
|
+
};
|
|
171
|
+
//# sourceMappingURL=new-feature.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"new-feature.d.ts","sourceRoot":"","sources":["../../../src/commands/execution/new-feature.ts"],"names":[],"mappings":"AAOA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,6BAA6B,CAAA;AAEjE,eAAO,MAAM,iBAAiB;;;qBAGL,cAAc,SAAS;QAAE,OAAO,CAAC,EAAE,MAAM,CAAC;QAAC,IAAI,CAAC,EAAE,OAAO,CAAA;KAAE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAgLnF,CAAA"}
|
|
@@ -0,0 +1,130 @@
|
|
|
1
|
+
import type { CommandContext } from "../../types/command-context";
|
|
2
|
+
export declare const reviewCodeCommand: {
|
|
3
|
+
name: string;
|
|
4
|
+
description: string;
|
|
5
|
+
execute(context: CommandContext, args?: {
|
|
6
|
+
scope?: string;
|
|
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
|
+
workflow?: undefined;
|
|
17
|
+
config?: undefined;
|
|
18
|
+
phase?: undefined;
|
|
19
|
+
impact_radar?: undefined;
|
|
20
|
+
} | {
|
|
21
|
+
error: string;
|
|
22
|
+
code: string;
|
|
23
|
+
hint: string;
|
|
24
|
+
success?: undefined;
|
|
25
|
+
data?: undefined;
|
|
26
|
+
meta?: undefined;
|
|
27
|
+
message?: undefined;
|
|
28
|
+
workflow?: undefined;
|
|
29
|
+
config?: undefined;
|
|
30
|
+
phase?: undefined;
|
|
31
|
+
impact_radar?: undefined;
|
|
32
|
+
} | {
|
|
33
|
+
success: boolean;
|
|
34
|
+
data: {
|
|
35
|
+
workflow: string;
|
|
36
|
+
config: {
|
|
37
|
+
agents: ({
|
|
38
|
+
name: string;
|
|
39
|
+
focus: string;
|
|
40
|
+
severity: string;
|
|
41
|
+
mode?: undefined;
|
|
42
|
+
} | {
|
|
43
|
+
name: string;
|
|
44
|
+
focus: string;
|
|
45
|
+
severity?: undefined;
|
|
46
|
+
mode?: undefined;
|
|
47
|
+
} | {
|
|
48
|
+
name: string;
|
|
49
|
+
mode: string;
|
|
50
|
+
focus?: undefined;
|
|
51
|
+
severity?: undefined;
|
|
52
|
+
})[];
|
|
53
|
+
scope: string;
|
|
54
|
+
aggregate: {
|
|
55
|
+
critical: string;
|
|
56
|
+
major: string;
|
|
57
|
+
minor: string;
|
|
58
|
+
};
|
|
59
|
+
tdd_checks: {
|
|
60
|
+
new_behavior_without_test: string;
|
|
61
|
+
bugfix_without_regression: string;
|
|
62
|
+
implementation_larger_than_tests: string;
|
|
63
|
+
refactor_without_green: string;
|
|
64
|
+
};
|
|
65
|
+
impact_radar: import("../../lib/impact-radar").ImpactRadarResult;
|
|
66
|
+
policy_violations: import("../../services").PolicyViolation[];
|
|
67
|
+
};
|
|
68
|
+
phase: number;
|
|
69
|
+
};
|
|
70
|
+
meta: {
|
|
71
|
+
formatted: string;
|
|
72
|
+
timestamp: string;
|
|
73
|
+
};
|
|
74
|
+
error?: undefined;
|
|
75
|
+
code?: undefined;
|
|
76
|
+
hint?: undefined;
|
|
77
|
+
message?: undefined;
|
|
78
|
+
workflow?: undefined;
|
|
79
|
+
config?: undefined;
|
|
80
|
+
phase?: undefined;
|
|
81
|
+
impact_radar?: undefined;
|
|
82
|
+
} | {
|
|
83
|
+
success: boolean;
|
|
84
|
+
message: string;
|
|
85
|
+
workflow: string;
|
|
86
|
+
config: {
|
|
87
|
+
agents: ({
|
|
88
|
+
name: string;
|
|
89
|
+
focus: string;
|
|
90
|
+
severity: string;
|
|
91
|
+
mode?: undefined;
|
|
92
|
+
} | {
|
|
93
|
+
name: string;
|
|
94
|
+
focus: string;
|
|
95
|
+
severity?: undefined;
|
|
96
|
+
mode?: undefined;
|
|
97
|
+
} | {
|
|
98
|
+
name: string;
|
|
99
|
+
mode: string;
|
|
100
|
+
focus?: undefined;
|
|
101
|
+
severity?: undefined;
|
|
102
|
+
})[];
|
|
103
|
+
scope: string;
|
|
104
|
+
aggregate: {
|
|
105
|
+
critical: string;
|
|
106
|
+
major: string;
|
|
107
|
+
minor: string;
|
|
108
|
+
};
|
|
109
|
+
tdd_checks: {
|
|
110
|
+
new_behavior_without_test: string;
|
|
111
|
+
bugfix_without_regression: string;
|
|
112
|
+
implementation_larger_than_tests: string;
|
|
113
|
+
refactor_without_green: string;
|
|
114
|
+
};
|
|
115
|
+
impact_radar: import("../../lib/impact-radar").ImpactRadarResult;
|
|
116
|
+
policy_violations: import("../../services").PolicyViolation[];
|
|
117
|
+
};
|
|
118
|
+
phase: number;
|
|
119
|
+
impact_radar: import("../../lib/impact-radar").ImpactRadarResult;
|
|
120
|
+
meta: {
|
|
121
|
+
formatted: string;
|
|
122
|
+
timestamp: string;
|
|
123
|
+
};
|
|
124
|
+
error?: undefined;
|
|
125
|
+
code?: undefined;
|
|
126
|
+
hint?: undefined;
|
|
127
|
+
data?: undefined;
|
|
128
|
+
}>;
|
|
129
|
+
};
|
|
130
|
+
//# sourceMappingURL=review-code.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"review-code.d.ts","sourceRoot":"","sources":["../../../src/commands/execution/review-code.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,6BAA6B,CAAA;AAMjE,eAAO,MAAM,iBAAiB;;;qBAGL,cAAc,SAAS;QAAE,KAAK,CAAC,EAAE,MAAM,CAAC;QAAC,IAAI,CAAC,EAAE,OAAO,CAAA;KAAE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA0FjF,CAAA"}
|
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
import type { CommandContext } from "../../types/command-context";
|
|
2
|
+
export declare const writeDocsCommand: {
|
|
3
|
+
name: string;
|
|
4
|
+
description: string;
|
|
5
|
+
execute(context: CommandContext, args?: {
|
|
6
|
+
scope?: string;
|
|
7
|
+
json?: boolean;
|
|
8
|
+
}): Promise<{
|
|
9
|
+
error: string;
|
|
10
|
+
code: string;
|
|
11
|
+
success?: undefined;
|
|
12
|
+
data?: undefined;
|
|
13
|
+
meta?: undefined;
|
|
14
|
+
message?: undefined;
|
|
15
|
+
workflow?: undefined;
|
|
16
|
+
config?: undefined;
|
|
17
|
+
phase?: undefined;
|
|
18
|
+
} | {
|
|
19
|
+
success: boolean;
|
|
20
|
+
data: {
|
|
21
|
+
workflow: string;
|
|
22
|
+
config: {
|
|
23
|
+
agents: ({
|
|
24
|
+
name: string;
|
|
25
|
+
model: string;
|
|
26
|
+
temperature: number;
|
|
27
|
+
maxSteps: number;
|
|
28
|
+
focus?: undefined;
|
|
29
|
+
check?: undefined;
|
|
30
|
+
} | {
|
|
31
|
+
name: string;
|
|
32
|
+
focus: string;
|
|
33
|
+
check: string;
|
|
34
|
+
model?: undefined;
|
|
35
|
+
temperature?: undefined;
|
|
36
|
+
maxSteps?: undefined;
|
|
37
|
+
})[];
|
|
38
|
+
phases: {
|
|
39
|
+
step: string;
|
|
40
|
+
agent: string;
|
|
41
|
+
action: string;
|
|
42
|
+
}[];
|
|
43
|
+
scope: string;
|
|
44
|
+
};
|
|
45
|
+
phase: number;
|
|
46
|
+
};
|
|
47
|
+
meta: {
|
|
48
|
+
formatted: string;
|
|
49
|
+
timestamp: string;
|
|
50
|
+
};
|
|
51
|
+
error?: undefined;
|
|
52
|
+
code?: undefined;
|
|
53
|
+
message?: undefined;
|
|
54
|
+
workflow?: undefined;
|
|
55
|
+
config?: undefined;
|
|
56
|
+
phase?: undefined;
|
|
57
|
+
} | {
|
|
58
|
+
success: boolean;
|
|
59
|
+
message: string;
|
|
60
|
+
workflow: string;
|
|
61
|
+
config: {
|
|
62
|
+
agents: ({
|
|
63
|
+
name: string;
|
|
64
|
+
model: string;
|
|
65
|
+
temperature: number;
|
|
66
|
+
maxSteps: number;
|
|
67
|
+
focus?: undefined;
|
|
68
|
+
check?: undefined;
|
|
69
|
+
} | {
|
|
70
|
+
name: string;
|
|
71
|
+
focus: string;
|
|
72
|
+
check: string;
|
|
73
|
+
model?: undefined;
|
|
74
|
+
temperature?: undefined;
|
|
75
|
+
maxSteps?: undefined;
|
|
76
|
+
})[];
|
|
77
|
+
phases: {
|
|
78
|
+
step: string;
|
|
79
|
+
agent: string;
|
|
80
|
+
action: string;
|
|
81
|
+
}[];
|
|
82
|
+
scope: string;
|
|
83
|
+
};
|
|
84
|
+
phase: number;
|
|
85
|
+
meta: {
|
|
86
|
+
formatted: string;
|
|
87
|
+
timestamp: string;
|
|
88
|
+
};
|
|
89
|
+
error?: undefined;
|
|
90
|
+
code?: undefined;
|
|
91
|
+
data?: undefined;
|
|
92
|
+
}>;
|
|
93
|
+
};
|
|
94
|
+
//# sourceMappingURL=write-docs.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"write-docs.d.ts","sourceRoot":"","sources":["../../../src/commands/execution/write-docs.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,6BAA6B,CAAA;AAIjE,eAAO,MAAM,gBAAgB;;;qBAGJ,cAAc,SAAS;QAAE,KAAK,CAAC,EAAE,MAAM,CAAC;QAAC,IAAI,CAAC,EAAE,OAAO,CAAA;KAAE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAkEjF,CAAA"}
|
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
import type { CommandContext } from "../../types/command-context";
|
|
2
|
+
export declare const approveCommand: {
|
|
3
|
+
name: string;
|
|
4
|
+
description: string;
|
|
5
|
+
execute(context: CommandContext, args?: {
|
|
6
|
+
id?: string;
|
|
7
|
+
reject?: boolean;
|
|
8
|
+
list?: boolean;
|
|
9
|
+
recent?: boolean;
|
|
10
|
+
json?: boolean;
|
|
11
|
+
}): Promise<{
|
|
12
|
+
error: string;
|
|
13
|
+
code: string;
|
|
14
|
+
success?: undefined;
|
|
15
|
+
data?: undefined;
|
|
16
|
+
meta?: undefined;
|
|
17
|
+
message?: undefined;
|
|
18
|
+
pending?: undefined;
|
|
19
|
+
hint?: undefined;
|
|
20
|
+
approval_id?: undefined;
|
|
21
|
+
decision?: undefined;
|
|
22
|
+
} | {
|
|
23
|
+
success: boolean;
|
|
24
|
+
data: {
|
|
25
|
+
pending: import("../../services").ApprovalRequest[];
|
|
26
|
+
recent: import("../../services").ApprovalRequest[];
|
|
27
|
+
};
|
|
28
|
+
meta: {
|
|
29
|
+
formatted: string;
|
|
30
|
+
timestamp: string;
|
|
31
|
+
};
|
|
32
|
+
error?: undefined;
|
|
33
|
+
code?: undefined;
|
|
34
|
+
message?: undefined;
|
|
35
|
+
pending?: undefined;
|
|
36
|
+
hint?: undefined;
|
|
37
|
+
approval_id?: undefined;
|
|
38
|
+
decision?: undefined;
|
|
39
|
+
} | {
|
|
40
|
+
success: boolean;
|
|
41
|
+
message: string;
|
|
42
|
+
pending: import("../../services").ApprovalRequest[];
|
|
43
|
+
meta: {
|
|
44
|
+
formatted: string;
|
|
45
|
+
timestamp: string;
|
|
46
|
+
};
|
|
47
|
+
error?: undefined;
|
|
48
|
+
code?: undefined;
|
|
49
|
+
data?: undefined;
|
|
50
|
+
hint?: undefined;
|
|
51
|
+
approval_id?: undefined;
|
|
52
|
+
decision?: undefined;
|
|
53
|
+
} | {
|
|
54
|
+
success: boolean;
|
|
55
|
+
error: string;
|
|
56
|
+
hint: string;
|
|
57
|
+
code: string;
|
|
58
|
+
data?: undefined;
|
|
59
|
+
meta?: undefined;
|
|
60
|
+
message?: undefined;
|
|
61
|
+
pending?: undefined;
|
|
62
|
+
approval_id?: undefined;
|
|
63
|
+
decision?: undefined;
|
|
64
|
+
} | {
|
|
65
|
+
success: boolean;
|
|
66
|
+
message: string;
|
|
67
|
+
approval_id: string;
|
|
68
|
+
decision: string;
|
|
69
|
+
meta: {
|
|
70
|
+
formatted: string;
|
|
71
|
+
timestamp: string;
|
|
72
|
+
};
|
|
73
|
+
error?: undefined;
|
|
74
|
+
code?: undefined;
|
|
75
|
+
data?: undefined;
|
|
76
|
+
pending?: undefined;
|
|
77
|
+
hint?: undefined;
|
|
78
|
+
}>;
|
|
79
|
+
};
|
|
80
|
+
//# sourceMappingURL=approve.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"approve.d.ts","sourceRoot":"","sources":["../../../src/commands/governance/approve.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,6BAA6B,CAAA;AAUjE,eAAO,MAAM,cAAc;;;qBAId,cAAc,SAChB;QAAE,EAAE,CAAC,EAAE,MAAM,CAAC;QAAC,MAAM,CAAC,EAAE,OAAO,CAAC;QAAC,IAAI,CAAC,EAAE,OAAO,CAAC;QAAC,MAAM,CAAC,EAAE,OAAO,CAAC;QAAC,IAAI,CAAC,EAAE,OAAO,CAAA;KAAE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA8F7F,CAAA"}
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
import type { CommandContext } from "../../types/command-context";
|
|
2
|
+
export declare const blastRadiusCommand: {
|
|
3
|
+
name: string;
|
|
4
|
+
description: string;
|
|
5
|
+
execute(context: CommandContext, args?: {
|
|
6
|
+
change?: string;
|
|
7
|
+
depth?: 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
|
+
agents: {
|
|
23
|
+
name: string;
|
|
24
|
+
role: string;
|
|
25
|
+
}[];
|
|
26
|
+
change_description: string;
|
|
27
|
+
traversal_depth: number;
|
|
28
|
+
repo_memory_nodes: number;
|
|
29
|
+
known_fragile_patterns: number;
|
|
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
|
+
agents: {
|
|
48
|
+
name: string;
|
|
49
|
+
role: string;
|
|
50
|
+
}[];
|
|
51
|
+
change_description: string;
|
|
52
|
+
traversal_depth: number;
|
|
53
|
+
repo_memory_nodes: number;
|
|
54
|
+
known_fragile_patterns: number;
|
|
55
|
+
workflow: string;
|
|
56
|
+
};
|
|
57
|
+
phase: number;
|
|
58
|
+
meta: {
|
|
59
|
+
formatted: string;
|
|
60
|
+
timestamp: string;
|
|
61
|
+
};
|
|
62
|
+
error?: undefined;
|
|
63
|
+
code?: undefined;
|
|
64
|
+
data?: undefined;
|
|
65
|
+
}>;
|
|
66
|
+
};
|
|
67
|
+
//# sourceMappingURL=blast-radius.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"blast-radius.d.ts","sourceRoot":"","sources":["../../../src/commands/intelligence/blast-radius.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,6BAA6B,CAAA;AAKjE,eAAO,MAAM,kBAAkB;;;qBAGN,cAAc,SAAS;QAAE,MAAM,CAAC,EAAE,MAAM,CAAC;QAAC,KAAK,CAAC,EAAE,MAAM,CAAC;QAAC,IAAI,CAAC,EAAE,OAAO,CAAA;KAAE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAmElG,CAAA"}
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
import type { CommandContext } from "../../types/command-context";
|
|
2
|
+
export declare const impactRadarCommand: {
|
|
3
|
+
name: string;
|
|
4
|
+
description: string;
|
|
5
|
+
execute(context: CommandContext, args?: {
|
|
6
|
+
change?: string;
|
|
7
|
+
scope?: 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
|
+
workflow?: undefined;
|
|
17
|
+
config?: undefined;
|
|
18
|
+
phase?: undefined;
|
|
19
|
+
} | {
|
|
20
|
+
success: boolean;
|
|
21
|
+
data: {
|
|
22
|
+
workflow: string;
|
|
23
|
+
config: {
|
|
24
|
+
agents: {
|
|
25
|
+
name: string;
|
|
26
|
+
role: string;
|
|
27
|
+
}[];
|
|
28
|
+
change_description: string;
|
|
29
|
+
scope: string;
|
|
30
|
+
architecture_context: string | null;
|
|
31
|
+
stack_context: string | null;
|
|
32
|
+
known_hotspots: string[];
|
|
33
|
+
};
|
|
34
|
+
phase: number;
|
|
35
|
+
};
|
|
36
|
+
meta: {
|
|
37
|
+
formatted: string;
|
|
38
|
+
timestamp: string;
|
|
39
|
+
};
|
|
40
|
+
error?: undefined;
|
|
41
|
+
code?: undefined;
|
|
42
|
+
message?: undefined;
|
|
43
|
+
workflow?: undefined;
|
|
44
|
+
config?: undefined;
|
|
45
|
+
phase?: undefined;
|
|
46
|
+
} | {
|
|
47
|
+
success: boolean;
|
|
48
|
+
message: string;
|
|
49
|
+
workflow: string;
|
|
50
|
+
config: {
|
|
51
|
+
agents: {
|
|
52
|
+
name: string;
|
|
53
|
+
role: string;
|
|
54
|
+
}[];
|
|
55
|
+
change_description: string;
|
|
56
|
+
scope: string;
|
|
57
|
+
architecture_context: string | null;
|
|
58
|
+
stack_context: string | null;
|
|
59
|
+
known_hotspots: string[];
|
|
60
|
+
};
|
|
61
|
+
phase: number;
|
|
62
|
+
meta: {
|
|
63
|
+
formatted: string;
|
|
64
|
+
timestamp: string;
|
|
65
|
+
};
|
|
66
|
+
error?: undefined;
|
|
67
|
+
code?: undefined;
|
|
68
|
+
data?: undefined;
|
|
69
|
+
}>;
|
|
70
|
+
};
|
|
71
|
+
//# sourceMappingURL=impact-radar.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"impact-radar.d.ts","sourceRoot":"","sources":["../../../src/commands/intelligence/impact-radar.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,6BAA6B,CAAA;AAMjE,eAAO,MAAM,kBAAkB;;;qBAGN,cAAc,SAAS;QAAE,MAAM,CAAC,EAAE,MAAM,CAAC;QAAC,KAAK,CAAC,EAAE,MAAM,CAAC;QAAC,IAAI,CAAC,EAAE,OAAO,CAAA;KAAE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAoElG,CAAA"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"intelligence.test.d.ts","sourceRoot":"","sources":["../../../src/commands/intelligence/intelligence.test.ts"],"names":[],"mappings":""}
|