@iloveagents/foundry-web-shell 0.3.0 → 0.3.1

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.
package/AGENTS.md CHANGED
@@ -2,7 +2,7 @@ Browser bootstrap for the LastSpace agent UI starter. Published as `@iloveagents
2
2
 
3
3
  # Architecture
4
4
 
5
- Source-shipping (no build step) — same convention as the other `@lastspace/*` packages.
5
+ Source-shipping (no build step) — same convention as the other `@iloveagents/foundry-*` packages.
6
6
 
7
7
  ```
8
8
  src/
@@ -79,4 +79,4 @@ pnpm --filter @iloveagents/foundry-web-shell typecheck # tsc --noEmit
79
79
 
80
80
  # Authoring a module
81
81
 
82
- See [`docs/AUTHORING_A_MODULE.md`](../../docs/AUTHORING_A_MODULE.md).
82
+ The `ChatModule` protocol is documented in **Public API** above; the canonical type definitions live in [`src/types.ts`](src/types.ts) (`ChatModule`, `defineChatModule`). For the nav-mutation-from-`useInit` pattern, have your module's `useInit` write the sidebar nav `config` into `useNavStore` (the same store [`src/shell-layout.tsx`](src/shell-layout.tsx) reads via `useNavStore((s) => s.config)`).
package/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # @iloveagents/foundry-web-shell
2
2
 
3
+ ## 0.3.1
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [9ec870e]
8
+ - @iloveagents/foundry-web-ui@0.3.1
9
+ - @iloveagents/foundry-agent@0.3.1
10
+ - @iloveagents/foundry-web-primitives@0.3.1
11
+
3
12
  ## 0.3.0
4
13
 
5
14
  ### Minor Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@iloveagents/foundry-web-shell",
3
- "version": "0.3.0",
3
+ "version": "0.3.1",
4
4
  "license": "SEE LICENSE IN LICENSE",
5
5
  "type": "module",
6
6
  "types": "./src/index.ts",
@@ -19,9 +19,9 @@
19
19
  "zustand": "^5.0.0"
20
20
  },
21
21
  "dependencies": {
22
- "@iloveagents/foundry-agent": "0.3.0",
23
- "@iloveagents/foundry-web-primitives": "0.3.0",
24
- "@iloveagents/foundry-web-ui": "0.3.0"
22
+ "@iloveagents/foundry-agent": "0.3.1",
23
+ "@iloveagents/foundry-web-primitives": "0.3.1",
24
+ "@iloveagents/foundry-web-ui": "0.3.1"
25
25
  },
26
26
  "devDependencies": {
27
27
  "typescript": "~5.9.3",