@netlify/agent-runner-cli 1.153.0-trace.0 → 1.153.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/dist/bin-local.js +90 -85
- package/dist/bin.js +137 -132
- package/dist/index.d.ts +1 -1
- package/dist/index.js +88 -83
- package/dist/interactions-mcp-server.js +12 -12
- package/dist/skills/asking-questions/SKILL.md +1 -1
- package/package.json +1 -1
- package/scripts/scenarios/interactions-stub-server.mjs +9 -4
package/dist/index.d.ts
CHANGED
|
@@ -19,7 +19,6 @@ interface AgentQuestionOption {
|
|
|
19
19
|
}
|
|
20
20
|
interface AgentQuestion {
|
|
21
21
|
question: string;
|
|
22
|
-
header?: string;
|
|
23
22
|
options?: AgentQuestionOption[];
|
|
24
23
|
multiSelect?: boolean;
|
|
25
24
|
}
|
|
@@ -27,6 +26,7 @@ interface AnsweredInteraction {
|
|
|
27
26
|
refId: string;
|
|
28
27
|
questions: AgentQuestion[];
|
|
29
28
|
responses: Array<string | string[] | null>;
|
|
29
|
+
instruction?: string;
|
|
30
30
|
}
|
|
31
31
|
type RunnerMode = (typeof SUPPORTED_MODES)[number];
|
|
32
32
|
type RunnerConfig = {
|