@outputai/cli 0.1.13-next.6e35f5c.0 → 0.1.13-next.ac8c0f7.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.
|
@@ -105,7 +105,7 @@ function getTodoWriteMessage(message) {
|
|
|
105
105
|
if (message.type !== 'assistant') {
|
|
106
106
|
return null;
|
|
107
107
|
}
|
|
108
|
-
const todoWriteMessage = message.message.content.find((c) => c
|
|
108
|
+
const todoWriteMessage = message.message.content.find((c) => c.type === 'tool_use' && c.name === 'TodoWrite');
|
|
109
109
|
return todoWriteMessage ?? null;
|
|
110
110
|
}
|
|
111
111
|
function applyInstructions(message, instructions) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@outputai/cli",
|
|
3
|
-
"version": "0.1.13-next.
|
|
3
|
+
"version": "0.1.13-next.ac8c0f7.0",
|
|
4
4
|
"description": "CLI for Output.ai workflow generation",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -14,30 +14,30 @@
|
|
|
14
14
|
"output": "./bin/run.js"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"@anthropic-ai/claude-agent-sdk": "0.2.
|
|
18
|
-
"@aws-sdk/client-s3": "3.
|
|
17
|
+
"@anthropic-ai/claude-agent-sdk": "0.2.92",
|
|
18
|
+
"@aws-sdk/client-s3": "3.1024.0",
|
|
19
19
|
"@hackylabs/deep-redact": "3.0.5",
|
|
20
20
|
"@inquirer/prompts": "8.3.2",
|
|
21
|
-
"@oclif/core": "4.10.
|
|
22
|
-
"@oclif/plugin-help": "6.2.
|
|
21
|
+
"@oclif/core": "4.10.5",
|
|
22
|
+
"@oclif/plugin-help": "6.2.42",
|
|
23
23
|
"change-case": "5.4.4",
|
|
24
24
|
"cli-progress": "3.12.0",
|
|
25
25
|
"cli-table3": "0.6.5",
|
|
26
26
|
"date-fns": "4.1.0",
|
|
27
27
|
"debug": "4.4.3",
|
|
28
|
-
"dotenv": "17.
|
|
28
|
+
"dotenv": "17.4.0",
|
|
29
29
|
"handlebars": "4.7.9",
|
|
30
|
-
"js-yaml": "4.1.1",
|
|
31
30
|
"ink": "6.8.0",
|
|
32
31
|
"ink-spinner": "5.0.0",
|
|
33
|
-
"
|
|
32
|
+
"js-yaml": "4.1.1",
|
|
33
|
+
"json-schema-library": "11.1.0",
|
|
34
34
|
"ky": "1.14.3",
|
|
35
35
|
"react": "19.2.4",
|
|
36
36
|
"semver": "7.7.4",
|
|
37
37
|
"yaml": "^2.8.3",
|
|
38
|
-
"@outputai/evals": "0.1.13-next.
|
|
39
|
-
"@outputai/
|
|
40
|
-
"@outputai/
|
|
38
|
+
"@outputai/evals": "0.1.13-next.ac8c0f7.0",
|
|
39
|
+
"@outputai/llm": "0.1.13-next.ac8c0f7.0",
|
|
40
|
+
"@outputai/credentials": "0.1.13-next.ac8c0f7.0"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
43
|
"@types/cli-progress": "3.11.6",
|