@hachej/boring-workspace 0.1.59 → 0.1.60

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.
@@ -25,12 +25,12 @@ commands, and default workspace plugins.
25
25
 
26
26
  The default core-composed workspace route is chat-first after identity match: `WorkspaceAgentFront` mounts immediately, while `WorkspaceBackgroundBoot` warms tree/session/runtime readiness in the background. `WorkspaceBootGate` remains available for shells that want blocking boot.
27
27
 
28
- Workbench surfaces are locally gated by warmup state. File tree/editor/plugin/left-tab surfaces do not mount while the current workspace is preparing or failed; chat remains visible. See [`packages/core/docs/CHAT_FIRST_WORKSPACE_BOOT.md`](../../core/docs/CHAT_FIRST_WORKSPACE_BOOT.md) for the product contract and stable readiness errors.
28
+ Workbench surfaces are locally gated by warmup state. File tree/editor/plugin workspace surfaces do not mount while the current workspace is preparing or failed; chat remains visible. See [`packages/core/docs/CHAT_FIRST_WORKSPACE_BOOT.md`](../../core/docs/CHAT_FIRST_WORKSPACE_BOOT.md) for the product contract and stable readiness errors.
29
29
 
30
30
  ## Core Contracts
31
31
 
32
32
  - Plugin contributions: `src/shared/plugins/frontFactory.ts`
33
- - Front plugins are authored with `definePlugin({ panels, leftTabs, commands,
33
+ - Front plugins are authored with `definePlugin({ panels, commands,
34
34
  catalogs, bindings, providers, surfaceResolvers })`. Agent tools belong to
35
35
  Pi/server runtime paths, not front plugin contributions.
36
36
  - Surface opening: `src/shared/types/surface.ts`
package/docs/README.md CHANGED
@@ -13,7 +13,7 @@ the doc that matches your task.
13
13
 
14
14
  - **Layout runtime** — Dockview-based panes (`IdeLayout`, `ChatLayout`,
15
15
  `ResponsiveDockviewShell`) mounted by `WorkspaceProvider`. Panels open in the
16
- center/right/bottom; left-tabs stay docked in the sidebar.
16
+ shared-dockview panels and workspace-page full plugin pages.
17
17
  - **Plugin host** — `WorkspaceProvider` runs `bootstrap(plugins)` to populate the
18
18
  panel, command, catalog, and surface-resolver registries. Lazy panel factories
19
19
  are auto-wrapped in `React.lazy + Suspense + ErrorBoundary`.
@@ -34,9 +34,9 @@ the doc that matches your task.
34
34
  | Abstraction | Where | What it is |
35
35
  | --- | --- | --- |
36
36
  | `WorkspaceProvider` | `src/front/provider` | Root provider; boots plugins, layout, bridge. |
37
- | `definePlugin()` | `@hachej/boring-workspace/plugin` | Declarative front plugin: panels, leftTabs, commands, catalogs, bindings, providers, surfaceResolvers. |
37
+ | `definePlugin()` | `@hachej/boring-workspace/plugin` | Declarative front plugin: panels, commands, catalogs, bindings, providers, surfaceResolvers. |
38
38
  | `defineServerPlugin()` | `@hachej/boring-workspace/server` | Trusted boot-time server plugin: routes, agent tools, system prompt, Pi packages, provisioning. |
39
- | `PaneProps<T>` | `src/shared/types/panel.ts` | Props every panel/left-tab component receives (`params`, `api`, `containerApi`). |
39
+ | `PaneProps<T>` | `src/shared/types/panel.ts` | Props every panel/page component receives (`params`, `api`, `containerApi`). |
40
40
  | `UiCommand` / `UiBridge` | `src/shared/ui-bridge.ts` | Typed agent→browser command contract. |
41
41
  | `SurfaceOpenRequest` | `src/shared/types/surface.ts` | Domain open request resolved to a panel. |
42
42
  | `BoringPluginAssetManager` | `src/server/agentPlugins` | Scans plugin dirs, hashes signatures, emits load/unload/error events, backs `/api/v1/agent-plugins`. |
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hachej/boring-workspace",
3
- "version": "0.1.59",
3
+ "version": "0.1.60",
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.",
@@ -139,9 +139,9 @@
139
139
  "tailwind-merge": "^2.0.0",
140
140
  "zod": "^3.23.0",
141
141
  "zustand": "^5.0.0",
142
- "@hachej/boring-agent": "0.1.59",
143
- "@hachej/boring-ui-plugin-cli": "0.1.59",
144
- "@hachej/boring-ui-kit": "0.1.59"
142
+ "@hachej/boring-agent": "0.1.60",
143
+ "@hachej/boring-ui-kit": "0.1.60",
144
+ "@hachej/boring-ui-plugin-cli": "0.1.60"
145
145
  },
146
146
  "devDependencies": {
147
147
  "@tailwindcss/postcss": "^4.0.0",