@team-agent/installer 0.1.2 → 0.1.3
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 +2 -2
- package/README.zh.md +2 -2
- package/package.json +9 -1
- package/src/team_agent/__init__.py +1 -1
- package/src/team_agent/mcp_server.py +1 -1
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
**English** | [中文](README.zh.md)
|
|
1
|
+
**English** | [中文](https://github.com/Florious95/team-agent/blob/main/README.zh.md)
|
|
2
2
|
|
|
3
3
|
# Team Agent
|
|
4
4
|
|
|
@@ -100,7 +100,7 @@ This sets up the MCP server, registers the Team Agent skill, and wires it into y
|
|
|
100
100
|
Source checkout install:
|
|
101
101
|
|
|
102
102
|
```bash
|
|
103
|
-
git clone
|
|
103
|
+
git clone https://github.com/Florious95/team-agent.git team-agent
|
|
104
104
|
cd team-agent
|
|
105
105
|
npm exec --yes --package . -- team-agent-installer install
|
|
106
106
|
```
|
package/README.zh.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
[English](README.md) | **中文**
|
|
1
|
+
[English](https://github.com/Florious95/team-agent/blob/main/README.md) | **中文**
|
|
2
2
|
|
|
3
3
|
# Team Agent
|
|
4
4
|
|
|
@@ -99,7 +99,7 @@ npx @team-agent/installer@latest install
|
|
|
99
99
|
源码安装:
|
|
100
100
|
|
|
101
101
|
```bash
|
|
102
|
-
git clone
|
|
102
|
+
git clone https://github.com/Florious95/team-agent.git team-agent
|
|
103
103
|
cd team-agent
|
|
104
104
|
npm exec --yes --package . -- team-agent-installer install
|
|
105
105
|
```
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@team-agent/installer",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"description": "npx installer for Team Agent",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"codex",
|
|
@@ -8,6 +8,14 @@
|
|
|
8
8
|
"tmux",
|
|
9
9
|
"multi-agent"
|
|
10
10
|
],
|
|
11
|
+
"repository": {
|
|
12
|
+
"type": "git",
|
|
13
|
+
"url": "git+https://github.com/Florious95/team-agent.git"
|
|
14
|
+
},
|
|
15
|
+
"homepage": "https://github.com/Florious95/team-agent#readme",
|
|
16
|
+
"bugs": {
|
|
17
|
+
"url": "https://github.com/Florious95/team-agent/issues"
|
|
18
|
+
},
|
|
11
19
|
"bin": {
|
|
12
20
|
"team-agent-installer": "npm/install.mjs"
|
|
13
21
|
},
|
|
@@ -505,7 +505,7 @@ def handle_mcp(tools: TeamOrchestratorTools, request: dict[str, Any]) -> dict[st
|
|
|
505
505
|
"result": {
|
|
506
506
|
"protocolVersion": request.get("params", {}).get("protocolVersion", "2024-11-05"),
|
|
507
507
|
"capabilities": {"tools": {}},
|
|
508
|
-
"serverInfo": {"name": "team_orchestrator", "version": "0.1.
|
|
508
|
+
"serverInfo": {"name": "team_orchestrator", "version": "0.1.3"},
|
|
509
509
|
},
|
|
510
510
|
}
|
|
511
511
|
if method == "tools/list":
|