experimental-agent 0.0.2 → 0.0.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.
Files changed (57) hide show
  1. package/README.md +13 -2
  2. package/dist/agent-workflow.d.mts +11 -3
  3. package/dist/agent-workflow.d.ts +11 -3
  4. package/dist/agent-workflow.js +1921 -1144
  5. package/dist/agent-workflow.mjs +7 -3
  6. package/dist/chunk-3ODWQVIA.mjs +12 -0
  7. package/dist/chunk-64THY7Y7.mjs +155 -0
  8. package/dist/chunk-GSRJYPWF.mjs +284 -0
  9. package/dist/chunk-HJGPUEFC.mjs +42 -0
  10. package/dist/chunk-JCPQQWIK.mjs +2057 -0
  11. package/dist/chunk-JEE2FQ4O.mjs +844 -0
  12. package/dist/chunk-T7PMZLOX.mjs +79 -0
  13. package/dist/chunk-TQRCSTCF.mjs +103 -0
  14. package/dist/chunk-VBLZWXVE.mjs +318 -0
  15. package/dist/{types-DPXFq_r6.d.ts → client-6g79J0s3.d.mts} +866 -31
  16. package/dist/{types-DPXFq_r6.d.mts → client-6g79J0s3.d.ts} +866 -31
  17. package/dist/client-SREKHM6I.mjs +15 -0
  18. package/dist/client.d.mts +37 -0
  19. package/dist/client.d.ts +37 -0
  20. package/dist/client.js +58 -0
  21. package/dist/client.mjs +30 -0
  22. package/dist/{client-HUG4HT5L.mjs → handler-36FM5H35.mjs} +4 -5
  23. package/dist/index.d.mts +3 -4
  24. package/dist/index.d.ts +3 -4
  25. package/dist/index.js +3102 -1438
  26. package/dist/index.mjs +720 -147
  27. package/dist/lifecycle-workflow.d.mts +3 -10
  28. package/dist/lifecycle-workflow.d.ts +3 -10
  29. package/dist/lifecycle-workflow.js +170 -1246
  30. package/dist/lifecycle-workflow.mjs +5 -41
  31. package/dist/local-fs-handlers-P4WGW3QY.mjs +235 -0
  32. package/dist/next/loader.d.mts +14 -0
  33. package/dist/next/loader.d.ts +14 -0
  34. package/dist/next/loader.js +206 -0
  35. package/dist/next/loader.mjs +103 -0
  36. package/dist/next.d.mts +34 -0
  37. package/dist/next.d.ts +34 -0
  38. package/dist/next.js +329 -0
  39. package/dist/next.mjs +224 -0
  40. package/dist/process-manager-JAKAXROL.mjs +10 -0
  41. package/dist/{client-4Y3UPWFR.mjs → sandbox-QAPGBVYM.mjs} +4 -3
  42. package/dist/storage-Q376OZH3.mjs +20 -0
  43. package/dist/{vercel-2CFDMEHB.mjs → vercel-LLXAHKVJ.mjs} +3 -1
  44. package/dist/vercel-sdk-VHKEX2GQ.mjs +8 -0
  45. package/package.json +32 -19
  46. package/dist/chunk-24DJSI7C.mjs +0 -374
  47. package/dist/chunk-4RGMKC2M.mjs +0 -755
  48. package/dist/chunk-6ICYKNCC.mjs +0 -284
  49. package/dist/chunk-PGYYQ3WZ.mjs +0 -1088
  50. package/dist/client-BBpD9kKL.d.ts +0 -193
  51. package/dist/client-BGJViybU.d.mts +0 -193
  52. package/dist/lifecycle-workflow-steps-HHN46ZAD.mjs +0 -20
  53. package/dist/local-BYPFRMLZ.mjs +0 -282
  54. package/dist/process-manager-H2HF6G4G.mjs +0 -153
  55. package/dist/sandbox-BFA4ECEQ.mjs +0 -10
  56. package/dist/storage-2U2QFNWI.mjs +0 -27
  57. /package/dist/{chunk-36X6L7SK.mjs → chunk-TAXLUVIC.mjs} +0 -0
@@ -1,17 +1,10 @@
1
- import * as workflow from 'workflow';
2
- import { c as SandboxConfig } from './types-DPXFq_r6.mjs';
3
- import { e as SandboxLifecycleInput } from './client-BGJViybU.mjs';
1
+ import { w as SandboxLifecycleInput } from './client-6g79J0s3.mjs';
2
+ import 'errore';
4
3
  import 'ai';
5
4
  import 'zod';
6
- import 'errore';
7
5
 
8
- type SandboxActivitySignal = {
9
- type: "activity";
10
- newConfig: SandboxConfig;
11
- };
12
- declare const sandboxActivityHook: workflow.TypedHook<SandboxActivitySignal, SandboxActivitySignal>;
13
6
  declare function sandboxLifecycleWorkflow({ input, }: {
14
7
  input: SandboxLifecycleInput;
15
8
  }): Promise<void>;
16
9
 
17
- export { type SandboxActivitySignal, SandboxLifecycleInput, sandboxActivityHook, sandboxLifecycleWorkflow };
10
+ export { SandboxLifecycleInput, sandboxLifecycleWorkflow };
@@ -1,17 +1,10 @@
1
- import * as workflow from 'workflow';
2
- import { c as SandboxConfig } from './types-DPXFq_r6.js';
3
- import { e as SandboxLifecycleInput } from './client-BBpD9kKL.js';
1
+ import { w as SandboxLifecycleInput } from './client-6g79J0s3.js';
2
+ import 'errore';
4
3
  import 'ai';
5
4
  import 'zod';
6
- import 'errore';
7
5
 
8
- type SandboxActivitySignal = {
9
- type: "activity";
10
- newConfig: SandboxConfig;
11
- };
12
- declare const sandboxActivityHook: workflow.TypedHook<SandboxActivitySignal, SandboxActivitySignal>;
13
6
  declare function sandboxLifecycleWorkflow({ input, }: {
14
7
  input: SandboxLifecycleInput;
15
8
  }): Promise<void>;
16
9
 
17
- export { type SandboxActivitySignal, SandboxLifecycleInput, sandboxActivityHook, sandboxLifecycleWorkflow };
10
+ export { SandboxLifecycleInput, sandboxLifecycleWorkflow };