@poncho-ai/cli 0.3.2 → 0.4.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +37 -0
  2. package/package.json +2 -2
package/CHANGELOG.md CHANGED
@@ -1,5 +1,42 @@
1
1
  # @poncho-ai/cli
2
2
 
3
+ ## 0.4.1
4
+
5
+ ### Patch Changes
6
+
7
+ - Fix MCP tool prefix to use `mcp:` instead of `@mcp:` for YAML compatibility. The `@` character is reserved in YAML and cannot start plain values without quoting.
8
+
9
+ - Updated dependencies []:
10
+ - @poncho-ai/harness@0.4.1
11
+
12
+ ## 0.4.0
13
+
14
+ ### Minor Changes
15
+
16
+ - BREAKING: Switch to AgentSkills allowed-tools format with mcp/ prefix
17
+
18
+ Replace nested `tools: { mcp: [...], scripts: [...] }` with flat `allowed-tools: [...]` list format. MCP tools now require `mcp/` prefix (e.g., `mcp/github/list_issues`).
19
+
20
+ Migration: Update AGENT.md and SKILL.md frontmatter from:
21
+
22
+ ```yaml
23
+ tools:
24
+ mcp:
25
+ - github/list_issues
26
+ ```
27
+
28
+ To:
29
+
30
+ ```yaml
31
+ allowed-tools:
32
+ - mcp/github/list_issues
33
+ ```
34
+
35
+ ### Patch Changes
36
+
37
+ - Updated dependencies []:
38
+ - @poncho-ai/harness@0.4.0
39
+
3
40
  ## 0.3.2
4
41
 
5
42
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@poncho-ai/cli",
3
- "version": "0.3.2",
3
+ "version": "0.4.1",
4
4
  "description": "CLI for building and deploying AI agents",
5
5
  "repository": {
6
6
  "type": "git",
@@ -25,7 +25,7 @@
25
25
  "react": "^19.2.4",
26
26
  "react-devtools-core": "^6.1.5",
27
27
  "yaml": "^2.8.1",
28
- "@poncho-ai/harness": "0.3.1",
28
+ "@poncho-ai/harness": "0.4.1",
29
29
  "@poncho-ai/sdk": "0.2.0"
30
30
  },
31
31
  "devDependencies": {