@noodleseed/agent-kit 0.19.1 → 0.20.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.19.1",
2
+ "packageVersion": "0.20.0",
3
3
  "files": [
4
4
  {
5
5
  "path": "skills/codex/SKILL.md",
6
- "sha256": "076f93b1c9e1e2ac9b5efe4ae2d80e4aed9ecb75e0da9257f327085360d802f1",
6
+ "sha256": "a62843d66b5bde2d718f394b4d78ce25a7f5808884d8e29789480bc16f198406",
7
7
  "agentTarget": "codex"
8
8
  },
9
9
  {
@@ -43,7 +43,7 @@
43
43
  },
44
44
  {
45
45
  "path": "skills/codex/references/widgets-and-apps.md",
46
- "sha256": "853125c2bd73fcb136c3237bc4aa08faeeba8b8cc0d1ef2d0a168d4e7623ec68",
46
+ "sha256": "86bfc4d43a2d1226dcbce8c41fe0b1f36562a0cc7ac7964f4ee579bd91398d34",
47
47
  "agentTarget": "codex"
48
48
  },
49
49
  {
@@ -348,7 +348,7 @@
348
348
  },
349
349
  {
350
350
  "path": "skills/claude-code/SKILL.md",
351
- "sha256": "7b487e019e82c28ec2ef1f5ffcb54f8ea15e3b62ecaf10a9de7375a692a4d1f7",
351
+ "sha256": "1fbf6a1f0649627017b0f296e9458764e345da62a2e326bb8c3238ac3d4a51ae",
352
352
  "agentTarget": "claude-code"
353
353
  },
354
354
  {
@@ -388,7 +388,7 @@
388
388
  },
389
389
  {
390
390
  "path": "skills/claude-code/references/widgets-and-apps.md",
391
- "sha256": "853125c2bd73fcb136c3237bc4aa08faeeba8b8cc0d1ef2d0a168d4e7623ec68",
391
+ "sha256": "86bfc4d43a2d1226dcbce8c41fe0b1f36562a0cc7ac7964f4ee579bd91398d34",
392
392
  "agentTarget": "claude-code"
393
393
  },
394
394
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@noodleseed/agent-kit",
3
- "version": "0.19.1",
3
+ "version": "0.20.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.19.1
4
+ version: 0.20.0
5
5
  hash: b4952708b1c38f55
6
6
  ---
7
7
 
@@ -14,6 +14,10 @@
14
14
 
15
15
  Use `tool(name, { description, input, output, fulfil, view })` for a model-visible tool that renders a widget, and the same `tool(name, { ..., visibility: ["app"] })` for an app-only helper hidden from the model. A `view` is `{ component: "name", entry: "./views/name.tsx" }` — a React component the compiler bundles at validate/deploy time.
16
16
 
17
+ ## Noodle Design default
18
+
19
+ Generated widgets, official examples, and agent-authored MCP Apps must start with `@noodleseed/one/react` primitives and semantic tokens. Custom React/CSS or third-party components remain valid when the kit lacks the required behavior or the developer explicitly requests them.
20
+
17
21
  ## React hook surface
18
22
 
19
23
  Author views as React components. `generateHelpers<ServerDefinition>()` (from `@noodleseed/one/react`) returns the typed host hooks:
@@ -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.19.1
4
+ version: 0.20.0
5
5
  hash: 39c6a606c728d164
6
6
  ---
7
7
 
@@ -14,6 +14,10 @@
14
14
 
15
15
  Use `tool(name, { description, input, output, fulfil, view })` for a model-visible tool that renders a widget, and the same `tool(name, { ..., visibility: ["app"] })` for an app-only helper hidden from the model. A `view` is `{ component: "name", entry: "./views/name.tsx" }` — a React component the compiler bundles at validate/deploy time.
16
16
 
17
+ ## Noodle Design default
18
+
19
+ Generated widgets, official examples, and agent-authored MCP Apps must start with `@noodleseed/one/react` primitives and semantic tokens. Custom React/CSS or third-party components remain valid when the kit lacks the required behavior or the developer explicitly requests them.
20
+
17
21
  ## React hook surface
18
22
 
19
23
  Author views as React components. `generateHelpers<ServerDefinition>()` (from `@noodleseed/one/react`) returns the typed host hooks: