@poncho-ai/cli 0.3.0 → 0.3.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.
- package/.turbo/turbo-build.log +5 -5
- package/CHANGELOG.md +11 -0
- package/dist/chunk-AS3CEZHY.js +2145 -0
- package/dist/cli.js +1 -1
- package/dist/index.js +1 -1
- package/package.json +2 -2
- package/src/index.ts +0 -10
package/dist/cli.js
CHANGED
package/dist/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@poncho-ai/cli",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.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.
|
|
28
|
+
"@poncho-ai/harness": "0.3.1",
|
|
29
29
|
"@poncho-ai/sdk": "0.2.0"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
package/src/index.ts
CHANGED
|
@@ -174,17 +174,7 @@ Environment: {{runtime.environment}}
|
|
|
174
174
|
- Use tools when needed
|
|
175
175
|
- Explain your reasoning clearly
|
|
176
176
|
- Ask clarifying questions when requirements are ambiguous
|
|
177
|
-
- For setup/configuration/skills/MCP questions, proactively read \`README.md\` with \`read_file\` before answering.
|
|
178
|
-
- Prefer concrete commands and examples from \`README.md\` over assumptions.
|
|
179
177
|
- Never claim a file/tool change unless the corresponding tool call actually succeeded
|
|
180
|
-
|
|
181
|
-
## Default Capabilities in a Fresh Project
|
|
182
|
-
|
|
183
|
-
- Built-in tools: \`list_directory\` and \`read_file\`
|
|
184
|
-
- \`write_file\` is available in development, and disabled by default in production
|
|
185
|
-
- A starter local skill is included (\`starter-echo\`)
|
|
186
|
-
- Bash/shell commands are **not** available unless you install and enable a shell tool/skill
|
|
187
|
-
- Git operations are only available if a git-capable tool/skill is configured
|
|
188
178
|
`;
|
|
189
179
|
|
|
190
180
|
/**
|