brainctl 0.1.18 → 0.1.19

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 (65) hide show
  1. package/dist/cli.d.ts +7 -7
  2. package/dist/cli.js +9 -9
  3. package/dist/commands/doctor.d.ts +1 -1
  4. package/dist/commands/mcp.js +2 -2
  5. package/dist/commands/profile.d.ts +5 -5
  6. package/dist/commands/profile.js +1 -1
  7. package/dist/commands/status.d.ts +1 -1
  8. package/dist/{mcp/server.d.ts → mcp-server.d.ts} +1 -1
  9. package/dist/{mcp/server.js → mcp-server.js} +10 -10
  10. package/dist/services/{agent-asset-installer.d.ts → agent/agent-asset-installer.d.ts} +1 -1
  11. package/dist/services/{agent-asset-installer.js → agent/agent-asset-installer.js} +2 -2
  12. package/dist/services/{agent-availability-service.d.ts → agent/agent-availability-service.d.ts} +1 -1
  13. package/dist/services/{agent-availability-service.js → agent/agent-availability-service.js} +1 -1
  14. package/dist/services/{agent-config-service.d.ts → agent/agent-config-service.d.ts} +6 -6
  15. package/dist/services/{agent-config-service.js → agent/agent-config-service.js} +6 -6
  16. package/dist/services/{credential-redaction-service.d.ts → credential/credential-redaction-service.d.ts} +1 -1
  17. package/dist/services/{credential-resolution-service.d.ts → credential/credential-resolution-service.d.ts} +1 -1
  18. package/dist/services/{doctor-service.d.ts → platform/doctor-service.d.ts} +2 -2
  19. package/dist/services/{doctor-service.js → platform/doctor-service.js} +1 -1
  20. package/dist/services/{mcp-preflight-service.d.ts → platform/mcp-preflight-service.d.ts} +2 -2
  21. package/dist/services/{mcp-preflight-service.js → platform/mcp-preflight-service.js} +1 -1
  22. package/dist/services/{runtime-detector.d.ts → platform/runtime-detector.d.ts} +1 -1
  23. package/dist/services/{status-service.d.ts → platform/status-service.d.ts} +3 -3
  24. package/dist/services/{status-service.js → platform/status-service.js} +2 -2
  25. package/dist/services/{update-check-service.js → platform/update-check-service.js} +1 -1
  26. package/dist/services/plugin/plugin-install-bundle.d.ts +20 -0
  27. package/dist/services/plugin/plugin-install-bundle.js +80 -0
  28. package/dist/services/plugin/plugin-install-compatibility.d.ts +15 -0
  29. package/dist/services/plugin/plugin-install-compatibility.js +91 -0
  30. package/dist/services/plugin/plugin-install-fs.d.ts +27 -0
  31. package/dist/services/plugin/plugin-install-fs.js +65 -0
  32. package/dist/services/{plugin-install-service.d.ts → plugin/plugin-install-service.d.ts} +4 -18
  33. package/dist/services/{plugin-install-service.js → plugin/plugin-install-service.js} +7 -308
  34. package/dist/services/plugin/plugin-install-uninstall.d.ts +12 -0
  35. package/dist/services/plugin/plugin-install-uninstall.js +76 -0
  36. package/dist/services/{skill-paths.d.ts → plugin/skill-paths.d.ts} +1 -1
  37. package/dist/services/{skill-preflight-service.d.ts → plugin/skill-preflight-service.d.ts} +1 -1
  38. package/dist/services/{portable-mcp-classifier.d.ts → profile/portable-mcp-classifier.d.ts} +3 -3
  39. package/dist/services/{portable-mcp-classifier.js → profile/portable-mcp-classifier.js} +2 -2
  40. package/dist/services/{portable-profile-pack-service.d.ts → profile/portable-profile-pack-service.d.ts} +2 -2
  41. package/dist/services/{portable-profile-pack-service.js → profile/portable-profile-pack-service.js} +5 -5
  42. package/dist/services/{profile-apply-service.d.ts → profile/profile-apply-service.d.ts} +2 -2
  43. package/dist/services/{profile-apply-service.js → profile/profile-apply-service.js} +5 -5
  44. package/dist/services/{profile-export-service.d.ts → profile/profile-export-service.d.ts} +2 -2
  45. package/dist/services/{profile-import-service.d.ts → profile/profile-import-service.d.ts} +1 -1
  46. package/dist/services/{profile-import-service.js → profile/profile-import-service.js} +4 -4
  47. package/dist/services/{profile-service.d.ts → profile/profile-service.d.ts} +1 -1
  48. package/dist/services/{profile-service.js → profile/profile-service.js} +1 -1
  49. package/dist/services/{profile-snapshot-service.d.ts → profile/profile-snapshot-service.d.ts} +1 -1
  50. package/dist/ui/routes.d.ts +1 -1
  51. package/dist/ui/routes.js +10 -10
  52. package/dist/ui/server.d.ts +1 -1
  53. package/package.json +1 -1
  54. /package/dist/{system/executables.d.ts → executables.d.ts} +0 -0
  55. /package/dist/{system/executables.js → executables.js} +0 -0
  56. /package/dist/services/{agent-converter-service.d.ts → agent/agent-converter-service.d.ts} +0 -0
  57. /package/dist/services/{agent-converter-service.js → agent/agent-converter-service.js} +0 -0
  58. /package/dist/services/{credential-redaction-service.js → credential/credential-redaction-service.js} +0 -0
  59. /package/dist/services/{credential-resolution-service.js → credential/credential-resolution-service.js} +0 -0
  60. /package/dist/services/{runtime-detector.js → platform/runtime-detector.js} +0 -0
  61. /package/dist/services/{update-check-service.d.ts → platform/update-check-service.d.ts} +0 -0
  62. /package/dist/services/{skill-paths.js → plugin/skill-paths.js} +0 -0
  63. /package/dist/services/{skill-preflight-service.js → plugin/skill-preflight-service.js} +0 -0
  64. /package/dist/services/{profile-export-service.js → profile/profile-export-service.js} +0 -0
  65. /package/dist/services/{profile-snapshot-service.js → profile/profile-snapshot-service.js} +0 -0
@@ -1,5 +1,5 @@
1
1
  import { type Server } from 'node:http';
2
- import type { StatusService } from '../services/status-service.js';
2
+ import type { StatusService } from '../services/platform/status-service.js';
3
3
  export interface StartUiServerOptions {
4
4
  cwd?: string;
5
5
  host?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "brainctl",
3
- "version": "0.1.18",
3
+ "version": "0.1.19",
4
4
  "description": "CLI environment manager for consistent AI workflows",
5
5
  "type": "module",
6
6
  "repository": {
File without changes