nodal-agents 0.2.1 → 0.3.5

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 (170) hide show
  1. package/README.md +24 -0
  2. package/cli.js +288 -97
  3. package/migrations/0020_agent_workspaces.sql +60 -0
  4. package/migrations/meta/_journal.json +7 -0
  5. package/package.json +5 -2
  6. package/runner.js +2321 -1192
  7. package/web/.next/BUILD_ID +1 -1
  8. package/web/.next/app-path-routes-manifest.json +8 -8
  9. package/web/.next/build-manifest.json +2 -2
  10. package/web/.next/prerender-manifest.json +3 -3
  11. package/web/.next/server/app/(dashboard)/agents/[id]/edit/page.js +3 -2
  12. package/web/.next/server/app/(dashboard)/agents/[id]/edit/page.js.nft.json +1 -1
  13. package/web/.next/server/app/(dashboard)/agents/[id]/edit/page_client-reference-manifest.js +1 -1
  14. package/web/.next/server/app/(dashboard)/agents/[id]/telegram/page.js +2 -2
  15. package/web/.next/server/app/(dashboard)/agents/[id]/telegram/page.js.nft.json +1 -1
  16. package/web/.next/server/app/(dashboard)/agents/[id]/telegram/page_client-reference-manifest.js +1 -1
  17. package/web/.next/server/app/(dashboard)/agents/page.js +2 -2
  18. package/web/.next/server/app/(dashboard)/agents/page.js.nft.json +1 -1
  19. package/web/.next/server/app/(dashboard)/agents/page_client-reference-manifest.js +1 -1
  20. package/web/.next/server/app/(dashboard)/approvals/page.js +2 -2
  21. package/web/.next/server/app/(dashboard)/approvals/page.js.nft.json +1 -1
  22. package/web/.next/server/app/(dashboard)/approvals/page_client-reference-manifest.js +1 -1
  23. package/web/.next/server/app/(dashboard)/automations/page.js +2 -2
  24. package/web/.next/server/app/(dashboard)/automations/page.js.nft.json +1 -1
  25. package/web/.next/server/app/(dashboard)/automations/page_client-reference-manifest.js +1 -1
  26. package/web/.next/server/app/(dashboard)/billing/page.js +2 -2
  27. package/web/.next/server/app/(dashboard)/billing/page.js.nft.json +1 -1
  28. package/web/.next/server/app/(dashboard)/billing/page_client-reference-manifest.js +1 -1
  29. package/web/.next/server/app/(dashboard)/connectors/page.js +2 -2
  30. package/web/.next/server/app/(dashboard)/connectors/page.js.nft.json +1 -1
  31. package/web/.next/server/app/(dashboard)/connectors/page_client-reference-manifest.js +1 -1
  32. package/web/.next/server/app/(dashboard)/credentials/page.js +2 -2
  33. package/web/.next/server/app/(dashboard)/credentials/page.js.nft.json +1 -1
  34. package/web/.next/server/app/(dashboard)/credentials/page_client-reference-manifest.js +1 -1
  35. package/web/.next/server/app/(dashboard)/jobs/[id]/page.js +2 -2
  36. package/web/.next/server/app/(dashboard)/jobs/[id]/page.js.nft.json +1 -1
  37. package/web/.next/server/app/(dashboard)/jobs/[id]/page_client-reference-manifest.js +1 -1
  38. package/web/.next/server/app/(dashboard)/jobs/page.js +2 -2
  39. package/web/.next/server/app/(dashboard)/jobs/page.js.nft.json +1 -1
  40. package/web/.next/server/app/(dashboard)/jobs/page_client-reference-manifest.js +1 -1
  41. package/web/.next/server/app/(dashboard)/llm-providers/page.js +2 -2
  42. package/web/.next/server/app/(dashboard)/llm-providers/page.js.nft.json +1 -1
  43. package/web/.next/server/app/(dashboard)/llm-providers/page_client-reference-manifest.js +1 -1
  44. package/web/.next/server/app/(dashboard)/logs/page.js +2 -2
  45. package/web/.next/server/app/(dashboard)/logs/page.js.nft.json +1 -1
  46. package/web/.next/server/app/(dashboard)/logs/page_client-reference-manifest.js +1 -1
  47. package/web/.next/server/app/(dashboard)/mcp/page.js +1 -1
  48. package/web/.next/server/app/(dashboard)/mcp/page.js.nft.json +1 -1
  49. package/web/.next/server/app/(dashboard)/mcp/page_client-reference-manifest.js +1 -1
  50. package/web/.next/server/app/(dashboard)/memories/page.js +2 -2
  51. package/web/.next/server/app/(dashboard)/memories/page.js.nft.json +1 -1
  52. package/web/.next/server/app/(dashboard)/memories/page_client-reference-manifest.js +1 -1
  53. package/web/.next/server/app/(dashboard)/page.js +3 -3
  54. package/web/.next/server/app/(dashboard)/page.js.nft.json +1 -1
  55. package/web/.next/server/app/(dashboard)/page_client-reference-manifest.js +1 -1
  56. package/web/.next/server/app/(dashboard)/settings/page.js +2 -2
  57. package/web/.next/server/app/(dashboard)/settings/page.js.nft.json +1 -1
  58. package/web/.next/server/app/(dashboard)/settings/page_client-reference-manifest.js +1 -1
  59. package/web/.next/server/app/(dashboard)/skills/[id]/edit/page.js +2 -2
  60. package/web/.next/server/app/(dashboard)/skills/[id]/edit/page.js.nft.json +1 -1
  61. package/web/.next/server/app/(dashboard)/skills/[id]/edit/page_client-reference-manifest.js +1 -1
  62. package/web/.next/server/app/(dashboard)/skills/new/page.js +2 -547
  63. package/web/.next/server/app/(dashboard)/skills/new/page.js.nft.json +1 -1
  64. package/web/.next/server/app/(dashboard)/skills/new/page_client-reference-manifest.js +1 -1
  65. package/web/.next/server/app/(dashboard)/skills/page.js +2 -2
  66. package/web/.next/server/app/(dashboard)/skills/page.js.nft.json +1 -1
  67. package/web/.next/server/app/(dashboard)/skills/page_client-reference-manifest.js +1 -1
  68. package/web/.next/server/app/_global-error/page_client-reference-manifest.js +1 -1
  69. package/web/.next/server/app/_global-error.html +1 -1
  70. package/web/.next/server/app/_global-error.rsc +2 -2
  71. package/web/.next/server/app/_global-error.segments/_full.segment.rsc +2 -2
  72. package/web/.next/server/app/_global-error.segments/_global-error/__PAGE__.segment.rsc +1 -1
  73. package/web/.next/server/app/_global-error.segments/_global-error.segment.rsc +1 -1
  74. package/web/.next/server/app/_global-error.segments/_head.segment.rsc +1 -1
  75. package/web/.next/server/app/_global-error.segments/_index.segment.rsc +2 -2
  76. package/web/.next/server/app/_global-error.segments/_tree.segment.rsc +1 -1
  77. package/web/.next/server/app/_not-found/page_client-reference-manifest.js +1 -1
  78. package/web/.next/server/app/_not-found.html +1 -1
  79. package/web/.next/server/app/_not-found.rsc +3 -3
  80. package/web/.next/server/app/_not-found.segments/_full.segment.rsc +3 -3
  81. package/web/.next/server/app/_not-found.segments/_head.segment.rsc +1 -1
  82. package/web/.next/server/app/_not-found.segments/_index.segment.rsc +3 -3
  83. package/web/.next/server/app/_not-found.segments/_not-found/__PAGE__.segment.rsc +2 -2
  84. package/web/.next/server/app/_not-found.segments/_not-found.segment.rsc +1 -1
  85. package/web/.next/server/app/_not-found.segments/_tree.segment.rsc +2 -2
  86. package/web/.next/server/app/api/oauth/[provider]/callback/route.js +1 -1
  87. package/web/.next/server/app/login/page_client-reference-manifest.js +1 -1
  88. package/web/.next/server/app/onboarding/page_client-reference-manifest.js +1 -1
  89. package/web/.next/server/app/onboarding.html +1 -1
  90. package/web/.next/server/app/onboarding.rsc +3 -3
  91. package/web/.next/server/app/onboarding.segments/_full.segment.rsc +3 -3
  92. package/web/.next/server/app/onboarding.segments/_head.segment.rsc +1 -1
  93. package/web/.next/server/app/onboarding.segments/_index.segment.rsc +3 -3
  94. package/web/.next/server/app/onboarding.segments/_tree.segment.rsc +2 -2
  95. package/web/.next/server/app/onboarding.segments/onboarding/__PAGE__.segment.rsc +1 -1
  96. package/web/.next/server/app/onboarding.segments/onboarding.segment.rsc +1 -1
  97. package/web/.next/server/app-paths-manifest.json +8 -8
  98. package/web/.next/server/chunks/211.js +1 -0
  99. package/web/.next/server/chunks/277.js +1 -0
  100. package/web/.next/server/chunks/{4242.js → 4155.js} +1 -1
  101. package/web/.next/server/chunks/4574.js +1 -1
  102. package/web/.next/server/chunks/6294.js +1 -0
  103. package/web/.next/server/chunks/6937.js +16 -0
  104. package/web/.next/server/chunks/755.js +1 -0
  105. package/web/.next/server/chunks/7741.js +1223 -1
  106. package/web/.next/server/chunks/8362.js +1 -0
  107. package/web/.next/server/middleware-build-manifest.js +1 -1
  108. package/web/.next/server/pages/404.html +1 -1
  109. package/web/.next/server/pages/500.html +1 -1
  110. package/web/.next/server/server-reference-manifest.js +1 -1
  111. package/web/.next/server/server-reference-manifest.json +1 -1
  112. package/web/.next/static/chunks/374-60415230f01c844a.js +1 -0
  113. package/web/.next/static/chunks/639-79c3c2ac769ef007.js +1 -0
  114. package/web/.next/static/chunks/8666-90a1f5d99b79411e.js +1 -0
  115. package/web/.next/static/chunks/app/(dashboard)/agents/[id]/edit/page-daa833e779c2b465.js +2 -0
  116. package/web/.next/static/chunks/app/(dashboard)/agents/[id]/telegram/page-e6b35d5f361044a9.js +1 -0
  117. package/web/.next/static/chunks/app/(dashboard)/agents/page-b58294bf588f4581.js +1 -0
  118. package/web/.next/static/chunks/app/(dashboard)/approvals/{page-78f89fc75e0098e3.js → page-b9e504918d043b6d.js} +1 -1
  119. package/web/.next/static/chunks/app/(dashboard)/automations/page-70005fabd08ae4a5.js +1 -0
  120. package/web/.next/static/chunks/app/(dashboard)/connectors/page-e12174534c2c2acf.js +1 -0
  121. package/web/.next/static/chunks/app/(dashboard)/credentials/page-f1e797e327ecdf7c.js +1 -0
  122. package/web/.next/static/chunks/app/(dashboard)/jobs/[id]/page-40172a14d0b1368f.js +1 -0
  123. package/web/.next/static/chunks/app/(dashboard)/jobs/page-d4a3a16745e02fd1.js +1 -0
  124. package/web/.next/static/chunks/app/(dashboard)/layout-d01f5919f54fb37a.js +1 -0
  125. package/web/.next/static/chunks/app/(dashboard)/llm-providers/page-90fb785e2ab32759.js +1 -0
  126. package/web/.next/static/chunks/app/(dashboard)/logs/page-b814deb9854b0cb5.js +1 -0
  127. package/web/.next/static/chunks/app/(dashboard)/mcp/page-efb99104821983ce.js +1 -0
  128. package/web/.next/static/chunks/app/(dashboard)/memories/page-aa46f5f7efbfa262.js +1 -0
  129. package/web/.next/static/chunks/app/(dashboard)/page-fc49d7ed8e472118.js +1 -0
  130. package/web/.next/static/chunks/app/(dashboard)/settings/page-bd180e5a2b3a5bff.js +1 -0
  131. package/web/.next/static/chunks/app/(dashboard)/skills/[id]/edit/page-5fab5bdd950d7037.js +1 -0
  132. package/web/.next/static/chunks/app/(dashboard)/skills/new/page-86cfe805e82b43aa.js +1 -0
  133. package/web/.next/static/chunks/app/(dashboard)/skills/page-54c6adeb65475a1a.js +1 -0
  134. package/web/.next/static/css/e7183ce0b0791ec7.css +3 -0
  135. package/web/.next/server/chunks/1985.js +0 -1
  136. package/web/.next/server/chunks/2385.js +0 -1
  137. package/web/.next/server/chunks/2734.js +0 -1
  138. package/web/.next/server/chunks/3455.js +0 -1
  139. package/web/.next/server/chunks/3771.js +0 -1
  140. package/web/.next/server/chunks/414.js +0 -16
  141. package/web/.next/server/chunks/5616.js +0 -25
  142. package/web/.next/server/chunks/6595.js +0 -1
  143. package/web/.next/server/chunks/9323.js +0 -1
  144. package/web/.next/server/chunks/9327.js +0 -1
  145. package/web/.next/server/chunks/9427.js +0 -1
  146. package/web/.next/static/chunks/3422-9078c04bb8df8ce5.js +0 -1
  147. package/web/.next/static/chunks/5365-f17cb5257d2e5cd5.js +0 -1
  148. package/web/.next/static/chunks/6118-c6a8b66d0a3e446c.js +0 -1
  149. package/web/.next/static/chunks/9457-a94614afa0c2954c.js +0 -1
  150. package/web/.next/static/chunks/app/(dashboard)/agents/[id]/edit/page-faaf5d7084db1fbc.js +0 -1
  151. package/web/.next/static/chunks/app/(dashboard)/agents/[id]/telegram/page-8f2ca5f7fb70eab4.js +0 -1
  152. package/web/.next/static/chunks/app/(dashboard)/agents/page-9f2c2130d2f4de95.js +0 -1
  153. package/web/.next/static/chunks/app/(dashboard)/automations/page-7f71b6201decf4e5.js +0 -1
  154. package/web/.next/static/chunks/app/(dashboard)/connectors/page-cd7ee7dd1458ae47.js +0 -1
  155. package/web/.next/static/chunks/app/(dashboard)/credentials/page-73d252ca88f194f1.js +0 -1
  156. package/web/.next/static/chunks/app/(dashboard)/jobs/[id]/page-1740cbacc93cb4ac.js +0 -1
  157. package/web/.next/static/chunks/app/(dashboard)/jobs/page-d340869dc040dc5d.js +0 -1
  158. package/web/.next/static/chunks/app/(dashboard)/layout-c63442ae0b085dcc.js +0 -1
  159. package/web/.next/static/chunks/app/(dashboard)/llm-providers/page-2f472dc5ade5697f.js +0 -1
  160. package/web/.next/static/chunks/app/(dashboard)/logs/page-34e669d9863bdd6e.js +0 -1
  161. package/web/.next/static/chunks/app/(dashboard)/mcp/page-1b2bf2315b3b213e.js +0 -1
  162. package/web/.next/static/chunks/app/(dashboard)/memories/page-1e537215e80cb0c3.js +0 -1
  163. package/web/.next/static/chunks/app/(dashboard)/page-fe750fe3304e8025.js +0 -1
  164. package/web/.next/static/chunks/app/(dashboard)/settings/page-499e32816fa8881b.js +0 -1
  165. package/web/.next/static/chunks/app/(dashboard)/skills/[id]/edit/page-6a4102dd95d3a6e1.js +0 -1
  166. package/web/.next/static/chunks/app/(dashboard)/skills/new/page-ca70dd7b9f24b76b.js +0 -1
  167. package/web/.next/static/chunks/app/(dashboard)/skills/page-a6736503d29a2f1c.js +0 -1
  168. package/web/.next/static/css/a161c147ca3606b3.css +0 -3
  169. /package/web/.next/static/{c71dl6akFEjsFRL4fGw_M → BQkpUUo2Ux3Z5moUBYJBq}/_buildManifest.js +0 -0
  170. /package/web/.next/static/{c71dl6akFEjsFRL4fGw_M → BQkpUUo2Ux3Z5moUBYJBq}/_ssgManifest.js +0 -0
package/README.md CHANGED
@@ -53,6 +53,30 @@ from **Settings → LLM Keys** in the dashboard.
53
53
 
54
54
  To stop the stack: `nodal-agents down`.
55
55
 
56
+ ## Update
57
+
58
+ ```bash
59
+ nodal-agents update
60
+ ```
61
+
62
+ Checks the npm registry for the latest version, stops the running stack,
63
+ installs `nodal-agents@latest` globally, and restarts services automatically.
64
+ No data is touched — the embedded Postgres data directory is preserved.
65
+
66
+ ```bash
67
+ nodal-agents update --no-restart
68
+ ```
69
+
70
+ Installs the update but skips the automatic restart. Run `nodal-agents up`
71
+ manually when ready.
72
+
73
+ When a newer version is available, `nodal-agents up` also prints a one-line
74
+ notice:
75
+
76
+ ```
77
+ ℹ v0.4.0 available — run `nodal-agents update`
78
+ ```
79
+
56
80
  ### Build from source
57
81
 
58
82
  ```bash