@poncho-ai/cli 0.25.2 → 0.25.4

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@poncho-ai/cli",
3
- "version": "0.25.2",
3
+ "version": "0.25.4",
4
4
  "description": "CLI for building and deploying AI agents",
5
5
  "repository": {
6
6
  "type": "git",
@@ -28,8 +28,8 @@
28
28
  "react-devtools-core": "^6.1.5",
29
29
  "yaml": "^2.8.1",
30
30
  "@poncho-ai/harness": "0.23.0",
31
- "@poncho-ai/messaging": "0.6.0",
32
- "@poncho-ai/sdk": "1.5.0"
31
+ "@poncho-ai/sdk": "1.5.0",
32
+ "@poncho-ai/messaging": "0.6.0"
33
33
  },
34
34
  "devDependencies": {
35
35
  "@types/busboy": "^1.5.4",
package/src/index.ts CHANGED
@@ -75,10 +75,7 @@ const __dirname = dirname(fileURLToPath(import.meta.url));
75
75
  const require = createRequire(import.meta.url);
76
76
 
77
77
  const writeJson = (response: ServerResponse, statusCode: number, payload: unknown) => {
78
- response.writeHead(statusCode, {
79
- "Content-Type": "application/json",
80
- "Cache-Control": "private, no-cache, no-store, must-revalidate",
81
- });
78
+ response.writeHead(statusCode, { "Content-Type": "application/json" });
82
79
  response.end(JSON.stringify(payload));
83
80
  };
84
81
 
@@ -4034,7 +4031,7 @@ export const createRequestHandler = async (options?: {
4034
4031
  }
4035
4032
 
4036
4033
  try {
4037
- const summaries = await conversationStore.listSummaries();
4034
+ const summaries = await conversationStore.listSummaries(cronOwnerId);
4038
4035
  const targetSummaries = new Map<string, ConversationSummary>();
4039
4036
  for (const s of summaries) {
4040
4037
  if (s.channelMeta?.platform !== cronJob.channel) continue;
@@ -4457,7 +4454,7 @@ export const startDevServer = async (
4457
4454
  return;
4458
4455
  }
4459
4456
  try {
4460
- const summaries = await store.listSummaries();
4457
+ const summaries = await store.listSummaries("local-owner");
4461
4458
  const targetSummaries = new Map<string, ConversationSummary>();
4462
4459
  for (const s of summaries) {
4463
4460
  if (s.channelMeta?.platform !== config.channel) continue;