@contentful/experience-design-system-cli 2.14.2 → 2.15.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/README.md +64 -2
- package/dist/package.json +3 -2
- package/dist/src/analyze/command.d.ts +11 -0
- package/dist/src/analyze/command.js +298 -3
- package/dist/src/analyze/composite-closure.d.ts +25 -0
- package/dist/src/analyze/composite-closure.js +0 -0
- package/dist/src/analyze/composition/agent-parser/author-prompt.d.ts +4 -0
- package/dist/src/analyze/composition/agent-parser/author-prompt.js +22 -0
- package/dist/src/analyze/composition/agent-parser/extract-parser.d.ts +8 -0
- package/dist/src/analyze/composition/agent-parser/extract-parser.js +44 -0
- package/dist/src/analyze/composition/agent-parser/load-prompt.d.ts +7 -0
- package/dist/src/analyze/composition/agent-parser/load-prompt.js +31 -0
- package/dist/src/analyze/composition/agent-parser/resolve-via-parser.d.ts +46 -0
- package/dist/src/analyze/composition/agent-parser/resolve-via-parser.js +88 -0
- package/dist/src/analyze/composition/agent-parser/sandbox.d.ts +45 -0
- package/dist/src/analyze/composition/agent-parser/sandbox.js +187 -0
- package/dist/src/analyze/composition/apply-mapping.d.ts +22 -0
- package/dist/src/analyze/composition/apply-mapping.js +67 -0
- package/dist/src/analyze/composition/candidate-critic-agent.d.ts +7 -0
- package/dist/src/analyze/composition/candidate-critic-agent.js +39 -0
- package/dist/src/analyze/composition/candidate-critic.d.ts +32 -0
- package/dist/src/analyze/composition/candidate-critic.js +63 -0
- package/dist/src/analyze/composition/candidate-files.d.ts +34 -0
- package/dist/src/analyze/composition/candidate-files.js +131 -0
- package/dist/src/analyze/composition/composition-cache-key.d.ts +19 -0
- package/dist/src/analyze/composition/composition-cache-key.js +19 -0
- package/dist/src/analyze/composition/interchange-schema.d.ts +37 -0
- package/dist/src/analyze/composition/interchange-schema.js +61 -0
- package/dist/src/analyze/composition/merge-edges.d.ts +19 -0
- package/dist/src/analyze/composition/merge-edges.js +50 -0
- package/dist/src/analyze/composition/parse-map-edges.d.ts +16 -0
- package/dist/src/analyze/composition/parse-map-edges.js +55 -0
- package/dist/src/analyze/composition/resolve-mapping-cli.d.ts +23 -0
- package/dist/src/analyze/composition/resolve-mapping-cli.js +29 -0
- package/dist/src/analyze/composition/resolve-mapping.d.ts +59 -0
- package/dist/src/analyze/composition/resolve-mapping.js +94 -0
- package/dist/src/analyze/cycle-detection.d.ts +27 -0
- package/dist/src/analyze/cycle-detection.js +234 -0
- package/dist/src/analyze/cycle-view.d.ts +7 -0
- package/dist/src/analyze/cycle-view.js +28 -0
- package/dist/src/analyze/fuzzy-search.d.ts +3 -0
- package/dist/src/analyze/fuzzy-search.js +55 -0
- package/dist/src/analyze/issue-inheritance.d.ts +12 -0
- package/dist/src/analyze/issue-inheritance.js +108 -0
- package/dist/src/analyze/lineage.d.ts +29 -0
- package/dist/src/analyze/lineage.js +0 -0
- package/dist/src/analyze/scope-gate-cascade.d.ts +11 -0
- package/dist/src/analyze/scope-gate-cascade.js +170 -0
- package/dist/src/analyze/search-neighborhood.d.ts +3 -0
- package/dist/src/analyze/search-neighborhood.js +56 -0
- package/dist/src/analyze/select/tui/App.js +5 -16
- package/dist/src/analyze/select/tui/components/ComponentRationalePanel.d.ts +0 -4
- package/dist/src/analyze/select/tui/components/ComponentRationalePanel.js +3 -15
- package/dist/src/analyze/select/tui/components/FieldEditor.d.ts +29 -38
- package/dist/src/analyze/select/tui/components/FieldEditor.js +309 -185
- package/dist/src/analyze/select/tui/components/FinalizeDialog.d.ts +13 -1
- package/dist/src/analyze/select/tui/components/FinalizeDialog.js +23 -2
- package/dist/src/analyze/select/tui/components/GotoBanner.d.ts +31 -0
- package/dist/src/analyze/select/tui/components/GotoBanner.js +30 -0
- package/dist/src/analyze/select/tui/components/GroupedSidebar.d.ts +91 -0
- package/dist/src/analyze/select/tui/components/GroupedSidebar.js +497 -0
- package/dist/src/analyze/select/tui/components/HelpOverlay.d.ts +13 -1
- package/dist/src/analyze/select/tui/components/HelpOverlay.js +9 -3
- package/dist/src/analyze/select/tui/components/JsonEditor.js +3 -3
- package/dist/src/analyze/select/tui/components/LineagePanel.d.ts +14 -0
- package/dist/src/analyze/select/tui/components/LineagePanel.js +22 -0
- package/dist/src/analyze/select/tui/components/RationalePanel.d.ts +0 -7
- package/dist/src/analyze/select/tui/components/RationalePanel.js +3 -15
- package/dist/src/analyze/select/tui/components/Sidebar.d.ts +0 -6
- package/dist/src/analyze/select/tui/components/Sidebar.js +11 -27
- package/dist/src/analyze/select/tui/components/StatusBar.js +2 -1
- package/dist/src/analyze/select/tui/components/removed-components-text.d.ts +7 -0
- package/dist/src/analyze/select/tui/components/removed-components-text.js +11 -0
- package/dist/src/analyze/select/tui/hooks/useImmediateInput.d.ts +1 -5
- package/dist/src/analyze/select/tui/hooks/useImmediateInput.js +8 -10
- package/dist/src/analyze/select/tui/theme.d.ts +15 -0
- package/dist/src/analyze/select/tui/theme.js +28 -0
- package/dist/src/analyze/selection-cascade.d.ts +3 -0
- package/dist/src/analyze/selection-cascade.js +19 -0
- package/dist/src/analyze/slot-graph.d.ts +11 -0
- package/dist/src/analyze/slot-graph.js +17 -0
- package/dist/src/apply/api-client.d.ts +2 -1
- package/dist/src/apply/api-client.js +40 -6
- package/dist/src/apply/command.d.ts +17 -1
- package/dist/src/apply/command.js +69 -11
- package/dist/src/apply/error-parser.d.ts +16 -0
- package/dist/src/apply/error-parser.js +117 -0
- package/dist/src/apply/tui/ServerPreviewView.js +3 -1
- package/dist/src/credentials-store.d.ts +6 -0
- package/dist/src/credentials-store.js +5 -1
- package/dist/src/generate/agent-runner.d.ts +6 -0
- package/dist/src/generate/agent-runner.js +24 -8
- package/dist/src/import/command.js +69 -31
- package/dist/src/import/cycle-auto-reject.d.ts +4 -0
- package/dist/src/import/cycle-auto-reject.js +14 -0
- package/dist/src/import/orchestrator.d.ts +20 -7
- package/dist/src/import/orchestrator.js +139 -35
- package/dist/src/import/strip-allowed-components.d.ts +18 -0
- package/dist/src/import/strip-allowed-components.js +22 -0
- package/dist/src/import/tui/CustomPromptBanner.d.ts +0 -5
- package/dist/src/import/tui/CustomPromptBanner.js +2 -1
- package/dist/src/import/tui/WizardApp.d.ts +10 -74
- package/dist/src/import/tui/WizardApp.js +234 -246
- package/dist/src/import/tui/ai-flag.d.ts +5 -0
- package/dist/src/import/tui/ai-flag.js +6 -0
- package/dist/src/import/tui/autocomplete.d.ts +5 -0
- package/dist/src/import/tui/autocomplete.js +32 -0
- package/dist/src/import/tui/components/AutoFilterBanner.d.ts +10 -0
- package/dist/src/import/tui/components/AutoFilterBanner.js +19 -0
- package/dist/src/import/tui/components/CounterStrip.d.ts +12 -0
- package/dist/src/import/tui/components/CounterStrip.js +12 -0
- package/dist/src/import/tui/components/LegendEntry.d.ts +2 -0
- package/dist/src/import/tui/components/LegendEntry.js +6 -0
- package/dist/src/import/tui/cycle-panel-scroll.d.ts +8 -0
- package/dist/src/import/tui/cycle-panel-scroll.js +33 -0
- package/dist/src/import/tui/final-review-host.d.ts +3 -7
- package/dist/src/import/tui/final-review-host.js +9 -4
- package/dist/src/import/tui/group-collapse.d.ts +2 -0
- package/dist/src/import/tui/group-collapse.js +11 -0
- package/dist/src/import/tui/history.d.ts +22 -0
- package/dist/src/import/tui/history.js +53 -0
- package/dist/src/import/tui/hooks/useLineage.d.ts +32 -0
- package/dist/src/import/tui/hooks/useLineage.js +50 -0
- package/dist/src/import/tui/hooks/useOverlayPanel.d.ts +13 -0
- package/dist/src/import/tui/hooks/useOverlayPanel.js +27 -0
- package/dist/src/import/tui/lineage-layout.d.ts +75 -0
- package/dist/src/import/tui/lineage-layout.js +82 -0
- package/dist/src/import/tui/runLivePreview.d.ts +11 -0
- package/dist/src/import/tui/runLivePreview.js +7 -1
- package/dist/src/import/tui/scope-gate-columns.d.ts +31 -0
- package/dist/src/import/tui/scope-gate-columns.js +94 -0
- package/dist/src/import/tui/scope-gate-host.d.ts +3 -1
- package/dist/src/import/tui/scope-gate-host.js +11 -3
- package/dist/src/import/tui/sidebar-width.d.ts +1 -0
- package/dist/src/import/tui/sidebar-width.js +3 -0
- package/dist/src/import/tui/step-filters.d.ts +19 -0
- package/dist/src/import/tui/step-filters.js +42 -0
- package/dist/src/import/tui/steps/AtomicGenerateReviewStep.d.ts +42 -0
- package/dist/src/import/tui/steps/AtomicGenerateReviewStep.js +726 -0
- package/dist/src/import/tui/steps/AtomicScopeGateStep.d.ts +3 -0
- package/dist/src/import/tui/steps/AtomicScopeGateStep.js +211 -0
- package/dist/src/import/tui/steps/CredentialsStep.js +5 -18
- package/dist/src/import/tui/steps/DoneStep.d.ts +0 -2
- package/dist/src/import/tui/steps/DoneStep.js +3 -2
- package/dist/src/import/tui/steps/ErrorStep.js +2 -1
- package/dist/src/import/tui/steps/GenerateReviewStep.d.ts +19 -25
- package/dist/src/import/tui/steps/GenerateReviewStep.js +1258 -229
- package/dist/src/import/tui/steps/PathValidationStep.js +3 -2
- package/dist/src/import/tui/steps/PreviewStep.js +2 -1
- package/dist/src/import/tui/steps/PushDecisionGateStep.d.ts +0 -7
- package/dist/src/import/tui/steps/PushDecisionGateStep.js +3 -6
- package/dist/src/import/tui/steps/PushingStep.js +2 -1
- package/dist/src/import/tui/steps/RunningStep.d.ts +4 -1
- package/dist/src/import/tui/steps/RunningStep.js +3 -2
- package/dist/src/import/tui/steps/ScopeGateStep.d.ts +24 -0
- package/dist/src/import/tui/steps/ScopeGateStep.js +850 -193
- package/dist/src/import/tui/steps/TokenInputStep.js +2 -1
- package/dist/src/import/tui/steps/WelcomeStep.js +2 -1
- package/dist/src/import/tui/steps/WizardPreviewStep.d.ts +6 -0
- package/dist/src/import/tui/steps/WizardPreviewStep.js +95 -56
- package/dist/src/import/tui/steps/auto-reject-decision.d.ts +7 -0
- package/dist/src/import/tui/steps/auto-reject-decision.js +9 -0
- package/dist/src/import/tui/steps/breaking-change-format.d.ts +2 -0
- package/dist/src/import/tui/steps/breaking-change-format.js +24 -0
- package/dist/src/import/tui/steps/enumerate-cycle-breaks.d.ts +14 -0
- package/dist/src/import/tui/steps/enumerate-cycle-breaks.js +0 -0
- package/dist/src/import/tui/steps/preview-diff.js +48 -5
- package/dist/src/import/tui/useFinalizePreview.d.ts +34 -0
- package/dist/src/import/tui/useFinalizePreview.js +0 -0
- package/dist/src/import/tui/useLivePreview.d.ts +3 -0
- package/dist/src/import/tui/useLivePreview.js +1 -0
- package/dist/src/import/tui/wizard-state-transitions.d.ts +5 -59
- package/dist/src/import/tui/wizard-state-transitions.js +5 -60
- package/dist/src/lib/composition-mode.d.ts +28 -0
- package/dist/src/lib/composition-mode.js +37 -0
- package/dist/src/lib/prompt-overrides.d.ts +38 -0
- package/dist/src/lib/prompt-overrides.js +69 -0
- package/dist/src/print/command.js +19 -1
- package/dist/src/runs/modify-launcher.d.ts +3 -0
- package/dist/src/runs/modify-launcher.js +2 -0
- package/dist/src/runs/replay-helpers.js +1 -0
- package/dist/src/runs/run-picker.js +2 -18
- package/dist/src/runs/store.d.ts +4 -0
- package/dist/src/session/db.d.ts +23 -40
- package/dist/src/session/db.js +110 -138
- package/dist/src/setup/composition-mode-prompt.d.ts +14 -0
- package/dist/src/setup/composition-mode-prompt.js +37 -0
- package/package.json +5 -4
- package/prompts/composition-dir-critic.md +7 -0
- package/prompts/composition-edges.md +8 -0
- package/prompts/composition-parser-repair-empty.md +1 -0
- package/prompts/composition-parser-repair-error.md +2 -0
- package/prompts/composition-parser.md +42 -0
|
@@ -1,9 +1,4 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
/**
|
|
3
|
-
* Feature 8: top-of-wizard banner shown while any custom skill prompt is
|
|
4
|
-
* active. Persists at every step so the operator cannot miss that bundled
|
|
5
|
-
* invariants are bypassed.
|
|
6
|
-
*/
|
|
7
2
|
export interface CustomPromptBannerProps {
|
|
8
3
|
selectPromptPath?: string;
|
|
9
4
|
generatePromptPath?: string;
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
2
|
import { Box, Text } from 'ink';
|
|
3
|
+
import { PALETTE } from '../../analyze/select/tui/theme.js';
|
|
3
4
|
export function CustomPromptBanner({ selectPromptPath, generatePromptPath, }) {
|
|
4
5
|
if (!selectPromptPath && !generatePromptPath)
|
|
5
6
|
return null;
|
|
6
|
-
return (_jsxs(Box, { flexDirection: "column", borderStyle: "round", borderColor:
|
|
7
|
+
return (_jsxs(Box, { flexDirection: "column", borderStyle: "round", borderColor: PALETTE.warning, paddingX: 1, children: [_jsx(Text, { color: PALETTE.warning, bold: true, children: "WARNING: Custom prompt active" }), selectPromptPath ? _jsxs(Text, { color: PALETTE.warning, children: ["select: ", selectPromptPath] }) : null, generatePromptPath ? _jsxs(Text, { color: PALETTE.warning, children: ["components: ", generatePromptPath] }) : null, _jsx(Text, { color: PALETTE.warning, dimColor: true, children: "Bundled invariants (utility-wrapper rejection, description content rules) do NOT apply." })] }));
|
|
7
8
|
}
|
|
@@ -2,18 +2,12 @@ import React from 'react';
|
|
|
2
2
|
import { type RunPickerSelection } from '../../runs/run-picker.js';
|
|
3
3
|
import type { RunRecord } from '../../runs/store.js';
|
|
4
4
|
import { type OnConflictMode } from '../../runs/save-path-resolver.js';
|
|
5
|
+
import type { CompositionMode } from '../../lib/composition-mode.js';
|
|
5
6
|
export declare function buildSelectAgentArgs(opts: {
|
|
6
7
|
sessionId: string;
|
|
7
8
|
agent: string;
|
|
8
|
-
/** Parity-audit Q4: forward `--model` override from `experiences import`. */
|
|
9
9
|
model?: string;
|
|
10
|
-
/** Feature 8: forward to the spawned select-agent subprocess. */
|
|
11
10
|
selectPromptPath?: string;
|
|
12
|
-
/**
|
|
13
|
-
* Forward the operator's `experiences import --no-cache` through to the
|
|
14
|
-
* spawned `analyze select-agent` so PR #59's per-component select-cache is
|
|
15
|
-
* bypassed on this run. Default (omitted/false) preserves cache behavior.
|
|
16
|
-
*/
|
|
17
11
|
noCache?: boolean;
|
|
18
12
|
}): string[];
|
|
19
13
|
export type AutoFilterProgress = {
|
|
@@ -28,22 +22,14 @@ export declare function buildGenerateComponentsArgs(opts: {
|
|
|
28
22
|
sessionId: string;
|
|
29
23
|
tokensPath?: string;
|
|
30
24
|
agent: string;
|
|
31
|
-
/** Parity-audit Q4: forward `--model` override from `experiences import`. */
|
|
32
25
|
model?: string;
|
|
33
26
|
noCache?: boolean;
|
|
34
|
-
/** Feature 8: forward to the spawned generate components subprocess. */
|
|
35
27
|
generatePromptPath?: string;
|
|
36
28
|
}): string[];
|
|
37
29
|
export declare function formatAcceptanceSummary(opts: {
|
|
38
30
|
accepted: number;
|
|
39
31
|
autoRejected: number;
|
|
40
32
|
}): string;
|
|
41
|
-
/**
|
|
42
|
-
* Parse the `wrote tokens.json (N tokens)` confirmation line emitted by
|
|
43
|
-
* `experiences print tokens`. Returns 0 when the line cannot be parsed —
|
|
44
|
-
* the wizard still records the run; downstream consumers should treat 0 as
|
|
45
|
-
* "unknown" rather than "no tokens".
|
|
46
|
-
*/
|
|
47
33
|
export declare function parsePrintTokensCount(stdout: string): number;
|
|
48
34
|
export type WizardAppProps = {
|
|
49
35
|
initialSpaceId?: string;
|
|
@@ -51,84 +37,34 @@ export type WizardAppProps = {
|
|
|
51
37
|
initialCmaToken?: string;
|
|
52
38
|
initialHost?: string;
|
|
53
39
|
initialAgent?: string;
|
|
54
|
-
/** Parity-audit Q4: resolved model override (flag || stored value). */
|
|
55
40
|
initialModel?: string;
|
|
56
41
|
initialProjectPath?: string;
|
|
57
42
|
host?: string;
|
|
58
43
|
autoAcceptScope?: boolean;
|
|
44
|
+
autoRejectCycles?: boolean;
|
|
45
|
+
compositionMode?: CompositionMode;
|
|
46
|
+
compositionMap?: string;
|
|
47
|
+
compositionAgent?: boolean;
|
|
48
|
+
compositionAgentMode?: string;
|
|
49
|
+
compositionRefresh?: boolean;
|
|
50
|
+
generateMap?: string;
|
|
51
|
+
promptOverrides?: string[];
|
|
59
52
|
noCache?: boolean;
|
|
60
53
|
autoFilter?: boolean;
|
|
61
54
|
livePreview?: boolean;
|
|
62
55
|
noPush?: boolean;
|
|
63
56
|
noSave?: boolean;
|
|
64
|
-
/** Task 4 — `--out-dir <path>` flag. Bypasses the inline save-path prompt. */
|
|
65
57
|
outDirOverride?: string;
|
|
66
|
-
/**
|
|
67
|
-
* Task 5 — `--on-conflict <overwrite|skip|fail>` flag. When supplied along
|
|
68
|
-
* with `outDirOverride`, the wizard skips the SaveConflictGate and applies
|
|
69
|
-
* the chosen mode automatically via `resolveSavePath`.
|
|
70
|
-
*/
|
|
71
58
|
onConflictMode?: OnConflictMode;
|
|
72
|
-
/**
|
|
73
|
-
* Feature 8: custom prompt path overrides forwarded to the spawned
|
|
74
|
-
* `analyze select-agent` and `generate components` subprocesses. When set,
|
|
75
|
-
* the wizard also renders a persistent top-of-screen banner so the operator
|
|
76
|
-
* cannot miss that bundled invariants are bypassed.
|
|
77
|
-
*/
|
|
78
59
|
selectPromptPath?: string;
|
|
79
60
|
generatePromptPath?: string;
|
|
80
|
-
/**
|
|
81
|
-
* Modify-entry: when set, the wizard treats extract as already-run and
|
|
82
|
-
* seeds `state.extractSessionId` from this value. Combined with
|
|
83
|
-
* `initialStep: 'final-review'`, the wizard skips welcome → token-input →
|
|
84
|
-
* checking-claude-auth → extracting → scope-gate and lands directly on
|
|
85
|
-
* the post-generate review screen using DB-backed reads.
|
|
86
|
-
*/
|
|
87
61
|
seedExtractSessionId?: string;
|
|
88
|
-
/**
|
|
89
|
-
* Modify-entry: when set, the wizard treats generate as already-run and
|
|
90
|
-
* seeds `state.generateSessionId`. Required (together with
|
|
91
|
-
* `seedExtractSessionId`) for the final-review short-circuit to render
|
|
92
|
-
* meaningful data.
|
|
93
|
-
*/
|
|
94
62
|
seedGenerateSessionId?: string;
|
|
95
|
-
/**
|
|
96
|
-
* Modify-entry: when set, the wizard treats the tokens step as already-run
|
|
97
|
-
* and seeds `state.tokenSessionId`. Without this, the modify entry would
|
|
98
|
-
* leave tokens unaddressable — push would skip them and `runPrintFiles`
|
|
99
|
-
* would never re-emit `tokens.json` for the modified save path.
|
|
100
|
-
*/
|
|
101
63
|
seedTokenSessionId?: string;
|
|
102
|
-
/**
|
|
103
|
-
* Push-from-picker entry: overrides `state.tokensPath` so runPreview can
|
|
104
|
-
* read the run record's saved tokens.json without waiting for the wizard
|
|
105
|
-
* to re-emit it (push-from-picker skips the save flow entirely).
|
|
106
|
-
*/
|
|
107
64
|
seedTokensPath?: string;
|
|
108
|
-
/**
|
|
109
|
-
* Modify-entry: overrides the wizard's initial step. When set, the wizard
|
|
110
|
-
* bypasses its normal welcome/token-input bootstrap. Currently only
|
|
111
|
-
* `'final-review'` is plumbed end-to-end; `'scope-gate'` is accepted for
|
|
112
|
-
* future use but falls through to standard behavior.
|
|
113
|
-
*/
|
|
114
65
|
initialStep?: 'scope-gate' | 'final-review' | 'push-from-picker';
|
|
115
|
-
/**
|
|
116
|
-
* Headless raw-token source path. When set (and the modify-entry props
|
|
117
|
-
* are not), the wizard seeds `state.rawTokensPath` and lands directly on
|
|
118
|
-
* the `generating-tokens` step, skipping welcome + token-input. The
|
|
119
|
-
* existing `generating-tokens` effect then drives token classification
|
|
120
|
-
* via `generate tokens --raw-tokens <path>` just as if the operator had
|
|
121
|
-
* submitted the interactive `TokenInputStep`.
|
|
122
|
-
*/
|
|
123
66
|
initialRawTokensPath?: string;
|
|
124
|
-
/**
|
|
125
|
-
* When set with a non-empty array, the wizard opens with the run picker
|
|
126
|
-
* instead of the welcome step. The picker invokes `onRunPicked` with the
|
|
127
|
-
* operator's selection so the CLI surface can route into
|
|
128
|
-
* `--push-from-run` / `--modify` entry points (or fall through to the
|
|
129
|
-
* normal welcome step on 'new').
|
|
130
|
-
*/
|
|
131
67
|
initialRuns?: RunRecord[];
|
|
132
68
|
onRunPicked?: (selection: RunPickerSelection) => void;
|
|
133
69
|
};
|
|
134
|
-
export declare function WizardApp({ initialSpaceId, initialEnvironmentId, initialCmaToken, initialHost, initialAgent, initialModel, initialProjectPath, host, autoAcceptScope, noCache, autoFilter, livePreview, noPush, noSave, outDirOverride, onConflictMode, selectPromptPath, generatePromptPath, seedExtractSessionId, seedGenerateSessionId, seedTokenSessionId, seedTokensPath, initialStep, initialRawTokensPath, initialRuns, onRunPicked, }?: WizardAppProps): React.ReactElement;
|
|
70
|
+
export declare function WizardApp({ initialSpaceId, initialEnvironmentId, initialCmaToken, initialHost, initialAgent, initialModel, initialProjectPath, host, autoAcceptScope, autoRejectCycles, compositionMode, compositionMap, compositionAgent, compositionAgentMode, compositionRefresh, generateMap, promptOverrides, noCache, autoFilter, livePreview, noPush, noSave, outDirOverride, onConflictMode, selectPromptPath, generatePromptPath, seedExtractSessionId, seedGenerateSessionId, seedTokenSessionId, seedTokensPath, initialStep, initialRawTokensPath, initialRuns, onRunPicked, }?: WizardAppProps): React.ReactElement;
|