@poncho-ai/cli 0.3.2 → 0.4.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/CHANGELOG.md +28 -0
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,33 @@
|
|
|
1
1
|
# @poncho-ai/cli
|
|
2
2
|
|
|
3
|
+
## 0.4.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- BREAKING: Switch to AgentSkills allowed-tools format with mcp/ prefix
|
|
8
|
+
|
|
9
|
+
Replace nested `tools: { mcp: [...], scripts: [...] }` with flat `allowed-tools: [...]` list format. MCP tools now require `mcp/` prefix (e.g., `mcp/github/list_issues`).
|
|
10
|
+
|
|
11
|
+
Migration: Update AGENT.md and SKILL.md frontmatter from:
|
|
12
|
+
|
|
13
|
+
```yaml
|
|
14
|
+
tools:
|
|
15
|
+
mcp:
|
|
16
|
+
- github/list_issues
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
To:
|
|
20
|
+
|
|
21
|
+
```yaml
|
|
22
|
+
allowed-tools:
|
|
23
|
+
- mcp/github/list_issues
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
### Patch Changes
|
|
27
|
+
|
|
28
|
+
- Updated dependencies []:
|
|
29
|
+
- @poncho-ai/harness@0.4.0
|
|
30
|
+
|
|
3
31
|
## 0.3.2
|
|
4
32
|
|
|
5
33
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@poncho-ai/cli",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.4.0",
|
|
4
4
|
"description": "CLI for building and deploying AI agents",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -25,8 +25,8 @@
|
|
|
25
25
|
"react": "^19.2.4",
|
|
26
26
|
"react-devtools-core": "^6.1.5",
|
|
27
27
|
"yaml": "^2.8.1",
|
|
28
|
-
"@poncho-ai/
|
|
29
|
-
"@poncho-ai/
|
|
28
|
+
"@poncho-ai/sdk": "0.2.0",
|
|
29
|
+
"@poncho-ai/harness": "0.4.0"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
32
|
"@types/react": "^19.2.14",
|