@shepai/cli 1.26.0 → 1.27.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 (174) hide show
  1. package/dist/packages/core/src/application/ports/output/index.d.ts +1 -1
  2. package/dist/packages/core/src/application/ports/output/index.d.ts.map +1 -1
  3. package/dist/packages/core/src/application/ports/output/services/index.d.ts +1 -0
  4. package/dist/packages/core/src/application/ports/output/services/index.d.ts.map +1 -1
  5. package/dist/packages/core/src/application/ports/output/services/notification-service.interface.d.ts +29 -0
  6. package/dist/packages/core/src/application/ports/output/services/notification-service.interface.d.ts.map +1 -0
  7. package/dist/packages/core/src/application/ports/output/services/notification-service.interface.js +12 -0
  8. package/dist/packages/core/src/application/use-cases/features/create/metadata-generator.d.ts +3 -2
  9. package/dist/packages/core/src/application/use-cases/features/create/metadata-generator.d.ts.map +1 -1
  10. package/dist/packages/core/src/application/use-cases/features/create/metadata-generator.js +36 -15
  11. package/dist/packages/core/src/domain/factories/settings-defaults.factory.d.ts.map +1 -1
  12. package/dist/packages/core/src/domain/factories/settings-defaults.factory.js +13 -0
  13. package/dist/packages/core/src/domain/generated/output.d.ts +105 -0
  14. package/dist/packages/core/src/domain/generated/output.d.ts.map +1 -1
  15. package/dist/packages/core/src/domain/generated/output.js +15 -0
  16. package/dist/packages/core/src/infrastructure/di/container.d.ts.map +1 -1
  17. package/dist/packages/core/src/infrastructure/di/container.js +17 -0
  18. package/dist/packages/core/src/infrastructure/persistence/sqlite/mappers/settings.mapper.d.ts +8 -0
  19. package/dist/packages/core/src/infrastructure/persistence/sqlite/mappers/settings.mapper.d.ts.map +1 -1
  20. package/dist/packages/core/src/infrastructure/persistence/sqlite/mappers/settings.mapper.js +22 -0
  21. package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations.d.ts.map +1 -1
  22. package/dist/packages/core/src/infrastructure/persistence/sqlite/migrations.js +14 -0
  23. package/dist/packages/core/src/infrastructure/repositories/sqlite-settings.repository.d.ts.map +1 -1
  24. package/dist/packages/core/src/infrastructure/repositories/sqlite-settings.repository.js +17 -3
  25. package/dist/packages/core/src/infrastructure/services/notifications/desktop-notifier.d.ts +22 -0
  26. package/dist/packages/core/src/infrastructure/services/notifications/desktop-notifier.d.ts.map +1 -0
  27. package/dist/packages/core/src/infrastructure/services/notifications/desktop-notifier.js +39 -0
  28. package/dist/packages/core/src/infrastructure/services/notifications/notification-bus.d.ts +52 -0
  29. package/dist/packages/core/src/infrastructure/services/notifications/notification-bus.d.ts.map +1 -0
  30. package/dist/packages/core/src/infrastructure/services/notifications/notification-bus.js +64 -0
  31. package/dist/packages/core/src/infrastructure/services/notifications/notification-watcher.service.d.ts +60 -0
  32. package/dist/packages/core/src/infrastructure/services/notifications/notification-watcher.service.d.ts.map +1 -0
  33. package/dist/packages/core/src/infrastructure/services/notifications/notification-watcher.service.js +225 -0
  34. package/dist/packages/core/src/infrastructure/services/notifications/notification.service.d.ts +21 -0
  35. package/dist/packages/core/src/infrastructure/services/notifications/notification.service.d.ts.map +1 -0
  36. package/dist/packages/core/src/infrastructure/services/notifications/notification.service.js +43 -0
  37. package/dist/src/presentation/cli/commands/ui.command.d.ts.map +1 -1
  38. package/dist/src/presentation/cli/commands/ui.command.js +8 -0
  39. package/dist/src/presentation/web/app/api/agent-events/route.d.ts +14 -0
  40. package/dist/src/presentation/web/app/api/agent-events/route.d.ts.map +1 -0
  41. package/dist/src/presentation/web/app/api/agent-events/route.js +77 -0
  42. package/dist/src/presentation/web/app/page.d.ts.map +1 -1
  43. package/dist/src/presentation/web/app/page.js +9 -12
  44. package/dist/src/presentation/web/components/common/feature-drawer/feature-drawer.js +2 -2
  45. package/dist/src/presentation/web/components/common/feature-drawer/feature-drawer.stories.js +3 -3
  46. package/dist/src/presentation/web/components/common/feature-node/feature-node-state-config.d.ts +5 -2
  47. package/dist/src/presentation/web/components/common/feature-node/feature-node-state-config.d.ts.map +1 -1
  48. package/dist/src/presentation/web/components/common/feature-node/feature-node-state-config.js +9 -0
  49. package/dist/src/presentation/web/components/common/feature-node/feature-node.d.ts.map +1 -1
  50. package/dist/src/presentation/web/components/common/feature-node/feature-node.js +9 -7
  51. package/dist/src/presentation/web/components/layouts/app-shell/app-shell.d.ts.map +1 -1
  52. package/dist/src/presentation/web/components/layouts/app-shell/app-shell.js +3 -0
  53. package/dist/src/presentation/web/components/ui/button.d.ts +1 -1
  54. package/dist/src/presentation/web/hooks/use-agent-events.d.ts +12 -0
  55. package/dist/src/presentation/web/hooks/use-agent-events.d.ts.map +1 -0
  56. package/dist/src/presentation/web/hooks/use-agent-events.js +58 -0
  57. package/dist/src/presentation/web/hooks/use-notifications.d.ts +10 -0
  58. package/dist/src/presentation/web/hooks/use-notifications.d.ts.map +1 -0
  59. package/dist/src/presentation/web/hooks/use-notifications.js +57 -0
  60. package/dist/src/presentation/web/hooks/use-notifications.stories.d.ts +6 -0
  61. package/dist/src/presentation/web/hooks/use-notifications.stories.d.ts.map +1 -0
  62. package/dist/src/presentation/web/hooks/use-notifications.stories.js +62 -0
  63. package/dist/tsconfig.build.tsbuildinfo +1 -1
  64. package/package.json +3 -1
  65. package/web/.next/BUILD_ID +1 -1
  66. package/web/.next/app-path-routes-manifest.json +1 -0
  67. package/web/.next/build-manifest.json +2 -2
  68. package/web/.next/cache/.previewinfo +1 -1
  69. package/web/.next/cache/.rscinfo +1 -1
  70. package/web/.next/cache/.tsbuildinfo +1 -1
  71. package/web/.next/cache/config.json +3 -3
  72. package/web/.next/fallback-build-manifest.json +2 -2
  73. package/web/.next/prerender-manifest.json +3 -3
  74. package/web/.next/required-server-files.js +1 -1
  75. package/web/.next/required-server-files.json +1 -1
  76. package/web/.next/routes-manifest.json +6 -0
  77. package/web/.next/server/app/_global-error.html +2 -2
  78. package/web/.next/server/app/_global-error.rsc +1 -1
  79. package/web/.next/server/app/_global-error.segments/__PAGE__.segment.rsc +1 -1
  80. package/web/.next/server/app/_global-error.segments/_full.segment.rsc +1 -1
  81. package/web/.next/server/app/_global-error.segments/_head.segment.rsc +1 -1
  82. package/web/.next/server/app/_global-error.segments/_index.segment.rsc +1 -1
  83. package/web/.next/server/app/_global-error.segments/_tree.segment.rsc +1 -1
  84. package/web/.next/server/app/_not-found/page_client-reference-manifest.js +1 -1
  85. package/web/.next/server/app/_not-found.html +2 -2
  86. package/web/.next/server/app/_not-found.rsc +10 -10
  87. package/web/.next/server/app/_not-found.segments/_full.segment.rsc +10 -10
  88. package/web/.next/server/app/_not-found.segments/_head.segment.rsc +3 -3
  89. package/web/.next/server/app/_not-found.segments/_index.segment.rsc +6 -6
  90. package/web/.next/server/app/_not-found.segments/_not-found/__PAGE__.segment.rsc +2 -2
  91. package/web/.next/server/app/_not-found.segments/_not-found.segment.rsc +3 -3
  92. package/web/.next/server/app/_not-found.segments/_tree.segment.rsc +2 -2
  93. package/web/.next/server/app/api/agent-events/route/app-paths-manifest.json +3 -0
  94. package/web/.next/server/app/api/agent-events/route/build-manifest.json +11 -0
  95. package/web/.next/server/app/api/agent-events/route/server-reference-manifest.json +4 -0
  96. package/web/.next/server/app/api/agent-events/route.js +6 -0
  97. package/web/.next/server/app/api/agent-events/route.js.map +5 -0
  98. package/web/.next/server/app/api/agent-events/route.js.nft.json +1 -0
  99. package/web/.next/server/app/api/agent-events/route_client-reference-manifest.js +2 -0
  100. package/web/.next/server/app/api/dialog/pick-files/route.js +3 -2
  101. package/web/.next/server/app/api/dialog/pick-files/route.js.nft.json +1 -1
  102. package/web/.next/server/app/api/dialog/pick-folder/route.js +3 -2
  103. package/web/.next/server/app/api/dialog/pick-folder/route.js.nft.json +1 -1
  104. package/web/.next/server/app/api/features/create/route.js +3 -2
  105. package/web/.next/server/app/api/features/create/route.js.nft.json +1 -1
  106. package/web/.next/server/app/api/ide/open/route.js +4 -2
  107. package/web/.next/server/app/api/ide/open/route.js.nft.json +1 -1
  108. package/web/.next/server/app/api/shell/open/route.js +3 -2
  109. package/web/.next/server/app/api/shell/open/route.js.nft.json +1 -1
  110. package/web/.next/server/app/page.js +1 -1
  111. package/web/.next/server/app/page_client-reference-manifest.js +1 -1
  112. package/web/.next/server/app/version/page_client-reference-manifest.js +1 -1
  113. package/web/.next/server/app/version.html +2 -2
  114. package/web/.next/server/app/version.rsc +5 -5
  115. package/web/.next/server/app/version.segments/_full.segment.rsc +5 -5
  116. package/web/.next/server/app/version.segments/_head.segment.rsc +1 -1
  117. package/web/.next/server/app/version.segments/_index.segment.rsc +4 -4
  118. package/web/.next/server/app/version.segments/_tree.segment.rsc +2 -2
  119. package/web/.next/server/app/version.segments/version/__PAGE__.segment.rsc +2 -2
  120. package/web/.next/server/app/version.segments/version.segment.rsc +1 -1
  121. package/web/.next/server/app-paths-manifest.json +1 -0
  122. package/web/.next/server/chunks/403f9_next_567de315._.js +17 -0
  123. package/web/.next/server/chunks/403f9_next_567de315._.js.map +1 -0
  124. package/web/.next/server/chunks/403f9_next_dist_esm_build_templates_app-route_12059e3e.js +3 -0
  125. package/web/.next/server/chunks/403f9_next_dist_esm_build_templates_app-route_12059e3e.js.map +1 -0
  126. package/web/.next/server/chunks/744ca_web__next-internal_server_app_api_agent-events_route_actions_686edb08.js +3 -0
  127. package/web/.next/server/chunks/744ca_web__next-internal_server_app_api_agent-events_route_actions_686edb08.js.map +1 -0
  128. package/web/.next/server/chunks/{[root-of-the-server]__eaa478b7._.js → [root-of-the-server]__4e987cf3._.js} +2 -2
  129. package/web/.next/server/chunks/[root-of-the-server]__57104a4c._.js +7 -0
  130. package/web/.next/server/chunks/[root-of-the-server]__57104a4c._.js.map +1 -0
  131. package/web/.next/server/chunks/{[root-of-the-server]__602cce1b._.js → [root-of-the-server]__61349adc._.js} +2 -2
  132. package/web/.next/server/chunks/{[root-of-the-server]__bb4fc5b5._.js → [root-of-the-server]__a6bf88cc._.js} +2 -2
  133. package/web/.next/server/chunks/[root-of-the-server]__aa2074ca._.js +3 -0
  134. package/web/.next/server/chunks/[root-of-the-server]__aa2074ca._.js.map +1 -0
  135. package/web/.next/server/chunks/{[root-of-the-server]__1913013c._.js → [root-of-the-server]__ec87d735._.js} +2 -2
  136. package/web/.next/server/chunks/[root-of-the-server]__ecaf05bc._.js +3 -0
  137. package/web/.next/server/chunks/[root-of-the-server]__ecaf05bc._.js.map +1 -0
  138. package/web/.next/server/chunks/ssr/403f9_next_dist_esm_build_templates_app-page_dbf21e04.js +1 -1
  139. package/web/.next/server/chunks/ssr/[root-of-the-server]__80e5bed2._.js +1 -1
  140. package/web/.next/server/chunks/ssr/[root-of-the-server]__f12b60be._.js +1 -1
  141. package/web/.next/server/chunks/ssr/[root-of-the-server]__fa87595c._.js +1 -1
  142. package/web/.next/server/chunks/ssr/_09afa42a._.js +1 -1
  143. package/web/.next/server/chunks/ssr/_09afa42a._.js.map +1 -1
  144. package/web/.next/server/chunks/ssr/_884ddade._.js +1 -1
  145. package/web/.next/server/chunks/ssr/_c5d377cc._.js +1 -1
  146. package/web/.next/server/chunks/ssr/src_presentation_web_components_e599bb8c._.js +1 -1
  147. package/web/.next/server/chunks/ssr/src_presentation_web_components_e599bb8c._.js.map +1 -1
  148. package/web/.next/server/chunks/ssr/src_presentation_web_ed0934e5._.js +1 -1
  149. package/web/.next/server/chunks/ssr/src_presentation_web_ed0934e5._.js.map +1 -1
  150. package/web/.next/server/pages/404.html +2 -2
  151. package/web/.next/server/pages/500.html +2 -2
  152. package/web/.next/server/server-reference-manifest.js +1 -1
  153. package/web/.next/server/server-reference-manifest.json +1 -1
  154. package/web/.next/static/chunks/b32b17f102226f32.js +1 -0
  155. package/web/.next/static/chunks/d8905884f147599c.css +2 -0
  156. package/web/.next/static/chunks/{c2854b6c6d0ca1f3.js → fd961ef835ff4867.js} +2 -2
  157. package/web/.next/trace +1 -1
  158. package/web/.next/trace-build +1 -1
  159. package/web/.next/types/link.d.ts +1 -0
  160. package/web/.next/types/routes.d.ts +2 -1
  161. package/web/.next/types/validator.ts +9 -0
  162. package/web/.next/server/chunks/[root-of-the-server]__56ac1509._.js +0 -3
  163. package/web/.next/server/chunks/[root-of-the-server]__56ac1509._.js.map +0 -1
  164. package/web/.next/server/chunks/[root-of-the-server]__ba6c5641._.js +0 -21
  165. package/web/.next/server/chunks/[root-of-the-server]__ba6c5641._.js.map +0 -1
  166. package/web/.next/static/chunks/78ef4acb26e4d6ea.js +0 -1
  167. package/web/.next/static/chunks/86ff2b6444e06e88.css +0 -2
  168. /package/web/.next/server/chunks/{[root-of-the-server]__eaa478b7._.js.map → [root-of-the-server]__4e987cf3._.js.map} +0 -0
  169. /package/web/.next/server/chunks/{[root-of-the-server]__602cce1b._.js.map → [root-of-the-server]__61349adc._.js.map} +0 -0
  170. /package/web/.next/server/chunks/{[root-of-the-server]__bb4fc5b5._.js.map → [root-of-the-server]__a6bf88cc._.js.map} +0 -0
  171. /package/web/.next/server/chunks/{[root-of-the-server]__1913013c._.js.map → [root-of-the-server]__ec87d735._.js.map} +0 -0
  172. /package/web/.next/static/{_6j6GS-S6zPiASj5tsxJ8 → AmQVHj-yhxaqpAg8gC7MH}/_buildManifest.js +0 -0
  173. /package/web/.next/static/{_6j6GS-S6zPiASj5tsxJ8 → AmQVHj-yhxaqpAg8gC7MH}/_clientMiddlewareManifest.json +0 -0
  174. /package/web/.next/static/{_6j6GS-S6zPiASj5tsxJ8 → AmQVHj-yhxaqpAg8gC7MH}/_ssgManifest.js +0 -0

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.