kaze-cli 2.0.1 → 2.0.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/bin/kaze ADDED
@@ -0,0 +1,2 @@
1
+ #!/usr/bin/env node
2
+ require('../dist/index.js');
@@ -86,7 +86,7 @@ class MCPClient {
86
86
  capabilities: this.capabilities,
87
87
  clientInfo: {
88
88
  name: 'kaze-cli',
89
- version: '2.0.1'
89
+ version: '2.0.2'
90
90
  }
91
91
  };
92
92
  const result = await this.sendRequest(connection, 'initialize', initParams);
package/package.json CHANGED
@@ -1,13 +1,14 @@
1
1
  {
2
2
  "name": "kaze-cli",
3
- "version": "2.0.1",
3
+ "version": "2.0.2",
4
4
  "description": "A Claude Code-like vibe coding CLI using multiple AI providers (Zai, OpenAI, Anthropic, Groq, Mistral, Cohere, and more)",
5
5
  "main": "dist/index.js",
6
6
  "bin": {
7
- "kaze": "dist/index.js"
7
+ "kaze": "bin/kaze"
8
8
  },
9
9
  "files": [
10
10
  "dist/**/*",
11
+ "bin/**/*",
11
12
  "README.md",
12
13
  "LICENSE"
13
14
  ],