@noodleseed/agent-kit 0.10.0 → 0.11.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.
package/manifest.json CHANGED
@@ -1,9 +1,9 @@
1
1
  {
2
- "packageVersion": "0.10.0",
2
+ "packageVersion": "0.11.0",
3
3
  "files": [
4
4
  {
5
5
  "path": "skills/codex/SKILL.md",
6
- "sha256": "9b4a0f08e67add37749096b5cb496d29407637d9602d0f3015f1362dff2a29f7",
6
+ "sha256": "54f2a9d84455361127f40fe079715ec69c1ef737b491fc2ace896cb754ff4fe3",
7
7
  "agentTarget": "codex"
8
8
  },
9
9
  {
@@ -33,7 +33,7 @@
33
33
  },
34
34
  {
35
35
  "path": "skills/codex/references/widgets-and-apps.md",
36
- "sha256": "46ee39731565bf6bbf2b818125685b64599011bcd825b4c279f1232ecebd5839",
36
+ "sha256": "dea06536f780f0bb6d26dc63a6f1f35e2d6eb97f7a9c1c8574ed7377ccfe37a8",
37
37
  "agentTarget": "codex"
38
38
  },
39
39
  {
@@ -63,7 +63,7 @@
63
63
  },
64
64
  {
65
65
  "path": "skills/claude-code/SKILL.md",
66
- "sha256": "8b900dc831b5dde27f3b1859041b688ec0b04be940e8748e2329a5e92014abd2",
66
+ "sha256": "fa975102477cd02ecdb083b4b8f747fc3fee3a7bcb5b725fe63ca9504258ba39",
67
67
  "agentTarget": "claude-code"
68
68
  },
69
69
  {
@@ -93,7 +93,7 @@
93
93
  },
94
94
  {
95
95
  "path": "skills/claude-code/references/widgets-and-apps.md",
96
- "sha256": "46ee39731565bf6bbf2b818125685b64599011bcd825b4c279f1232ecebd5839",
96
+ "sha256": "dea06536f780f0bb6d26dc63a6f1f35e2d6eb97f7a9c1c8574ed7377ccfe37a8",
97
97
  "agentTarget": "claude-code"
98
98
  },
99
99
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@noodleseed/agent-kit",
3
- "version": "0.10.0",
3
+ "version": "0.11.0",
4
4
  "private": false,
5
5
  "description": "Self-checking, self-updating agent skills for the Noodle Seed CLI. Authored in this repo by @noodle-borg/agent-kit; this is the published, independently-versioned canonical skills artifact the CLI fetches and verifies.",
6
6
  "license": "Apache-2.0",
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  name: noodle-seed
3
3
  description: Use when building, validating, testing, deploying, or operating a local or hosted Noodle Seed MCP server or app authored in TypeScript with the noodle CLI.
4
- version: 0.10.0
4
+ version: 0.11.0
5
5
  hash: 5aa15e5bf381543c
6
6
  ---
7
7
 
@@ -23,7 +23,8 @@ Author views as React components. `generateHelpers<ServerDefinition>()` (from `@
23
23
  | `useToolInfo` | Read the invoking tool result; `structuredContent` is the widget’s typed data payload. |
24
24
  | `useCallTool` | Call a tool from the widget — returns `{ status, callTool, callToolAsync, data, structuredContent, error, reset }`; target a model-visible tool or a hidden `toolForWidget` helper. |
25
25
  | `useViewState` | Persist per-widget UI state across re-renders and restores: `const [value, setValue] = useViewState("key", initial)`. |
26
- | `useLayout` | Read host layout: `{ theme, displayMode, locale? }` (`theme` is `"light"`/`"dark"`, `displayMode` is `"inline"`/`"fullscreen"`) — adapt styling to the host theme and mode. |
26
+ | `useLayout` | Read host layout: `{ theme, displayMode, locale?, host?, supports? }` (`displayMode` is `"inline"`/`"pip"`/`"fullscreen"`) — adapt styling to the host theme and mode. |
27
+ | `useRequestDisplayMode` | Request a host-mediated layout change such as fullscreen; treat it as best-effort and keep inline rendering useful. |
27
28
  | `useOpenExternal` | Open an external link through the host (never `window.open`); the target origin must be listed in the server-level `handoff.allowedDomains`. |
28
29
  | `useSendFollowUpMessage` | Send a follow-up prompt to the model from a user interaction: `send({ prompt })` — trigger only from an explicit user action. |
29
30
  | `useAppFlow` | Manage named widget views with persisted params and back-stack state: `const flow = useAppFlow({ initialView, views })`. |
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  name: noodle-seed
3
3
  description: Use when building, validating, testing, deploying, or operating a local or hosted Noodle Seed MCP server or app authored in TypeScript with the noodle CLI.
4
- version: 0.10.0
4
+ version: 0.11.0
5
5
  hash: 7cae1fbf5bdf6a0d
6
6
  ---
7
7
 
@@ -23,7 +23,8 @@ Author views as React components. `generateHelpers<ServerDefinition>()` (from `@
23
23
  | `useToolInfo` | Read the invoking tool result; `structuredContent` is the widget’s typed data payload. |
24
24
  | `useCallTool` | Call a tool from the widget — returns `{ status, callTool, callToolAsync, data, structuredContent, error, reset }`; target a model-visible tool or a hidden `toolForWidget` helper. |
25
25
  | `useViewState` | Persist per-widget UI state across re-renders and restores: `const [value, setValue] = useViewState("key", initial)`. |
26
- | `useLayout` | Read host layout: `{ theme, displayMode, locale? }` (`theme` is `"light"`/`"dark"`, `displayMode` is `"inline"`/`"fullscreen"`) — adapt styling to the host theme and mode. |
26
+ | `useLayout` | Read host layout: `{ theme, displayMode, locale?, host?, supports? }` (`displayMode` is `"inline"`/`"pip"`/`"fullscreen"`) — adapt styling to the host theme and mode. |
27
+ | `useRequestDisplayMode` | Request a host-mediated layout change such as fullscreen; treat it as best-effort and keep inline rendering useful. |
27
28
  | `useOpenExternal` | Open an external link through the host (never `window.open`); the target origin must be listed in the server-level `handoff.allowedDomains`. |
28
29
  | `useSendFollowUpMessage` | Send a follow-up prompt to the model from a user interaction: `send({ prompt })` — trigger only from an explicit user action. |
29
30
  | `useAppFlow` | Manage named widget views with persisted params and back-stack state: `const flow = useAppFlow({ initialView, views })`. |