@noodleseed/agent-kit 0.62.0 → 0.63.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 +289 -257
- package/package.json +1 -1
- package/skills/claude-code/SKILL.md +2 -1
- package/skills/claude-code/authoring-mcp-servers/SKILL.md +1 -1
- package/skills/claude-code/building-mcp-apps/SKILL.md +1 -1
- package/skills/claude-code/connecting-apis-to-mcp/SKILL.md +1 -1
- package/skills/claude-code/debugging-mcp-delivery/SKILL.md +1 -1
- package/skills/claude-code/deploying-mcp-services/SKILL.md +1 -1
- package/skills/claude-code/designing-mcp-products/SKILL.md +1 -1
- package/skills/claude-code/embedding-mcp-assistants/SKILL.md +1 -1
- package/skills/claude-code/examples/acme-tasks/src/agent-guide.ts +53 -0
- package/skills/claude-code/examples/acme-tasks/src/server.ts +2 -0
- package/skills/claude-code/examples/acme-tasks/test/server.test.ts +29 -0
- package/skills/claude-code/examples/food-ordering/src/helpers.ts +1 -0
- package/skills/claude-code/examples/food-ordering/src/views/ordering-flow.tsx +50 -47
- package/skills/claude-code/examples/food-ordering/test/ordering-flow.test.ts +3 -0
- package/skills/claude-code/executing-noodle-plans/SKILL.md +1 -1
- package/skills/claude-code/publishing-mcp-integrations/SKILL.md +1 -1
- package/skills/claude-code/references/compile-errors.md +8 -1
- package/skills/claude-code/references/product-agent-guides.md +11 -0
- package/skills/claude-code/references/widgets-and-apps.md +1 -1
- package/skills/claude-code/reporting-noodle-feedback/SKILL.md +1 -1
- package/skills/claude-code/verifying-mcp-delivery/SKILL.md +1 -1
- package/skills/claude-code/wrapping-existing-applications/SKILL.md +1 -1
- package/skills/codex/SKILL.md +2 -1
- package/skills/codex/authoring-mcp-servers/SKILL.md +1 -1
- package/skills/codex/building-mcp-apps/SKILL.md +1 -1
- package/skills/codex/connecting-apis-to-mcp/SKILL.md +1 -1
- package/skills/codex/debugging-mcp-delivery/SKILL.md +1 -1
- package/skills/codex/deploying-mcp-services/SKILL.md +1 -1
- package/skills/codex/designing-mcp-products/SKILL.md +1 -1
- package/skills/codex/embedding-mcp-assistants/SKILL.md +1 -1
- package/skills/codex/examples/acme-tasks/src/agent-guide.ts +53 -0
- package/skills/codex/examples/acme-tasks/src/server.ts +2 -0
- package/skills/codex/examples/acme-tasks/test/server.test.ts +29 -0
- package/skills/codex/examples/food-ordering/src/helpers.ts +1 -0
- package/skills/codex/examples/food-ordering/src/views/ordering-flow.tsx +50 -47
- package/skills/codex/examples/food-ordering/test/ordering-flow.test.ts +3 -0
- package/skills/codex/executing-noodle-plans/SKILL.md +1 -1
- package/skills/codex/publishing-mcp-integrations/SKILL.md +1 -1
- package/skills/codex/references/compile-errors.md +8 -1
- package/skills/codex/references/product-agent-guides.md +11 -0
- package/skills/codex/references/widgets-and-apps.md +1 -1
- package/skills/codex/reporting-noodle-feedback/SKILL.md +1 -1
- package/skills/codex/verifying-mcp-delivery/SKILL.md +1 -1
- package/skills/codex/wrapping-existing-applications/SKILL.md +1 -1
|
@@ -24,8 +24,37 @@ describe('acme-tasks example', () => {
|
|
|
24
24
|
const manifest = await app.toManifest();
|
|
25
25
|
const completeTask = manifest.tools.find((candidate) => candidate.name === 'complete_task');
|
|
26
26
|
const addTask = manifest.tools.find((candidate) => candidate.name === 'add_task');
|
|
27
|
+
const setPriority = manifest.tools.find((candidate) => candidate.name === 'set_priority');
|
|
27
28
|
|
|
28
29
|
expect(completeTask?.annotations?.confirm).toBe(true);
|
|
29
30
|
expect(addTask?.annotations).not.toHaveProperty('confirm');
|
|
31
|
+
expect(setPriority?.visibility).toEqual(['app']);
|
|
32
|
+
});
|
|
33
|
+
|
|
34
|
+
it('teaches its three product workflows through one host-neutral agent guide', async () => {
|
|
35
|
+
const manifest = await app.toManifest();
|
|
36
|
+
const guide = manifest.server.agentGuide;
|
|
37
|
+
|
|
38
|
+
expect(guide?.workflows.map((workflow) => workflow.id)).toEqual([
|
|
39
|
+
'review_tasks',
|
|
40
|
+
'capture_task',
|
|
41
|
+
'complete_task',
|
|
42
|
+
]);
|
|
43
|
+
expect(
|
|
44
|
+
guide?.workflows.flatMap((workflow) => workflow.steps.map((step) => step.capability.name)),
|
|
45
|
+
).toEqual(expect.arrayContaining(['list_today', 'set_priority', 'add_task', 'complete_task']));
|
|
46
|
+
expect(
|
|
47
|
+
guide?.workflows
|
|
48
|
+
.find((workflow) => workflow.id === 'review_tasks')
|
|
49
|
+
?.steps.map((step) => step.capability.name),
|
|
50
|
+
).toContain('set_priority');
|
|
51
|
+
expect(
|
|
52
|
+
guide?.examples.every((example) =>
|
|
53
|
+
guide.workflows.some((workflow) => workflow.id === example.workflow),
|
|
54
|
+
),
|
|
55
|
+
).toBe(true);
|
|
56
|
+
expect(guide?.boundaries.some((boundary) => boundary.toLowerCase().includes('confirm'))).toBe(
|
|
57
|
+
true,
|
|
58
|
+
);
|
|
30
59
|
});
|
|
31
60
|
});
|
|
@@ -9,6 +9,7 @@ import {
|
|
|
9
9
|
DataList,
|
|
10
10
|
Feedback,
|
|
11
11
|
Field,
|
|
12
|
+
Form,
|
|
12
13
|
HandoffButton,
|
|
13
14
|
QuantityStepper,
|
|
14
15
|
ShellNav,
|
|
@@ -340,53 +341,55 @@ export default function OrderingFlow() {
|
|
|
340
341
|
<div className="nw-body">
|
|
341
342
|
<ViewStack flow={flow}>
|
|
342
343
|
<View name="stores">
|
|
343
|
-
<
|
|
344
|
-
<
|
|
345
|
-
<
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
<
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
<
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
344
|
+
<Form onSubmit={() => void searchStores.callTool({ query, openOnly: false })}>
|
|
345
|
+
<div className="nw-field-grid">
|
|
346
|
+
<Field className="nw-field" label="Customer">
|
|
347
|
+
<input
|
|
348
|
+
className="nw-input"
|
|
349
|
+
value={customer}
|
|
350
|
+
onChange={(event) => setCustomer(event.currentTarget.value)}
|
|
351
|
+
/>
|
|
352
|
+
</Field>
|
|
353
|
+
<Field className="nw-field" label="Search">
|
|
354
|
+
<input
|
|
355
|
+
className="nw-input"
|
|
356
|
+
value={query}
|
|
357
|
+
placeholder="Noodles"
|
|
358
|
+
onChange={(event) => setQuery(event.currentTarget.value)}
|
|
359
|
+
/>
|
|
360
|
+
</Field>
|
|
361
|
+
</div>
|
|
362
|
+
<ActionBar className="nw-actions">
|
|
363
|
+
<SubmitButton
|
|
364
|
+
type="submit"
|
|
365
|
+
className="nw-button nw-button-primary"
|
|
366
|
+
disabled={!ready}
|
|
367
|
+
pending={searchStores.isPending}
|
|
368
|
+
pendingLabel="Searching..."
|
|
369
|
+
>
|
|
370
|
+
<SearchIcon />
|
|
371
|
+
Search stores
|
|
372
|
+
</SubmitButton>
|
|
373
|
+
<SubmitButton
|
|
374
|
+
type="button"
|
|
375
|
+
className="nw-button"
|
|
376
|
+
pending={readCart.isPending}
|
|
377
|
+
pendingLabel="Loading..."
|
|
378
|
+
onClick={async () => {
|
|
379
|
+
const result = await readCart.callTool({});
|
|
380
|
+
const stored = structured<{
|
|
381
|
+
readonly value?: CartState;
|
|
382
|
+
readonly revision?: number;
|
|
383
|
+
}>(result);
|
|
384
|
+
if (stored?.value?.lines) setCart(stored.value);
|
|
385
|
+
setRevision(stored?.revision ?? revision);
|
|
386
|
+
}}
|
|
387
|
+
>
|
|
388
|
+
<RefreshIcon />
|
|
389
|
+
Load cart
|
|
390
|
+
</SubmitButton>
|
|
391
|
+
</ActionBar>
|
|
392
|
+
</Form>
|
|
390
393
|
<AsyncBoundary
|
|
391
394
|
state={searchStores}
|
|
392
395
|
isEmpty={displayedStores.length === 0}
|
|
@@ -38,6 +38,7 @@ vi.mock('../src/helpers.js', async () => {
|
|
|
38
38
|
Feedback: ({ children, status }: { readonly children?: unknown; readonly status?: string }) =>
|
|
39
39
|
createElement('div', { 'data-status': status }, children),
|
|
40
40
|
Field: container,
|
|
41
|
+
Form: ({ children }: { readonly children?: unknown }) => createElement('form', null, children),
|
|
41
42
|
HandoffButton: button,
|
|
42
43
|
QuantityStepper: container,
|
|
43
44
|
ShellNav: container,
|
|
@@ -71,6 +72,7 @@ vi.mock('../src/helpers.js', async () => {
|
|
|
71
72
|
useUpdateModelContext: () => () => Promise.resolve(),
|
|
72
73
|
useViewState: <T>(_key: string, initial: T) => [initial, () => undefined] as const,
|
|
73
74
|
useWidgetLifecycle: () => () => Promise.resolve(),
|
|
75
|
+
useWidgetReady: () => true,
|
|
74
76
|
View: container,
|
|
75
77
|
ViewStack: container,
|
|
76
78
|
};
|
|
@@ -183,5 +185,6 @@ describe('food-ordering invoking result states', () => {
|
|
|
183
185
|
});
|
|
184
186
|
expect(text).toContain('Search stores');
|
|
185
187
|
expect(text).toContain('Harbor Noodles');
|
|
188
|
+
expect(document.querySelector('form')).not.toBeNull();
|
|
186
189
|
});
|
|
187
190
|
});
|
|
@@ -3,7 +3,7 @@ name: executing-noodle-plans
|
|
|
3
3
|
description: "Use when the user asks to execute an approved, decision-complete implementation plan for a Noodle Seed project task by task with test-first changes, review, recovery, and final verification."
|
|
4
4
|
---
|
|
5
5
|
|
|
6
|
-
<!-- noodle-skill version:0.
|
|
6
|
+
<!-- noodle-skill version:0.63.0 hash:6a9f132ddb79352e -->
|
|
7
7
|
|
|
8
8
|
# Execute a Noodle Seed implementation plan
|
|
9
9
|
|
|
@@ -3,7 +3,7 @@ name: publishing-mcp-integrations
|
|
|
3
3
|
description: "Use when preparing, reviewing, or submitting a Noodle Seed MCP integration to a host or app directory."
|
|
4
4
|
---
|
|
5
5
|
|
|
6
|
-
<!-- noodle-skill version:0.
|
|
6
|
+
<!-- noodle-skill version:0.63.0 hash:efffbf82007f935d -->
|
|
7
7
|
|
|
8
8
|
# publishing-mcp-integrations
|
|
9
9
|
|
|
@@ -73,4 +73,11 @@ Run `noodle validate` (add `--json` for the machine-readable envelope, `--fix-pr
|
|
|
73
73
|
| `customer_endpoint_policy_conflict` | Give every reachable declaration of this endpoint key one identical policy, or rename keys whose allowed origins differ. |
|
|
74
74
|
| `customer_endpoint_routing_inconsistent` | Regenerate the connector catalog so every action route includes all of its ordinary customer endpoint dependencies. |
|
|
75
75
|
| `unused_connector_alias` | A declared connector alias is never called; remove the unused `use` entry or wire it into a tool. |
|
|
76
|
-
| `arg_mismatch` | A connector call is missing or adds arguments; match the operation signature under `expected`/`got`. |
|
|
76
|
+
| `arg_mismatch` | A connector call is missing or adds arguments; match the operation signature under `expected`/`got`. |
|
|
77
|
+
| `agent_guide_invalid` | Correct the product guide shape in `server(..., { agentGuide })` using non-empty bounded prose and symbolic references. |
|
|
78
|
+
| `agent_guide_duplicate_workflow` | Give every `agentGuide.workflows` entry a unique lowercase underscore id. |
|
|
79
|
+
| `agent_guide_duplicate_example` | Keep each agent-guide prompt and workflow pairing unique. |
|
|
80
|
+
| `agent_guide_example_workflow_missing` | Point the example workflow at an existing `agentGuide.workflows` id. |
|
|
81
|
+
| `agent_guide_capability_missing` | Correct the capability kind/name in `server(..., { agentGuide })` to a declared MCP capability. |
|
|
82
|
+
| `agent_guide_capability_kind` | Correct the capability kind/name in `server(..., { agentGuide })` to match its declared MCP capability. |
|
|
83
|
+
| `app_package_sensitive_content` | Remove the credential value; reference managed config by name only. |
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# Product agent guides
|
|
2
|
+
|
|
3
|
+
Author one optional `agentGuide` in `server(name, { agentGuide, ... }, definitions)` when an agent needs product-level workflow guidance beyond individual MCP capability descriptions. It is host-neutral and TypeScript-only.
|
|
4
|
+
|
|
5
|
+
The guide contains `description`, `useWhen`, named `workflows`, optional `boundaries`, and optional example prompt-to-workflow mappings. Each workflow step references a declared `tool`, `resource`, or `prompt` by symbolic `{ kind, name }`; do not duplicate schemas, connector bindings, URLs, credentials, or raw runtime data.
|
|
6
|
+
|
|
7
|
+
Keep identifiers within 200 characters and prose within 4,000 characters. A guide has at most 32 `useWhen` entries, 32 workflows, 64 steps per workflow, 64 boundaries, and 64 examples. The compiler rejects an App Package whose bounded derived MCP surface would still exceed its artifact ceiling.
|
|
8
|
+
|
|
9
|
+
Use `server.instructions` for a concise live MCP-session primer. Noodle-owned workflow skills teach how to build and operate Noodle projects; a product guide teaches agents how to use this one deployed product. Compilation validates references and produces an App Package sibling while the RuntimeArtifact deliberately omits guide prose.
|
|
10
|
+
|
|
11
|
+
Recover `agent_guide_*` errors by correcting the guide shape, workflow IDs, and capability kind/name. Remove any credential-shaped value: managed config is referenced by name only.
|
|
@@ -48,7 +48,7 @@ Author views as React components. `generateHelpers<ServerDefinition>()` (from `@
|
|
|
48
48
|
| `useAppFlow` | Manage named widget views with persisted params and back-stack state: `const flow = useAppFlow({ initialView, views })`. |
|
|
49
49
|
| `useHandoff` | Open server-created HTTP(S) handoff URLs through the host with status/error state; domain policy still comes from `handoff.allowedDomains`. |
|
|
50
50
|
|
|
51
|
-
Bind interactive elements to tools (`useCallTool("place_order")`), keep bridge-backed controls disabled until `useWidgetReady()` is true, drive named views with `useAppFlow(...)`, open server-created handoffs with `useHandoff()`, and publish one compact, safe, cohesive snapshot with `useUpdateModelContext()` when `useLayout().supports?.modelContext` is true. Generated form workflows use the portable `<Form onSubmit={
|
|
51
|
+
Bind interactive elements to tools (`useCallTool("place_order")`), keep bridge-backed controls disabled until `useWidgetReady()` is true, drive named views with `useAppFlow(...)`, open server-created handoffs with `useHandoff()`, and publish one compact, safe, cohesive snapshot with `useUpdateModelContext()` when `useLayout().supports?.modelContext` is true. Generated form workflows use the portable `<Form onSubmit={() => void submit()}>` component with a submit button; never use an intrinsic React `<form>` or add browser-navigation `action`, `method`, or `target` attributes. A sandbox can block native activation before React receives `onSubmit`, so `preventDefault()` inside an intrinsic handler is not a portability fix. Standalone actions use an explicit `type="button"` and call the tool from their click handler. In every case the widget calls the standard MCP Apps tool bridge itself — never rely on a host to translate native form submission into a tool call, and never branch on a host name. Every model-context or lifecycle publication replaces the prior snapshot rather than merging fields, so include everything the model should still know. Calling `useWidgetLifecycle("name")` automatically publishes `mounted`, listens for host `cancelled` and `dismissed`, and returns a publisher for author-owned `submitted` or app-specific milestones; `mounted` is not proof that the host presented pixels. Both hooks use the standard MCP Apps model-context channel, not a host-specific API. These updates affect future model context but do not start a model turn. When an explicit user submit/cancel should receive an immediate reply, also call `useSendFollowUpMessage()` from that user action. `data-llm` may remain a DOM inspection hint, but it is not the bidirectional model-state contract. Use `createViewStore("key", initial)` for multi-component widget state such as carts, filters, or drafts. Use the domain-neutral React components from `@noodleseed/one/react` (`AppShell`, `ShellNav`, `ViewStack`, `AsyncBoundary`, `ActionBar`, `Form`, `Field`, `QuantityStepper`, `ChoiceGroup`, `HandoffButton`, and related state components) for rich apps before inventing local shell/control scaffolding. Adapt to the host with `useLayout()` — style for both `theme` values, and keep the inline `displayMode` compact (content fits the space; no internal scrolling). Trigger `useOpenExternal()`, `useHandoff()`, and `useSendFollowUpMessage()` only from explicit user actions. A raw `html` escape hatch exists for self-contained widgets (declarative `data-bind`/`data-action`; no inline `<script>`); use a `data-action` button with `type="button"` instead of native form submission.
|
|
52
52
|
|
|
53
53
|
## Worked widget recipe
|
|
54
54
|
|
|
@@ -3,7 +3,7 @@ name: reporting-noodle-feedback
|
|
|
3
3
|
description: "Use when a Noodle Seed bug, misleading instruction, missing capability, or concrete product improvement should be proposed to the user."
|
|
4
4
|
---
|
|
5
5
|
|
|
6
|
-
<!-- noodle-skill version:0.
|
|
6
|
+
<!-- noodle-skill version:0.63.0 hash:0f404109f4845683 -->
|
|
7
7
|
|
|
8
8
|
# reporting-noodle-feedback
|
|
9
9
|
|
|
@@ -3,7 +3,7 @@ name: verifying-mcp-delivery
|
|
|
3
3
|
description: "Use when proving a Noodle Seed MCP project works at a named compile, local, connector, App, host, deployment, or production evidence level."
|
|
4
4
|
---
|
|
5
5
|
|
|
6
|
-
<!-- noodle-skill version:0.
|
|
6
|
+
<!-- noodle-skill version:0.63.0 hash:6ef6ef551e26b78e -->
|
|
7
7
|
|
|
8
8
|
# verifying-mcp-delivery
|
|
9
9
|
|
|
@@ -3,7 +3,7 @@ name: wrapping-existing-applications
|
|
|
3
3
|
description: "Use when an existing application has no stable usable API and needs a read-only, identity-first Noodle Seed integration plan before implementation."
|
|
4
4
|
---
|
|
5
5
|
|
|
6
|
-
<!-- noodle-skill version:0.
|
|
6
|
+
<!-- noodle-skill version:0.63.0 hash:eccc3c158dcafba8 -->
|
|
7
7
|
|
|
8
8
|
# wrapping-existing-applications
|
|
9
9
|
|