@picahq/cli 1.6.0 → 1.7.0
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 +3 -1
- package/dist/index.js +8 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -46,6 +46,7 @@ If you already have a config, `pica init` shows your current setup instead of st
|
|
|
46
46
|
Cursor ○ no ○ no
|
|
47
47
|
Windsurf - -
|
|
48
48
|
Codex ● yes ○ no
|
|
49
|
+
Kiro ○ no ○ no
|
|
49
50
|
|
|
50
51
|
- = not detected on this machine
|
|
51
52
|
```
|
|
@@ -54,7 +55,7 @@ Then it offers targeted actions based on what's missing:
|
|
|
54
55
|
|
|
55
56
|
- **Update API key** -- validates the new key, then re-installs to every agent that currently has the MCP (preserving global/project scopes)
|
|
56
57
|
- **Install MCP to more agents** -- only shows detected agents missing the MCP
|
|
57
|
-
- **Install MCP for this project** -- creates `.mcp.json` / `.cursor/mcp.json` / `.codex/config.toml` in cwd for agents that support project scope
|
|
58
|
+
- **Install MCP for this project** -- creates `.mcp.json` / `.cursor/mcp.json` / `.codex/config.toml` / `.kiro/settings/mcp.json` in cwd for agents that support project scope
|
|
58
59
|
- **Start fresh** -- full setup flow from scratch
|
|
59
60
|
|
|
60
61
|
Options that don't apply are hidden. If every detected agent already has the MCP globally, "Install MCP to more agents" won't appear.
|
|
@@ -130,6 +131,7 @@ All API calls route through Pica's passthrough proxy (`api.picaos.com/v1/passthr
|
|
|
130
131
|
| Cursor | `~/.cursor/mcp.json` | `.cursor/mcp.json` |
|
|
131
132
|
| Windsurf | `~/.codeium/windsurf/mcp_config.json` | n/a |
|
|
132
133
|
| Codex | `~/.codex/config.toml` | `.codex/config.toml` |
|
|
134
|
+
| Kiro | `~/.kiro/settings/mcp.json` | `.kiro/settings/mcp.json` |
|
|
133
135
|
|
|
134
136
|
Global installs make the MCP available everywhere. Project installs create config files in your current directory that can be committed and shared with your team (each team member needs their own API key).
|
|
135
137
|
|
package/dist/index.js
CHANGED
|
@@ -130,6 +130,14 @@ var AGENTS = [
|
|
|
130
130
|
detectDir: "~/.codex",
|
|
131
131
|
projectConfigPath: ".codex/config.toml",
|
|
132
132
|
configFormat: "toml"
|
|
133
|
+
},
|
|
134
|
+
{
|
|
135
|
+
id: "kiro",
|
|
136
|
+
name: "Kiro",
|
|
137
|
+
configPath: "~/.kiro/settings/mcp.json",
|
|
138
|
+
configKey: "mcpServers",
|
|
139
|
+
detectDir: "~/.kiro",
|
|
140
|
+
projectConfigPath: ".kiro/settings/mcp.json"
|
|
133
141
|
}
|
|
134
142
|
];
|
|
135
143
|
function getAllAgents() {
|