@kkweon/agent-orchestrator-mcp 1.4.1 → 1.4.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/README.md +13 -1
- package/package.json +3 -2
- package/policies/agent-orchestrator.toml +35 -0
package/README.md
CHANGED
|
@@ -134,7 +134,19 @@ The easiest way to use this orchestrator is to install it directly to your Gemin
|
|
|
134
134
|
gemini extension install --auto-update https://github.com/kkweon/agent-orchestrator-mcp
|
|
135
135
|
```
|
|
136
136
|
|
|
137
|
-
### 2.
|
|
137
|
+
### 2. Policy Configuration (Recommended)
|
|
138
|
+
|
|
139
|
+
To allow the master agent to manage sub-agents without constant confirmation prompts, you should install the security policy.
|
|
140
|
+
|
|
141
|
+
```bash
|
|
142
|
+
mkdir -p ~/.gemini/policies
|
|
143
|
+
# If you cloned the repo:
|
|
144
|
+
cp policies/agent-orchestrator.toml ~/.gemini/policies/
|
|
145
|
+
# Or download directly:
|
|
146
|
+
curl -sSL https://raw.githubusercontent.com/kkweon/agent-orchestrator-mcp/main/policies/agent-orchestrator.toml -o ~/.gemini/policies/agent-orchestrator.toml
|
|
147
|
+
```
|
|
148
|
+
|
|
149
|
+
### 3. Standalone Execution (via npx)
|
|
138
150
|
|
|
139
151
|
You can also run the MCP server directly using `npx`, which is useful for testing or manual configuration:
|
|
140
152
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kkweon/agent-orchestrator-mcp",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.2",
|
|
4
4
|
"description": "Agent Orchestrator MCP Server for tmux-based sub-agents",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -14,7 +14,8 @@
|
|
|
14
14
|
"files": [
|
|
15
15
|
"dist",
|
|
16
16
|
"gemini-extension.json",
|
|
17
|
-
"README.md"
|
|
17
|
+
"README.md",
|
|
18
|
+
"policies"
|
|
18
19
|
],
|
|
19
20
|
"publishConfig": {
|
|
20
21
|
"access": "public",
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
[[rule]]
|
|
2
|
+
mcpName = "tmux-agent-orchestrator"
|
|
3
|
+
toolName = "agent_create"
|
|
4
|
+
decision = "allow"
|
|
5
|
+
priority = 200
|
|
6
|
+
|
|
7
|
+
[[rule]]
|
|
8
|
+
mcpName = "tmux-agent-orchestrator"
|
|
9
|
+
toolName = "send_message"
|
|
10
|
+
decision = "allow"
|
|
11
|
+
priority = 200
|
|
12
|
+
|
|
13
|
+
[[rule]]
|
|
14
|
+
mcpName = "tmux-agent-orchestrator"
|
|
15
|
+
toolName = "wait_for_command"
|
|
16
|
+
decision = "allow"
|
|
17
|
+
priority = 200
|
|
18
|
+
|
|
19
|
+
[[rule]]
|
|
20
|
+
mcpName = "tmux-agent-orchestrator"
|
|
21
|
+
toolName = "read_inbox"
|
|
22
|
+
decision = "allow"
|
|
23
|
+
priority = 200
|
|
24
|
+
|
|
25
|
+
[[rule]]
|
|
26
|
+
mcpName = "tmux-agent-orchestrator"
|
|
27
|
+
toolName = "agent_list"
|
|
28
|
+
decision = "allow"
|
|
29
|
+
priority = 200
|
|
30
|
+
|
|
31
|
+
[[rule]]
|
|
32
|
+
mcpName = "tmux-agent-orchestrator"
|
|
33
|
+
toolName = "agent_delete"
|
|
34
|
+
decision = "allow"
|
|
35
|
+
priority = 200
|