@hachej/boring-workspace 0.1.17 → 0.1.20

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 (37) hide show
  1. package/README.md +36 -34
  2. package/dist/{FileTree-Dvaud3jU.js → FileTree-DHVB9rpk.js} +15 -15
  3. package/dist/{MarkdownEditor-sLkqTXDj.js → MarkdownEditor-L1KDH0bM.js} +1 -1
  4. package/dist/{WorkspaceLoadingState-zLzh1tGc.js → WorkspaceLoadingState-DYDxUYnx.js} +114 -110
  5. package/dist/WorkspaceProvider-CDPaAO5u.js +5971 -0
  6. package/dist/app-front.d.ts +94 -107
  7. package/dist/app-front.js +243 -233
  8. package/dist/app-server.d.ts +130 -15
  9. package/dist/app-server.js +1569 -304
  10. package/dist/{bootstrapServer-BreQ9QBc.d.ts → createInMemoryBridge-BDxDzihm.d.ts} +11 -26
  11. package/dist/manifest-CyNNdfYz.d.ts +58 -0
  12. package/dist/plugin.d.ts +199 -0
  13. package/dist/plugin.js +300 -0
  14. package/dist/server.d.ts +239 -4
  15. package/dist/server.js +901 -78
  16. package/dist/shared.d.ts +4 -112
  17. package/dist/surface-COYagY2m.d.ts +111 -0
  18. package/dist/testing.d.ts +19 -1
  19. package/dist/testing.js +2 -2
  20. package/dist/{agent-tool-DEtfQPVB.d.ts → ui-bridge-Gfh1MMgl.d.ts} +30 -30
  21. package/dist/workspace.css +36 -0
  22. package/dist/workspace.d.ts +165 -120
  23. package/dist/workspace.js +330 -377
  24. package/docs/INTERFACES.md +9 -9
  25. package/docs/PLUGIN_STRUCTURE.md +39 -145
  26. package/docs/PLUGIN_SYSTEM.md +355 -0
  27. package/docs/README.md +6 -1
  28. package/docs/plans/README.md +1 -0
  29. package/docs/plans/archive/HOT_RELOADABLE_AGENT_PLUGINS_PLAN.md +218 -0
  30. package/docs/plans/archive/RELOAD_PLUGGABILITY_PLAN.md +174 -0
  31. package/docs/plans/archive/UNIFIED_PLUGIN_SYSTEM_PLAN.md +769 -0
  32. package/package.json +11 -5
  33. package/dist/CommandPalette-CJHuTJlD.js +0 -5716
  34. package/docs/bridge.md +0 -135
  35. package/docs/panels.md +0 -102
  36. package/docs/plugins.md +0 -158
  37. /package/docs/plans/{MACRO_PLUGIN_GENERIC_HELPERS_AUDIT.md → archive/MACRO_PLUGIN_GENERIC_HELPERS_AUDIT.md} +0 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hachej/boring-workspace",
3
- "version": "0.1.17",
3
+ "version": "0.1.20",
4
4
  "type": "module",
5
5
  "license": "MIT",
6
6
  "description": "Workspace UI, plugin, and bridge package for composing chat, files, catalogs, editors, and app-specific panes.",
@@ -53,6 +53,10 @@
53
53
  "types": "./dist/events.d.ts",
54
54
  "import": "./dist/events.js"
55
55
  },
56
+ "./plugin": {
57
+ "types": "./dist/plugin.d.ts",
58
+ "import": "./dist/plugin.js"
59
+ },
56
60
  "./globals.css": "./dist/workspace.css"
57
61
  },
58
62
  "sideEffects": [
@@ -117,14 +121,15 @@
117
121
  "cmdk": "^1.1.1",
118
122
  "dockview-react": "^4.13.1",
119
123
  "fastify": "^5.3.3",
124
+ "jiti": "^2.6.1",
120
125
  "lowlight": "^3.3.0",
121
126
  "lucide-react": "^1.8.0",
122
127
  "react-arborist": "^3.4.0",
123
128
  "tailwind-merge": "^2.0.0",
124
129
  "zod": "^3.23.0",
125
130
  "zustand": "^5.0.0",
126
- "@hachej/boring-agent": "0.1.17",
127
- "@hachej/boring-ui-kit": "0.1.17"
131
+ "@hachej/boring-agent": "0.1.20",
132
+ "@hachej/boring-ui-kit": "0.1.20"
128
133
  },
129
134
  "devDependencies": {
130
135
  "@tailwindcss/postcss": "^4.0.0",
@@ -147,13 +152,14 @@
147
152
  "typescript": "^5.4.0",
148
153
  "vite": "^6.0.0",
149
154
  "vite-plugin-dts": "^4.5.4",
150
- "vitest": "^2.0.0"
155
+ "vitest": "^2.0.0",
156
+ "@boring-fixtures/default-plugin": "0.0.0"
151
157
  },
152
158
  "scripts": {
153
159
  "dev": "vite",
154
160
  "build": "pnpm --filter @hachej/boring-ui-kit build && tsup && vite build && node ./scripts/build-workspace-css.mjs && node ./scripts/assert-build-artifacts.mjs",
155
161
  "typecheck": "pnpm --filter @hachej/boring-ui-kit build && pnpm --filter @hachej/boring-agent build && tsc --noEmit -p tsconfig.front.json && tsc --noEmit -p tsconfig.server.json",
156
- "test": "vitest run",
162
+ "test": "pnpm --filter @hachej/boring-ui-cli build && vitest run",
157
163
  "check:bundle-size": "node ./scripts/check-bundle-size.mjs",
158
164
  "lint:plugin-invariants": "node ./scripts/check-plugin-invariants.mjs",
159
165
  "lint": "pnpm run typecheck"