@erdoai/cli 0.40.0 → 0.40.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.
Files changed (2) hide show
  1. package/dist/index.js +4 -4
  2. package/package.json +4 -1
package/dist/index.js CHANGED
@@ -508,9 +508,9 @@ var ErdoClient = class {
508
508
  );
509
509
  }
510
510
  // --- activity feed ---
511
- // The unified, ranked, read-only feed: attention items, approvals, workstream
512
- // events, catalog updates, and urgent cause-clusters. Respond via
513
- // respondAttentionItem / decideApproval — this is a view only.
511
+ // The unified, ranked, read-only feed. It defaults to attention items,
512
+ // approvals, and workstream events; catalog and execution history are opt-in.
513
+ // Respond via respondAttentionItem / decideApproval — this is a view only.
514
514
  listActivityFeed(params) {
515
515
  const q = new URLSearchParams();
516
516
  if (params?.limit) q.set("limit", String(params.limit));
@@ -2418,7 +2418,7 @@ program.command("activity").alias("feed").description(
2418
2418
  "The unified activity feed \u2014 needs-you items first, then urgent cause-clusters, then recent activity. Read-only: respond with `erdo attention respond` / `erdo approvals decide`."
2419
2419
  ).option("-n, --limit <n>", "max items (default 20, max 100)", (v) => parseInt(v, 10)).option("--offset <n>", "pagination offset", (v) => parseInt(v, 10)).option(
2420
2420
  "--categories <list>",
2421
- "comma-separated: attention,approval,workstream,catalog,job,heartbeat (default excludes runs)"
2421
+ "comma-separated: attention,approval,workstream,catalog,job,heartbeat (default: attention,approval,workstream)"
2422
2422
  ).option("--scope <scope>", "following | all (default all)").option("--json", "raw JSON response").action(
2423
2423
  async (opts) => {
2424
2424
  try {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erdoai/cli",
3
- "version": "0.40.0",
3
+ "version": "0.40.1",
4
4
  "description": "Erdo CLI \u2014 drive datasets, pages, and evals from the terminal or CI",
5
5
  "type": "module",
6
6
  "bin": {
@@ -48,5 +48,8 @@
48
48
  "tsup": "^8.0.0",
49
49
  "tsx": "^4.0.0",
50
50
  "typescript": "^5.7.0"
51
+ },
52
+ "overrides": {
53
+ "esbuild": "^0.28.1"
51
54
  }
52
55
  }