@poncho-ai/cli 0.3.1 → 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.
@@ -1,5 +1,5 @@
1
1
 
2
- > @poncho-ai/cli@0.3.1 build /Users/cesar/Dev/latitude/poncho-ai/packages/cli
2
+ > @poncho-ai/cli@0.3.2 build /Users/cesar/Dev/latitude/poncho-ai/packages/cli
3
3
  > tsup src/index.ts src/cli.ts --format esm --dts
4
4
 
5
5
  CLI Building entry: src/cli.ts, src/index.ts
@@ -7,13 +7,12 @@ CLI Using tsconfig: tsconfig.json
7
7
  CLI tsup v8.5.1
8
8
  CLI Target: es2022
9
9
  ESM Build start
10
- ESM dist/cli.js 124.00 B
11
- ESM dist/chunk-3BEWSRFW.js 63.50 KB
12
- ESM dist/index.js 607.00 B
13
- ESM dist/run-interactive-ink-4EKHIHGU.js 15.47 KB
14
- ESM dist/chunk-AS3CEZHY.js 68.39 KB
15
- ESM ⚡️ Build success in 22ms
10
+ ESM dist/cli.js 94.00 B
11
+ ESM dist/index.js 635.00 B
12
+ ESM dist/run-interactive-ink-BOD2F5JM.js 15.46 KB
13
+ ESM dist/chunk-ESPC4MPN.js 132.51 KB
14
+ ESM ⚡️ Build success in 81ms
16
15
  DTS Build start
17
- DTS ⚡️ Build success in 1839ms
16
+ DTS ⚡️ Build success in 1931ms
18
17
  DTS dist/cli.d.ts 20.00 B
19
- DTS dist/index.d.ts 2.25 KB
18
+ DTS dist/index.d.ts 2.56 KB
package/CHANGELOG.md CHANGED
@@ -1,5 +1,41 @@
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
+
31
+ ## 0.3.2
32
+
33
+ ### Patch Changes
34
+
35
+ - Fix environment detection in production deployments
36
+
37
+ Agents deployed to Vercel, Railway, Render, AWS Lambda, and Fly.io now correctly detect their environment automatically without requiring manual NODE_ENV configuration. The resolved environment is now properly passed to the AgentHarness constructor.
38
+
3
39
  ## 0.3.1
4
40
 
5
41
  ### Patch Changes