@poncho-ai/cli 0.11.1 → 0.13.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/dist/cli.js CHANGED
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env node
2
2
  import {
3
3
  main
4
- } from "./chunk-T2F6ICXI.js";
4
+ } from "./chunk-CUCEDHME.js";
5
5
 
6
6
  // src/cli.ts
7
7
  void main();
package/dist/index.d.ts CHANGED
@@ -1,4 +1,5 @@
1
1
  import { IncomingMessage, ServerResponse, Server } from 'node:http';
2
+ import { AgentHarness, CronJobConfig, ConversationStore } from '@poncho-ai/harness';
2
3
  import { Command } from 'commander';
3
4
 
4
5
  type InitOnboardingOptions = {
@@ -17,7 +18,11 @@ declare const initProject: (projectName: string, options?: {
17
18
  envExampleOverride?: string;
18
19
  }) => Promise<void>;
19
20
  declare const updateAgentGuidance: (workingDir: string) => Promise<boolean>;
20
- type RequestHandler = (request: IncomingMessage, response: ServerResponse) => Promise<void>;
21
+ type RequestHandler = ((request: IncomingMessage, response: ServerResponse) => Promise<void>) & {
22
+ _harness?: AgentHarness;
23
+ _cronJobs?: Record<string, CronJobConfig>;
24
+ _conversationStore?: ConversationStore;
25
+ };
21
26
  declare const createRequestHandler: (options?: {
22
27
  workingDir?: string;
23
28
  }) => Promise<RequestHandler>;
package/dist/index.js CHANGED
@@ -23,7 +23,7 @@ import {
23
23
  runTests,
24
24
  startDevServer,
25
25
  updateAgentGuidance
26
- } from "./chunk-T2F6ICXI.js";
26
+ } from "./chunk-CUCEDHME.js";
27
27
  export {
28
28
  addSkill,
29
29
  buildCli,
@@ -2,7 +2,7 @@ import {
2
2
  consumeFirstRunIntro,
3
3
  inferConversationTitle,
4
4
  resolveHarnessEnvironment
5
- } from "./chunk-T2F6ICXI.js";
5
+ } from "./chunk-CUCEDHME.js";
6
6
 
7
7
  // src/run-interactive-ink.ts
8
8
  import * as readline from "readline";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@poncho-ai/cli",
3
- "version": "0.11.1",
3
+ "version": "0.13.0",
4
4
  "description": "CLI for building and deploying AI agents",
5
5
  "repository": {
6
6
  "type": "git",
@@ -20,14 +20,16 @@
20
20
  "@inquirer/prompts": "^8.2.0",
21
21
  "busboy": "^1.6.0",
22
22
  "commander": "^12.0.0",
23
+ "croner": "^10.0.1",
23
24
  "dotenv": "^16.4.0",
24
25
  "ink": "^6.7.0",
25
26
  "marked": "^17.0.2",
26
27
  "react": "^19.2.4",
27
28
  "react-devtools-core": "^6.1.5",
28
29
  "yaml": "^2.8.1",
29
- "@poncho-ai/harness": "0.12.0",
30
- "@poncho-ai/sdk": "1.0.0"
30
+ "@poncho-ai/messaging": "0.2.0",
31
+ "@poncho-ai/harness": "0.13.1",
32
+ "@poncho-ai/sdk": "1.0.1"
31
33
  },
32
34
  "devDependencies": {
33
35
  "@types/busboy": "^1.5.4",