@lunora/agent 1.0.0-alpha.1 → 1.0.0-alpha.10

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 (39) hide show
  1. package/README.md +2 -0
  2. package/dist/channels.d.mts +42 -22
  3. package/dist/channels.d.ts +42 -22
  4. package/dist/channels.mjs +1 -1
  5. package/dist/component.d.mts +59 -56
  6. package/dist/component.d.ts +59 -56
  7. package/dist/component.mjs +20 -9
  8. package/dist/inbound.d.mts +21 -16
  9. package/dist/inbound.d.ts +21 -16
  10. package/dist/index.d.mts +500 -408
  11. package/dist/index.d.ts +500 -408
  12. package/dist/index.mjs +6 -6
  13. package/dist/naming.d.mts +23 -10
  14. package/dist/naming.d.ts +23 -10
  15. package/dist/packem_shared/{VoiceSessionDO-DLoXsHGF.mjs → VoiceSessionDO-BdwlLaXC.mjs} +2 -2
  16. package/dist/packem_shared/{agentAsTool-Dt8NlU6k.mjs → agentAsTool-CUHlWsmt.mjs} +5 -1
  17. package/dist/packem_shared/{braintrustTelemetry-wuGDErob.mjs → braintrustTelemetry-TP7Kwuuj.mjs} +1 -1
  18. package/dist/packem_shared/{common-DAeFCot5.mjs → common-DQXayow6.mjs} +29 -1
  19. package/dist/packem_shared/compileAgentWorkflow-DYFFyx7i.mjs +78 -0
  20. package/dist/packem_shared/{consoleTelemetry-z2MiP1jt.mjs → consoleTelemetry--3sWfu1R.mjs} +1 -1
  21. package/dist/packem_shared/{createAgentGenerate-BQv9YJ01.mjs → createAgentGenerate-DO7Z96zX.mjs} +1 -1
  22. package/dist/packem_shared/{defineAgent-D6maSbVc.mjs → defineAgent-DAwAZC9P.mjs} +1 -1
  23. package/dist/packem_shared/{graph-component-aoUwO-f0.mjs → graph-component-Bbaxxymp.mjs} +3 -2
  24. package/dist/packem_shared/{normalizeEntityName-CyEEWFkR.mjs → normalizeEntityName-BouctxLC.mjs} +1 -1
  25. package/dist/packem_shared/otlpTelemetry-DU5ZmoEV.mjs +177 -0
  26. package/dist/packem_shared/{runAgentLoop-Dhg4ZNvw.mjs → runAgentLoop-M8PKbtWT.mjs} +2 -2
  27. package/dist/packem_shared/{sentryTelemetry-CgqFJyLO.mjs → sentryTelemetry-A4F5ndh9.mjs} +1 -1
  28. package/dist/packem_shared/types.d-boAM2Yi1.d.mts +1114 -0
  29. package/dist/packem_shared/types.d-boAM2Yi1.d.ts +1114 -0
  30. package/dist/sandbox.d.mts +129 -110
  31. package/dist/sandbox.d.ts +129 -110
  32. package/dist/sandbox.mjs +5 -1
  33. package/dist/telemetry/index.d.mts +190 -86
  34. package/dist/telemetry/index.d.ts +190 -86
  35. package/dist/telemetry/index.mjs +4 -3
  36. package/package.json +8 -8
  37. package/dist/packem_shared/compileAgentWorkflow-BxJjHgtD.mjs +0 -55
  38. package/dist/packem_shared/types.d-BWG0uUtX.d.mts +0 -1015
  39. package/dist/packem_shared/types.d-BWG0uUtX.d.ts +0 -1015
package/dist/inbound.d.ts CHANGED
@@ -1,29 +1,34 @@
1
- import { A as AgentDefinition } from "./packem_shared/types.d-BWG0uUtX.js";
1
+ import { A as AgentDefinition } from "./packem_shared/types.d-boAM2Yi1.js";
2
2
  import '@lunora/mail/inbound';
3
3
  import 'ai';
4
- /** One agent wired into the inbound `email()` handler. */
4
+ /**
5
+ * One agent wired into the inbound `email()` handler.
6
+ * @experimental
7
+ */
5
8
  interface AgentEmailTarget {
6
9
  /**
7
- * The agent definition — only its `onEmail` mapper is read, deciding whether
8
- * this agent claims the message and, if so, the run to start.
9
- */
10
+ * The agent definition — only its `onEmail` mapper is read, deciding whether
11
+ * this agent claims the message and, if so, the run to start.
12
+ */
10
13
  agent: Pick<AgentDefinition, "onEmail">;
11
14
  /** The `AGENT_*` Workflow binding name (off `env`) that starts a run. */
12
15
  binding: string;
13
16
  }
14
17
  /**
15
- * The worker `email(message, env, ctx)` callback. Typed with `unknown`
16
- * parameters so it drops straight onto the generated `composed.email` slot
17
- * without a cast.
18
- */
18
+ * The worker `email(message, env, ctx)` callback. Typed with `unknown`
19
+ * parameters so it drops straight onto the generated `composed.email` slot
20
+ * without a cast.
21
+ * @experimental
22
+ */
19
23
  type InboundAgentEmailHandler = (message: unknown, env: unknown, context: unknown) => Promise<void>;
20
24
  /**
21
- * Build the inbound `email()` handler for one or more `onEmail` agents. The
22
- * returned callback parses the message, then walks `targets` in order and starts
23
- * a durable run for the first agent whose `onEmail` mapper returns a run. If the
24
- * matched agent's Workflow binding is missing from `env` (run codegen/dev so
25
- * `wrangler.jsonc` declares it) the dispatch throws, and the inbound handler's
26
- * `onError` rejects (bounces) the message.
27
- */
25
+ * Build the inbound `email()` handler for one or more `onEmail` agents. The
26
+ * returned callback parses the message, then walks `targets` in order and starts
27
+ * a durable run for the first agent whose `onEmail` mapper returns a run. If the
28
+ * matched agent's Workflow binding is missing from `env` (run codegen/dev so
29
+ * `wrangler.jsonc` declares it) the dispatch throws, and the inbound handler's
30
+ * `onError` rejects (bounces) the message.
31
+ * @experimental
32
+ */
28
33
  declare const dispatchAgentEmail: (targets: ReadonlyArray<AgentEmailTarget>) => InboundAgentEmailHandler;
29
34
  export { type AgentEmailTarget, type InboundAgentEmailHandler, dispatchAgentEmail };