mumucc 0.1.0 → 0.1.2
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/package.json +11 -6
- package/shims/globals.ts +1 -1
- package/src/skills/bundled/claude-api/SKILL.md +1 -0
- package/src/skills/bundled/claude-api/csharp/claude-api.md +1 -0
- package/src/skills/bundled/claude-api/curl/examples.md +1 -0
- package/src/skills/bundled/claude-api/go/claude-api.md +1 -0
- package/src/skills/bundled/claude-api/java/claude-api.md +1 -0
- package/src/skills/bundled/claude-api/php/claude-api.md +1 -0
- package/src/skills/bundled/claude-api/python/agent-sdk/patterns.md +1 -0
- package/src/skills/bundled/claude-api/python/claude-api/batches.md +1 -0
- package/src/skills/bundled/claude-api/python/claude-api/files-api.md +1 -0
- package/src/skills/bundled/claude-api/python/claude-api/streaming.md +1 -0
- package/src/skills/bundled/claude-api/python/claude-api/tool-use.md +1 -0
- package/src/skills/bundled/claude-api/ruby/claude-api.md +1 -0
- package/src/skills/bundled/claude-api/shared/error-codes.md +1 -0
- package/src/skills/bundled/claude-api/shared/live-sources.md +1 -0
- package/src/skills/bundled/claude-api/shared/models.md +1 -0
- package/src/skills/bundled/claude-api/shared/prompt-caching.md +1 -0
- package/src/skills/bundled/claude-api/shared/tool-use-concepts.md +1 -0
- package/src/skills/bundled/claude-api/typescript/agent-sdk/patterns.md +1 -0
- package/src/skills/bundled/claude-api/typescript/claude-api/batches.md +1 -0
- package/src/skills/bundled/claude-api/typescript/claude-api/files-api.md +1 -0
- package/src/skills/bundled/claude-api/typescript/claude-api/streaming.md +1 -0
- package/src/skills/bundled/claude-api/typescript/claude-api/tool-use.md +1 -0
- package/src/skills/bundled/verify/SKILL.md +1 -0
- package/src/skills/bundled/verify/examples/cli.md +1 -0
- package/src/skills/bundled/verify/examples/server.md +1 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mumucc",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "Open-source AI coding assistant CLI with multi-model support (Anthropic, OpenAI/GPT, DeepSeek, GLM, Ollama, etc.), MCP integration, agent swarms, and out-of-the-box developer experience.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -36,18 +36,18 @@
|
|
|
36
36
|
"postinstall": "bash scripts/patch-node-modules.sh"
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"@alcalzone/ansi-tokenize": "
|
|
39
|
+
"@alcalzone/ansi-tokenize": "^0.3.0",
|
|
40
40
|
"@ant/claude-for-chrome-mcp": "file:./stubs/@ant/claude-for-chrome-mcp",
|
|
41
41
|
"@ant/computer-use-input": "file:./stubs/@ant/computer-use-input",
|
|
42
42
|
"@ant/computer-use-mcp": "file:./stubs/@ant/computer-use-mcp",
|
|
43
43
|
"@ant/computer-use-swift": "file:./stubs/@ant/computer-use-swift",
|
|
44
|
-
"@anthropic-ai/bedrock-sdk": "
|
|
45
|
-
"@anthropic-ai/claude-agent-sdk": "
|
|
46
|
-
"@anthropic-ai/foundry-sdk": "
|
|
44
|
+
"@anthropic-ai/bedrock-sdk": "^0.27.0",
|
|
45
|
+
"@anthropic-ai/claude-agent-sdk": "^0.2.90",
|
|
46
|
+
"@anthropic-ai/foundry-sdk": "^0.2.3",
|
|
47
47
|
"@anthropic-ai/mcpb": "file:./stubs/@anthropic-ai/mcpb",
|
|
48
48
|
"@anthropic-ai/sandbox-runtime": "file:./stubs/@anthropic-ai/sandbox-runtime",
|
|
49
49
|
"@anthropic-ai/sdk": "^0.39.0",
|
|
50
|
-
"@anthropic-ai/vertex-sdk": "
|
|
50
|
+
"@anthropic-ai/vertex-sdk": "^0.14.4",
|
|
51
51
|
"@aws-sdk/client-bedrock": "^3",
|
|
52
52
|
"@aws-sdk/client-bedrock-runtime": "^3",
|
|
53
53
|
"@aws-sdk/client-sts": "^3",
|
|
@@ -131,6 +131,11 @@
|
|
|
131
131
|
"yaml": "^2",
|
|
132
132
|
"zod": "^3.24"
|
|
133
133
|
},
|
|
134
|
+
"overrides": {
|
|
135
|
+
"@anthropic-ai/claude-agent-sdk": {
|
|
136
|
+
"zod": "$zod"
|
|
137
|
+
}
|
|
138
|
+
},
|
|
134
139
|
"devDependencies": {
|
|
135
140
|
"@types/diff": "*",
|
|
136
141
|
"@types/lodash-es": "*",
|
package/shims/globals.ts
CHANGED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
# Stub
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
# Stub
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
# Stub
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
# Stub
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
# Stub
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
# Stub
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
# Stub
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
# Stub
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
# Stub
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
# Stub
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
# Stub
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
# Stub
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
# Stub
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
# Stub
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
# Stub
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
# Stub
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
# Stub
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
# Stub
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
# Stub
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
# Stub
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
# Stub
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
# Stub
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
# Stub
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
# Stub
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
# Stub
|