@poncho-ai/cli 0.3.0 → 0.3.2
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 +8 -9
- package/CHANGELOG.md +19 -0
- package/dist/chunk-3OBDF3LI.js +1893 -0
- package/dist/chunk-AS3CEZHY.js +2145 -0
- package/dist/chunk-ESPC4MPN.js +4043 -0
- package/dist/chunk-XABZUC4W.js +4043 -0
- package/dist/chunk-YJZ3MQIA.js +2145 -0
- package/dist/cli.js +1 -2
- package/dist/index.d.ts +6 -1
- package/dist/index.js +3 -2
- package/dist/run-interactive-ink-BOD2F5JM.js +463 -0
- package/dist/run-interactive-ink-EHJVWEDC.js +462 -0
- package/dist/run-interactive-ink-M5E55KCC.js +463 -0
- package/package.json +2 -2
- package/src/index.ts +57 -15
- package/src/init-feature-context.ts +2 -1
- package/src/run-interactive-ink.ts +2 -1
- package/src/web-ui.ts +1 -1
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
> @poncho-ai/cli@0.3.
|
|
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/
|
|
11
|
-
ESM dist/
|
|
12
|
-
ESM dist/
|
|
13
|
-
ESM dist/chunk-
|
|
14
|
-
ESM
|
|
15
|
-
ESM ⚡️ Build success in 21ms
|
|
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
|
|
16
|
+
DTS ⚡️ Build success in 1931ms
|
|
18
17
|
DTS dist/cli.d.ts 20.00 B
|
|
19
|
-
DTS dist/index.d.ts 2.
|
|
18
|
+
DTS dist/index.d.ts 2.56 KB
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,24 @@
|
|
|
1
1
|
# @poncho-ai/cli
|
|
2
2
|
|
|
3
|
+
## 0.3.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Fix environment detection in production deployments
|
|
8
|
+
|
|
9
|
+
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.
|
|
10
|
+
|
|
11
|
+
## 0.3.1
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- Split agent template and development context
|
|
16
|
+
|
|
17
|
+
Move development-specific guidance from AGENT.md template into runtime-injected development context. Production agents now receive a cleaner prompt focused on task execution, while development agents get additional context about customization and setup.
|
|
18
|
+
|
|
19
|
+
- Updated dependencies []:
|
|
20
|
+
- @poncho-ai/harness@0.3.1
|
|
21
|
+
|
|
3
22
|
## 0.3.0
|
|
4
23
|
|
|
5
24
|
### Minor Changes
|