conduyt 1.14.0 → 1.15.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.
Files changed (2) hide show
  1. package/dist/index.js +6 -0
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -1633,6 +1633,12 @@ ai
1633
1633
  .description("AI-recommended next actions for a user (defaults to you; other users need admin/owner)")
1634
1634
  .option("--user <id>", "user UUID")
1635
1635
  .action(run(async (client, opts) => client.get(`/api/v1/ai/next-actions${buildQuery({ userId: opts.user })}`)));
1636
+ ai
1637
+ .command("agenda")
1638
+ .description("Today's agenda for a user: calendar, callbacks, replies waiting, tasks due, new leads, follow-ups, quiet deals, with a brief on top")
1639
+ .option("--user <id>", "user UUID (admins/owners only; defaults to you)")
1640
+ .option("--no-narrative", "skip the AI-composed brief (returns the deterministic one; spends no AI budget)")
1641
+ .action(run(async (client, opts) => client.get(`/api/v1/ai/agenda${buildQuery({ userId: opts.user, narrative: opts.narrative === false ? "0" : undefined })}`)));
1636
1642
  ai
1637
1643
  .command("daily-brief")
1638
1644
  .description("Your AI daily brief (task-focused summary)")
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "conduyt",
3
- "version": "1.14.0",
3
+ "version": "1.15.0",
4
4
  "description": "Command-line interface for Conduyt CRM — manage contacts, deals, pipelines, and run insight queries from your terminal.",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",