toolcraft 0.0.131 → 0.0.133
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/composition.json +2 -2
- package/dist/composition.json +2 -2
- package/node_modules/@poe-code/agent-defs/dist/agents/claude-code.js +1 -1
- package/node_modules/@poe-code/agent-defs/dist/agents/codex.js +1 -1
- package/node_modules/@poe-code/agent-defs/dist/agents/gemini-cli.js +1 -1
- package/node_modules/@poe-code/agent-defs/dist/agents/kimi.js +1 -1
- package/node_modules/@poe-code/agent-defs/dist/agents/opencode.js +1 -1
- package/node_modules/@poe-code/agent-defs/dist/agents/pi.js +1 -1
- package/node_modules/tiny-stdio-mcp-server/dist/composition.json +1 -1
- package/node_modules/toolcraft-schema/package.json +1 -1
- package/package.json +2 -2
package/composition.json
CHANGED
|
@@ -108,7 +108,7 @@
|
|
|
108
108
|
},
|
|
109
109
|
{
|
|
110
110
|
"name": "toolcraft",
|
|
111
|
-
"version": "0.0.
|
|
111
|
+
"version": "0.0.133",
|
|
112
112
|
"license": "MIT"
|
|
113
113
|
},
|
|
114
114
|
{
|
|
@@ -118,7 +118,7 @@
|
|
|
118
118
|
},
|
|
119
119
|
{
|
|
120
120
|
"name": "toolcraft-schema",
|
|
121
|
-
"version": "0.0.
|
|
121
|
+
"version": "0.0.133",
|
|
122
122
|
"license": "MIT"
|
|
123
123
|
},
|
|
124
124
|
{
|
package/dist/composition.json
CHANGED
|
@@ -108,7 +108,7 @@
|
|
|
108
108
|
},
|
|
109
109
|
{
|
|
110
110
|
"name": "toolcraft",
|
|
111
|
-
"version": "0.0.
|
|
111
|
+
"version": "0.0.133",
|
|
112
112
|
"license": "MIT"
|
|
113
113
|
},
|
|
114
114
|
{
|
|
@@ -118,7 +118,7 @@
|
|
|
118
118
|
},
|
|
119
119
|
{
|
|
120
120
|
"name": "toolcraft-schema",
|
|
121
|
-
"version": "0.0.
|
|
121
|
+
"version": "0.0.133",
|
|
122
122
|
"license": "MIT"
|
|
123
123
|
},
|
|
124
124
|
{
|
|
@@ -2,7 +2,7 @@ export const claudeCodeAgent = {
|
|
|
2
2
|
id: "claude-code",
|
|
3
3
|
name: "claude-code",
|
|
4
4
|
label: "Claude Code",
|
|
5
|
-
summary: "
|
|
5
|
+
summary: "Anthropic's agentic coding tool for the terminal.",
|
|
6
6
|
aliases: ["claude"],
|
|
7
7
|
binaryName: "claude",
|
|
8
8
|
apiShapes: ["anthropic-messages"],
|
|
@@ -2,7 +2,7 @@ export const codexAgent = {
|
|
|
2
2
|
id: "codex",
|
|
3
3
|
name: "codex",
|
|
4
4
|
label: "Codex",
|
|
5
|
-
summary: "
|
|
5
|
+
summary: "OpenAI's coding agent for the terminal.",
|
|
6
6
|
binaryName: "codex",
|
|
7
7
|
apiShapes: ["openai-responses"],
|
|
8
8
|
otelCapture: {
|
|
@@ -3,7 +3,7 @@ export const geminiCliAgent = {
|
|
|
3
3
|
name: "gemini-cli",
|
|
4
4
|
aliases: ["gemini"],
|
|
5
5
|
label: "Gemini CLI",
|
|
6
|
-
summary: "
|
|
6
|
+
summary: "Google's open-source AI agent for the terminal.",
|
|
7
7
|
binaryName: "gemini",
|
|
8
8
|
configPath: "~/.gemini/settings.json",
|
|
9
9
|
apiShapes: ["google-generations"],
|
|
@@ -2,7 +2,7 @@ export const kimiAgent = {
|
|
|
2
2
|
id: "kimi",
|
|
3
3
|
name: "kimi",
|
|
4
4
|
label: "Kimi",
|
|
5
|
-
summary: "
|
|
5
|
+
summary: "Moonshot AI's coding agent for the terminal.",
|
|
6
6
|
aliases: ["kimi-cli"],
|
|
7
7
|
binaryName: "kimi",
|
|
8
8
|
apiShapes: ["openai-chat-completions"],
|
|
@@ -2,7 +2,7 @@ export const openCodeAgent = {
|
|
|
2
2
|
id: "opencode",
|
|
3
3
|
name: "opencode",
|
|
4
4
|
label: "OpenCode CLI",
|
|
5
|
-
summary: "
|
|
5
|
+
summary: "Open-source AI coding agent for the terminal.",
|
|
6
6
|
binaryName: "opencode",
|
|
7
7
|
apiShapes: ["openai-chat-completions"],
|
|
8
8
|
otelCapture: {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "toolcraft",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.133",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -153,7 +153,7 @@
|
|
|
153
153
|
"yaml"
|
|
154
154
|
],
|
|
155
155
|
"optionalDependencies": {
|
|
156
|
-
"toolcraft-schema": "0.0.
|
|
156
|
+
"toolcraft-schema": "0.0.133",
|
|
157
157
|
"toolcraft-design": "*",
|
|
158
158
|
"@poe-code/frontmatter": "*",
|
|
159
159
|
"@poe-code/agent-mcp-config": "*",
|