agent-calling 1.0.0 → 1.0.1

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/README.md CHANGED
@@ -37,6 +37,17 @@ npm run build
37
37
  ```bash
38
38
  npm install -g agent-calling
39
39
  ```
40
+ add Gemini setting.json
41
+ ```json
42
+ {
43
+ "mcpServers": {
44
+ "claude-mcp": {
45
+ "command": "agent-calling",
46
+ "args": []
47
+ }
48
+ }
49
+ }
50
+ ```
40
51
 
41
52
  ---
42
53
 
package/README.zh-CN.md CHANGED
@@ -37,6 +37,17 @@ npm run build
37
37
  ```bash
38
38
  npm install -g agent-calling
39
39
  ```
40
+ 增加 Gemini setting.json 配置
41
+ ```json
42
+ {
43
+ "mcpServers": {
44
+ "claude-mcp": {
45
+ "command": "agent-calling",
46
+ "args": []
47
+ }
48
+ }
49
+ }
50
+ ```
40
51
 
41
52
  ---
42
53
 
package/dist/index.d.ts CHANGED
@@ -1 +1,2 @@
1
+ #!/usr/bin/env node
1
2
  export {};
package/dist/index.js CHANGED
@@ -1,3 +1,4 @@
1
+ #!/usr/bin/env node
1
2
  "use strict";
2
3
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
4
  if (k2 === undefined) k2 = k;
package/package.json CHANGED
@@ -1,7 +1,10 @@
1
1
  {
2
2
  "name": "agent-calling",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "A Gemini CLI plugin that wraps Claude CLI with path hijacking.",
5
+ "bin": {
6
+ "agent-calling": "./dist/index.js"
7
+ },
5
8
  "repository": {
6
9
  "type": "git",
7
10
  "url": "git+https://github.com/xuansheep/agent-calling.git"
@@ -32,6 +35,7 @@
32
35
  },
33
36
  "dependencies": {
34
37
  "@modelcontextprotocol/sdk": "^1.27.1",
38
+ "agent-calling": "^1.0.0",
35
39
  "zod": "^4.3.6"
36
40
  }
37
41
  }