@noodleseed/one 0.132.2 → 0.133.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/dist/bin.js +0 -0
- package/node_modules/@noodle-borg/agent-kit/dist/generated/example-files.js +3 -3
- package/node_modules/@noodle-borg/agent-kit/dist/skill-authoring-refs.js +1 -1
- package/node_modules/@noodle-borg/agent-kit/package.json +1 -1
- package/node_modules/@noodle-borg/authoring/dist/assistant.d.ts +2 -2
- package/node_modules/@noodle-borg/authoring/dist/assistant.js +5 -2
- package/node_modules/@noodle-borg/authoring/dist/connectors.d.ts +3 -1
- package/node_modules/@noodle-borg/authoring/dist/connectors.js +5 -1
- package/node_modules/@noodle-borg/authoring/dist/server.d.ts +2 -1
- package/node_modules/@noodle-borg/authoring/dist/server.js +4 -1
- package/node_modules/@noodle-borg/compiler/dist/artifact/assemble.js +1 -1
- package/node_modules/@noodle-borg/compiler/dist/artifact/config.js +25 -20
- package/node_modules/@noodle-borg/compiler/dist/manifest/schema.d.ts +12 -12
- package/node_modules/@noodle-borg/compiler/dist/manifest/schema.js +12 -8
- package/node_modules/@noodle-borg/connector-defs/dist/compile-http.js +2 -0
- package/node_modules/@noodle-borg/connector-defs/dist/schema.d.ts +3 -3
- package/node_modules/@noodle-borg/connector-defs/dist/schema.js +6 -1
- package/node_modules/@noodle-borg/connector-http/dist/http-connector.js +31 -8
- package/node_modules/@noodle-borg/runtime/dist/index.d.ts +1 -0
- package/node_modules/@noodle-borg/runtime/dist/index.js +1 -0
- package/node_modules/@noodle-borg/runtime/dist/managed-origins.d.ts +11 -0
- package/node_modules/@noodle-borg/runtime/dist/managed-origins.js +105 -0
- package/node_modules/@noodle-borg/service/dist/registry-compile.js +12 -12
- package/node_modules/@noodle-borg/service/package.json +1 -1
- package/package.json +2 -2
package/dist/bin.js
CHANGED
|
File without changes
|
|
@@ -52,11 +52,11 @@ export const BUNDLED_EXAMPLE_FILES = [
|
|
|
52
52
|
{ relPath: "examples/acme-tasks/src/views/widget-style.css", content: ":root {\n color-scheme: light dark;\n font-family:\n Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, \"Segoe UI\", sans-serif;\n --nw-bg: #ffffff;\n --nw-surface: #f7f5ff;\n --nw-text: #1c1830;\n --nw-muted: #635d80;\n --nw-border: #e2ddf5;\n --nw-accent: #7c3aed;\n --nw-accent-strong: #6d28d9;\n --nw-accent-soft: #efe9ff;\n --nw-high: #dc2626;\n --nw-medium: #b45309;\n --nw-low: #2563eb;\n --nw-radius: 10px;\n --nw-shadow: 0 18px 50px rgb(30 20 60 / 12%);\n}\n\n.dark,\n[data-theme=\"dark\"] {\n --nw-bg: #161228;\n --nw-surface: #1d1735;\n --nw-text: #f2eeff;\n --nw-muted: #a99fce;\n --nw-border: #342a54;\n --nw-accent: #a78bfa;\n --nw-accent-strong: #8b5cf6;\n --nw-accent-soft: #2a2148;\n --nw-high: #f87171;\n --nw-medium: #fbbf24;\n --nw-low: #60a5fa;\n --nw-shadow: 0 18px 50px rgb(0 0 0 / 32%);\n}\n\n* {\n box-sizing: border-box;\n}\n\nbody {\n margin: 0;\n background: var(--nw-bg);\n color: var(--nw-text);\n}\n\nbutton,\ninput,\nselect {\n font: inherit;\n}\n\n.nw-shell {\n min-height: 100vh;\n padding: 14px;\n background: var(--nw-bg);\n color: var(--nw-text);\n}\n\n.nw-card {\n max-width: 620px;\n margin: 0 auto;\n background: var(--nw-surface);\n border: 1px solid var(--nw-border);\n border-radius: var(--nw-radius);\n box-shadow: var(--nw-shadow);\n overflow: hidden;\n}\n\n.nw-header {\n display: flex;\n align-items: center;\n gap: 12px;\n padding: 16px;\n border-bottom: 1px solid var(--nw-border);\n}\n\n.nw-icon svg {\n width: 24px;\n height: 24px;\n fill: none;\n stroke: var(--nw-accent);\n stroke-width: 2;\n stroke-linecap: round;\n stroke-linejoin: round;\n}\n\n.nw-title-block {\n flex: 1;\n min-width: 0;\n}\n\n.nw-title {\n margin: 0;\n font-size: 17px;\n font-weight: 700;\n}\n\n.nw-subtitle {\n margin: 2px 0 0;\n font-size: 13px;\n color: var(--nw-muted);\n}\n\n.nw-chip {\n padding: 4px 10px;\n border-radius: 999px;\n background: var(--nw-accent-soft);\n color: var(--nw-accent-strong);\n font-size: 12px;\n font-weight: 600;\n}\n\n.nw-capture {\n display: flex;\n gap: 8px;\n padding: 14px 16px 4px;\n}\n\n.nw-input {\n flex: 1;\n padding: 9px 12px;\n border: 1px solid var(--nw-border);\n border-radius: 10px;\n background: var(--nw-bg);\n color: var(--nw-text);\n}\n\n.nw-button {\n display: inline-flex;\n align-items: center;\n gap: 6px;\n padding: 9px 14px;\n border: 1px solid var(--nw-border);\n border-radius: 10px;\n background: var(--nw-bg);\n color: var(--nw-text);\n cursor: pointer;\n}\n\n.nw-button-primary {\n background: var(--nw-accent);\n border-color: var(--nw-accent);\n color: #ffffff;\n font-weight: 600;\n}\n\n.nw-button-primary:disabled {\n opacity: 0.6;\n cursor: default;\n}\n\n.nw-list {\n list-style: none;\n margin: 0;\n padding: 8px 16px 4px;\n display: flex;\n flex-direction: column;\n gap: 8px;\n}\n\n.nw-task {\n display: flex;\n align-items: center;\n gap: 10px;\n padding: 10px 12px;\n border: 1px solid var(--nw-border);\n border-radius: 12px;\n background: var(--nw-bg);\n}\n\n.nw-task-title {\n flex: 1;\n min-width: 0;\n}\n\n.nw-task-done {\n opacity: 0.55;\n}\n\n.nw-task-done .nw-task-title {\n text-decoration: line-through;\n}\n\n.nw-check {\n width: 22px;\n height: 22px;\n border: 1.5px solid var(--nw-border);\n border-radius: 999px;\n background: transparent;\n color: #ffffff;\n cursor: pointer;\n flex: none;\n}\n\n.nw-check-on {\n background: var(--nw-accent);\n border-color: var(--nw-accent);\n}\n\n.nw-priority {\n padding: 5px 8px;\n border: 1px solid var(--nw-border);\n border-radius: 8px;\n background: var(--nw-bg);\n color: var(--nw-text);\n font-size: 12px;\n font-weight: 600;\n}\n\n.nw-priority-high {\n color: var(--nw-high);\n}\n\n.nw-priority-medium {\n color: var(--nw-medium);\n}\n\n.nw-priority-low {\n color: var(--nw-low);\n}\n\n.nw-note {\n margin: 0;\n padding: 8px 16px 16px;\n font-size: 12px;\n color: var(--nw-muted);\n}\n" },
|
|
53
53
|
{ relPath: "examples/acme-tasks/test/server.test.ts", content: "import { describe, expect, it } from 'vitest';\nimport app from '../src/server.js';\n\ndescribe('acme-tasks example', () => {\n it('exports a Noodle server definition', () => {\n expect(typeof app.toManifest).toBe('function');\n });\n\n it('exposes a tool for each of the top-3 prioritized flows', async () => {\n // Capture → add_task, Prioritize → list_today (+ set_priority helper), Complete → complete_task.\n const text = JSON.stringify(await app.toManifest());\n expect(text).toContain('add_task');\n expect(text).toContain('list_today');\n expect(text).toContain('complete_task');\n expect(text).toContain('set_priority');\n });\n\n it('seeds today’s list highest-priority first', async () => {\n const text = JSON.stringify(await app.toManifest());\n expect(text).toMatch(/\"tasks\":\\[\\{\"id\":\"email_vendor\".*\"priority\":\"high\"/);\n });\n\n it('opts the conversational completion action into runtime confirmation', async () => {\n const manifest = await app.toManifest();\n const completeTask = manifest.tools.find((candidate) => candidate.name === 'complete_task');\n const addTask = manifest.tools.find((candidate) => candidate.name === 'add_task');\n const setPriority = manifest.tools.find((candidate) => candidate.name === 'set_priority');\n\n expect(completeTask?.annotations?.confirm).toBe(true);\n expect(addTask?.annotations).not.toHaveProperty('confirm');\n expect(setPriority?.visibility).toEqual(['app']);\n });\n\n it('teaches its three product workflows through one host-neutral agent guide', async () => {\n const manifest = await app.toManifest();\n const guide = manifest.server.agentGuide;\n\n expect(guide?.workflows.map((workflow) => workflow.id)).toEqual([\n 'review_tasks',\n 'capture_task',\n 'complete_task',\n ]);\n expect(\n guide?.workflows.flatMap((workflow) => workflow.steps.map((step) => step.capability.name)),\n ).toEqual(expect.arrayContaining(['list_today', 'set_priority', 'add_task', 'complete_task']));\n expect(\n guide?.workflows\n .find((workflow) => workflow.id === 'review_tasks')\n ?.steps.map((step) => step.capability.name),\n ).toContain('set_priority');\n expect(\n guide?.examples.every((example) =>\n guide.workflows.some((workflow) => workflow.id === example.workflow),\n ),\n ).toBe(true);\n expect(guide?.boundaries.some((boundary) => boundary.toLowerCase().includes('confirm'))).toBe(\n true,\n );\n });\n});\n" },
|
|
54
54
|
{ relPath: "examples/acme-tasks/vitest.config.ts", content: "import { defineConfig } from 'vitest/config';\n\n// Local config so `npm test` (vitest run) discovers this example's own tests instead of inheriting a\n// parent monorepo config's include globs.\nexport default defineConfig({\n test: { include: ['test/**/*.test.ts'] },\n});\n" },
|
|
55
|
-
{ relPath: "examples/customer-auth/README.md", content: "# Customer Auth - OIDC identity and customer-routed APIs\n\nThis curated example owns the customer/end-user authentication capability slot. It proves that a SaaS app\ncan protect an MCP endpoint with direct OIDC, retain role/scope-based tool authorization, and route ordinary\nreads and confirmed actions to the API origin selected by the verified customer's identity provider.\n\nIt also owns the customer-branded embedded-assistant presentation showcase. Direct MCP calls obtain the\nroute from the verified OIDC claim; embedded sessions obtain it from the authenticated customer backend's\nsession exchange. Both paths keep the URL outside tool/model/browser-visible state.\n\nThe public developer entrypoint is [`src/server.ts`](src/server.ts). It exposes a deliberately small MCP\nsurface for organization discovery and app lifecycle operations:\n\n- `list_my_organizations` lists the NoodleSeed.com organizations the signed-in customer belongs to (no\n arguments — the org set comes from the verified customer session).\n- `list_org_apps` lists apps for one of those organizations through that tenant's API. It is visible and\n callable only when the verified customer has the `org_apps:read` scope and either the `org_admin` or\n `org_member` role.\n- `archive_org_app` archives one app only after exact runtime confirmation. It requires the\n `org_apps:write` scope and `org_admin` role.\n\nThe tools chain: `list_my_organizations` surfaces the `org_id`s the customer can act on,\n`list_org_apps` takes one of those ids, and `archive_org_app` accepts the selected app id. Tool code remains\nindependent of the selected origin.\n\nThe server also declares one typed `agentGuide` for those product workflows. The deployed embedded assistant\nuses it automatically: each turn keeps only complete workflows supported by the verified session's roles,\nscopes, and model-visible tools. An organization member can receive organization/app review guidance, while\nonly an administrator with `org_apps:write` receives the complete archive workflow and its confirmation\nboundary. The guide stays server-side, so the Web Component, React renderer, headless hook, and public client\nneed no new option and receive no raw skill content. See\n[using a product guide at runtime](https://docs.noodleseed.dev/docs/guides/product-agent-guides#use-the-guide-at-runtime)\nfor the public behavior guide.\n\nA skill-aware external agent connected directly to the same tenant MCP URL receives the same\ncomplete-workflow filtering through the modern draft MCP Skills extension. Members and administrators may\ntherefore receive different `SKILL.md` and MCP-surface bytes, each with matching caller-specific digests.\nThis reuses the configured customer OAuth boundary; it does not require a second skill installation or auth\nsystem, and it is not a claim that every external host currently implements the draft extension. The\nsame [runtime guide](https://docs.noodleseed.dev/docs/guides/product-agent-guides#use-the-guide-at-runtime)\nexplains this preview boundary.\n\n## Declare the customer endpoint\n\n`customerEndpoint` names one private routing authority and bounds the origins an IdP may select:\n\n```ts\nconst customerApi = customerEndpoint('customer_api', {\n allowedHttpsHostSuffixes: ['api.noodleseed.dev'],\n});\n```\n\nUse either non-empty `allowedHttpsHostSuffixes` or non-empty `allowedHttpsOrigins`, never both. Exact-origin\npolicies may include a non-default port. Suffix policies match only the exact hostname or dot-boundary\nsubdomains on port 443. A routed connector must not add `allowedOrigins`; its endpoint policy is the egress\nallowlist.\n\nThe connector uses that declaration as its normal base URL. Its token endpoint remains a fixed, independently\nvalidated HTTPS URL:\n\n```ts\nconst api = connector('noodleseed_app_api')\n .version('1.0.0')\n .http({\n baseUrl: customerApi,\n auth: {\n kind: 'delegatedTokenExchange',\n tokenUrl: 'https://id.noodleseed.dev/oauth/token',\n clientId: variable('CUSTOMER_API_CLIENT_ID'),\n clientSecret: secret('CUSTOMER_API_CLIENT_SECRET'),\n scopes: ['organizations:read', 'org_apps:read', 'org_apps:write'],\n audience: 'noodleseed-customer-api',\n },\n operations: {\n // read and action operations...\n },\n });\n```\n\n`delegatedTokenExchange` consumes a verified customer caller; an MCP access mode does not create one. The\nserver must declare `customerAuth.*(...)` or `embeddedAssistant(...)` so Noodle Seed can establish the caller\nsubject, issuer, and audience. Otherwise `noodle validate`, `noodle auth doctor`, and deploy fail early with\n`delegated_token_exchange_identity_required`, before secrets are resolved or any connector egress. A\nsuccessful local Devtools exchange is not evidence that the hosted server has an identity source. Devtools\nsupplies a separate, loopback-only local identity context that is never accepted by hosted deployment.\n\nAt both connector and operation level, auth must be omitted or use `delegatedTokenExchange`. The compiler\nvalidates the concrete connector definition emitted from TypeScript, including connector defaults and\noperation overrides, and reports the exact failing auth path and kind. Do not keep a bearer, API-key,\nclient-credentials, or managed-provider fallback for local mode; use operation fakes while leaving auth\ndeclarative.\n\n## Map the endpoint from verified OIDC\n\nThe IdP claim contains the complete base URL, including an optional base path. Routing is separate from the\npublic `${user}` expression scope:\n\n```ts\nauth: customerAuth.oidc({\n issuer: 'https://id.noodleseed.dev',\n audience: 'noodleseed-customer-auth-prod',\n claims: {\n id: 'sub',\n email: 'email',\n name: 'name',\n orgs: 'permissions.orgs',\n roles: 'permissions.roles',\n scopes: 'permissions.scopes',\n },\n routing: {\n endpoints: {\n customer_api: { claim: 'tenant.api_base_url' },\n },\n },\n}),\n```\n\nFor federated OIDC, put the same endpoint map on every issuer. Claim paths may differ, but each issuer must\nmap every endpoint the app uses:\n\n```ts\nauth: customerAuth.federatedOidc({\n issuers: [\n {\n issuer: 'https://id.customer-a.com',\n audience: 'noodleseed-customer-auth-prod',\n routing: {\n endpoints: {\n customer_api: { claim: 'tenant.api_base_url' },\n },\n },\n },\n {\n issuer: 'https://login.customer-b.com',\n audience: 'noodleseed-customer-auth-prod',\n routing: {\n endpoints: {\n customer_api: { claim: 'organization.routes.customer_api' },\n },\n },\n },\n ],\n}),\n```\n\nAt runtime, Noodle Seed validates the configured stable audience, associates the caller with the exact\ntransport-derived MCP resource, projects the route into private request state, applies its policy, and\nfreezes it for the call. Missing, malformed, or\ndisallowed claims return `connector_route_unavailable` before credential lookup or connector egress.\nResolved URLs never enter artifacts, `${user}`, logs, model output, widgets, public confirmation review,\nbroker cache keys, or delegated exchange assertions.\n\nRouted reads work in tools, including declared nested calls. Routed actions require exact\n`annotations.confirm: true`; otherwise they fail with `customer_endpoint_action_unsupported`. Routed\nresources, prompts, and ambient context fail with `customer_endpoint_surface_unsupported`.\n\nThe flagship's routed action uses the normal TypeScript action helper:\n\n```ts\ntool('archive_org_app', {\n authorization: {\n requiredScopes: ['org_apps:write'],\n allowedRoles: ['org_admin'],\n },\n annotations: annotations.openAction({ destructive: false, confirm: true }),\n // input, output, and the normal connectors.app_api.archiveOrgApp(...) call...\n});\n```\n\nThe flagship also opts into the current stateless hosted MCP path:\n\n```ts\ninteractions: {\n confirmationFallback: 'host',\n},\n```\n\nA bidirectional client that negotiated form elicitation can complete the standard confirmation exchange\ninstead. The explicit host fallback trusts the MCP host to have collected native write approval before the\ntool call reaches Noodle Seed; it is never inferred from client identity and does not replace auth, policy,\nor accurate action/destructive annotations. Omit the fallback when connected hosts are not trusted to\nprovide that approval. If neither standard confirmation nor the fallback is available, the action fails\nclosed with `interaction_unavailable`.\n\nPreparation stores only sorted route `{ key, fingerprint }` bindings in its private server-held\ncontinuation; the public review exposes none of them. Acceptance re-resolves the current request route and\nreturns `invalid_continuation` if it is missing or changed, before policy, credentials, or egress. A match\nreuses the current frozen snapshot for the action and all nested or later reads.\n\nThe application developer owns the direct/federated authorization server. It must publish its path-inserted\nRFC 8414 document as direct HTTP 200 JSON with exact issuer and HTTPS authorization/token/registration/JWKS\nendpoints, authorization-code and refresh grants, PKCE S256, public-client auth method `none`, RFC 8707\nresource handling, and public signing keys. It validates each exact MCP resource on authorize, code exchange,\nand refresh, then maps approved versions of this app/environment to `noodleseed-customer-auth-prod`. Other\napps and environments use distinct audiences.\n\nRun `noodle auth doctor src/server.ts` before sharing. Its bounded, read-only probes never register a client.\nAdding the embedded assistant does not choose or rewrite MCP customer auth. Its authenticated backend may\nbind `routing.endpoints.customer_api` during assistant-session exchange from server-owned membership data;\ndirect MCP requests continue to resolve the same endpoint from the configured verified OIDC claim.\n\n## Per-tool authorization remains independent\n\nThe mapped `roles` and `scopes` paths are read only after OIDC verification. The restricted tool declares its\nrule beside the rest of its public contract:\n\n```ts\ntool('list_org_apps', {\n authorization: {\n requiredScopes: ['org_apps:read'],\n allowedRoles: ['org_admin', 'org_member'],\n },\n // input, output, and fulfilment...\n});\n```\n\nEvery required scope must be present and at least one allowed role must match. When both lists are declared,\nboth conditions apply. Route availability never changes `tools/list`: discovery remains based only on\nroles/scopes. A restricted tool is omitted for an ineligible customer and a guessed direct call still fails\nclosed.\n\nTool code calls the connector normally:\n\n```ts\nfulfil({ input, connectors }) {\n const apps = connectors.app_api.listOrgApps({\n org_id: input.org_id,\n skip: input.skip,\n limit: input.limit,\n });\n\n return { result: apps.result };\n}\n```\n\nThe broker exchanges a short-lived, platform-signed assertion at the fixed token endpoint and caches the\nresult by caller, connector, scopes, and a route fingerprint. The assertion carries only the route key and\nfingerprint, never the URL. The MCP access token is never forwarded to the customer API. The exchange wire\ncontract lives in docs/spec/connectors.md.\n\nFirebase and Microsoft remain supported managed adapters; their provider-specific contracts and tests live\nin docs/spec/auth-and-policy.md and the SharePoint flagship.\n\n## Supabase direct-OIDC access-token hook\n\nDynamic Client Registration lets any OAuth client register, so the presence of `client_id` is not approval.\nKeep an operator-controlled client-to-audience map and rewrite `aud` only for an exact mapped client. For a\ndynamically registered client, review its generated client ID, name, and exact redirect URIs in the consent\nflow before adding the mapping. Each new registration needs its own row; never approve by name or prefix.\n\nReplace `<approved-oauth-client-id>` with the reviewed client ID and `<stable-mcp-audience>` with the exact\nvalue configured in `customerAuth.oidc`:\n\n```sql\ncreate table if not exists public.mcp_oauth_client_audiences (\n client_id text primary key check (btrim(client_id) <> ''),\n audience text not null check (btrim(audience) <> '')\n);\n\nrevoke all on table public.mcp_oauth_client_audiences from authenticated, anon, public;\ngrant usage on schema public to supabase_auth_admin;\ngrant select on table public.mcp_oauth_client_audiences to supabase_auth_admin;\n\ninsert into public.mcp_oauth_client_audiences (client_id, audience)\nvalues ('<approved-oauth-client-id>', '<stable-mcp-audience>')\non conflict (client_id) do update set audience = excluded.audience;\n\ncreate or replace function public.mcp_access_token_hook(event jsonb)\nreturns jsonb\nlanguage plpgsql\nstable\nas $$\ndeclare\n claims jsonb := coalesce(event->'claims', '{}'::jsonb);\n oauth_client_id text := nullif(btrim(claims->>'client_id'), '');\n mapped_audience text;\nbegin\n if oauth_client_id is not null then\n select mapping.audience\n into mapped_audience\n from public.mcp_oauth_client_audiences as mapping\n where mapping.client_id = oauth_client_id;\n end if;\n\n if mapped_audience is not null then\n claims := jsonb_set(\n claims,\n '{aud}',\n to_jsonb(mapped_audience),\n true\n );\n end if;\n\n return jsonb_build_object('claims', claims);\nend;\n$$;\n\ngrant execute on function public.mcp_access_token_hook(jsonb) to supabase_auth_admin;\nrevoke execute on function public.mcp_access_token_hook(jsonb) from authenticated, anon, public;\n```\n\n| Token source | Mapping | Resulting `aud` |\n| --- | --- | --- |\n| Approved OAuth client | Exact client row | Mapped stable MCP audience |\n| Unrelated or unknown OAuth client | No row | Original Supabase audience |\n| Browser session | No `client_id` | Original Supabase audience |\n\nSelect this function under Supabase Auth Hooks before completing the interactive verification below.\n\n## Validate\n\n```bash\nnoodle validate examples/customer-auth/src/server.ts --json\nnoodle auth doctor examples/customer-auth/src/server.ts --json\nnoodle test examples/customer-auth/src/server.ts --json\n```\n\nThe doctor proves metadata and JWKS readiness without registering a client. For this protected app,\n`noodle test` proves the anonymous 401 plus exact protected-resource metadata boundary and reports\n`interactiveRequired: true`; neither command proves token issuance or audience verification.\n\nAgainst a deployed customer-protected environment, set a short-lived real customer token only in\n`NOODLE_CUSTOMER_TOKEN` and add `--live --org <org> --app <app> --env <env>`. The live doctor performs\ncredential exchanges without invoking any business tool. Add `--version 1` when testing a pinned version;\nthe reported customer resource must match that versioned MCP endpoint.\n\n## Run locally\n\n```bash\nnoodle devtools examples/customer-auth/src/server.ts\n```\n\nComplete sign-in in Devtools and load the tool list. That authenticated request is the local proof that DCR,\nPKCE, token issuance, issuer/signature verification, the stable audience, and exact-resource binding work\ntogether. Invoke a representative safe read when the configured customer API is available.\n\n### Test delegated exchange locally\n\nLocal customer OIDC sign-in and delegated-exchange assertion trust are two distinct boundaries. OIDC proves\nthe caller to the local MCP server; Devtools uses a separate local issuer only for the RFC 8693 assertion\nsent to the downstream token endpoint. This is the canonical local path and requires no `server.ts` change,\nflag, environment variable, or config surface.\n\n1. Configure the OIDC authorization server for the exact loopback callback and RFC 8707 resource. Do not add\n the Devtools assertion key to OIDC issuer metadata or change its signing keys.\n2. Start Devtools, complete customer sign-in, and copy the displayed `{ issuer, jwks }` from **Local delegated exchange**.\n3. Pin both values only in the customer-owned development RFC 8693 token endpoint.\n4. Restrict that trust to development client credentials, audience, API, and data.\n5. Invoke the delegated `list_org_apps` tool until its binding reads **Exchange verified**.\n6. Use hosted preview or `noodle auth doctor --live` to prove the production platform issuer.\n\n**Never trust the Devtools issuer in production: anyone holding the local private key could impersonate a customer.**\n\n## Configuration\n\nThe embedded assistant uses a customer-supplied OpenAI Chat Completions-compatible endpoint. Configure its\nmanaged values at the Noodle deployment environment; none of these values belongs in the customer web\napplication environment, and the API key never reaches the browser:\n\nThe assistant session carries a verified user, tenant, deployment, roles, and scopes. For this flagship's\nrouted tools, the embedding backend resolves the signed-in user's cluster from server-owned membership data\nand passes `routing: { endpoints: { customer_api: cluster.apiBaseUrl } }` to\n`createAssistantSession`. Noodle validates and privately stores that route; it is not returned to the\nbrowser. Do not copy the route into page context, session claims, tool input, or model instructions.\n\n```bash\nnoodle variables set ASSISTANT_MODEL_BASE_URL https://model.example.com/v1 --scope env\nnoodle variables set ASSISTANT_MODEL your-model --scope env\nnoodle secrets set ASSISTANT_MODEL_API_KEY --scope env\nnoodle variables set CUSTOMER_API_CLIENT_ID your-broker-client-id --scope env\nnoodle secrets set CUSTOMER_API_CLIENT_SECRET --scope env\nnoodle check --target embedded-assistant src/server.ts\n```\n\nAssistant origins are exact. Production embedding origins must use HTTPS; plain HTTP is accepted only for\nloopback development origins such as `http://localhost:3000`, `http://127.0.0.1:3000`, or\n`http://[::1]:3000`. `noodle dev` serves the MCP project, not that separate embedding application.\n\nThe bounded `presentation` object configures the panel, launcher, header, composer, and messages. Its\nprimitives derive colors from shared server `branding`; raw HTML, CSS, inline SVG, renderer classes, and\ncallbacks are not accepted.\n\nCreate the backend credential after deployment. The CLI writes it to a mode-0600 file and never prints the\nsecret:\n\n```bash\nnoodle assistant clients create --name web --org noodleseed --app customer-auth --env prod\n```\n\nOnly the Noodle service URL, assistant client ID, and assistant client secret belong in the authenticated\ncustomer backend. The model URL, model name, and model API key remain managed by the Noodle deployment.\n\nThe customer's authenticated backend calls `createAssistantSession(...)` from\n`@noodleseed/assistant/server`, passing the already-verified user and browser origin. The browser then uses\nthe returned short-lived session through the managed Web Component/React renderer or a customer-owned UI:\n\n```bash\npnpm add @noodleseed/assistant\n```\n\n```tsx\nimport { NoodleAssistant } from '@noodleseed/assistant/react';\n\n<NoodleAssistant\n sessionEndpoint=\"/api/noodle-assistant/session\"\n theme={resolvedTheme}\n onSessionExpired={() => console.info('Assistant session renewed')}\n/>;\n```\n\n`resolvedTheme` is the application's current `'light' | 'dark'` value. Use `theme=\"auto\"` only when the\nbrowser operating-system preference is intentionally authoritative.\n\nFor an entirely application-owned React renderer, use the renderer-free hook. It creates no custom element\nand returns the AI SDK transcript plus the canonical client commands:\n\n```tsx\n'use client';\n\nimport { useEffect, useState } from 'react';\nimport { NoodleAppView } from '@noodleseed/assistant/react';\nimport { useNoodleAssistant } from '@noodleseed/assistant/react/client';\n\nexport function CustomerAssistant({\n principalKey,\n resolvedTheme,\n}: {\n principalKey: string;\n resolvedTheme: 'light' | 'dark';\n}) {\n const [draft, setDraft] = useState('');\n const { client, messages, status, error } = useNoodleAssistant({\n sessionEndpoint: '/api/noodle-assistant/session',\n principalKey,\n });\n const busy = status === 'submitted' || status === 'streaming';\n const settle = (operation: Promise<void>) => {\n void operation.catch(() => {\n // The hook exposes this same structured failure through `error`.\n });\n };\n\n return (\n <section aria-label=\"Assistant\" aria-busy={busy}>\n {messages.map((message) => (\n <article key={message.id} data-role={message.role}>\n {message.parts.map((part, index) => {\n if (part.type === 'text') return <p key={index}>{part.text}</p>;\n if (part.type === 'data-confirmation') {\n const review = part.data;\n return (\n <section key={review.id} aria-label=\"Review proposed action\">\n <h3>{review.title ?? 'Review proposed action'}</h3>\n {review.description ? <p>{review.description}</p> : null}\n <pre aria-label=\"Proposed action arguments\">\n {JSON.stringify(review.arguments ?? {}, null, 2)}\n </pre>\n <button\n disabled={busy || review.status !== 'pending'}\n onClick={() => settle(client.respond(review.id, { action: 'accept' }))}\n >\n Confirm\n </button>\n <button\n disabled={busy || review.status !== 'pending'}\n onClick={() => settle(client.respond(review.id, { action: 'decline' }))}\n >\n Don't proceed\n </button>\n </section>\n );\n }\n if (part.type === 'data-input-request') {\n const request = part.data;\n return (\n <section key={request.id} aria-label=\"Assistant needs input\">\n <p>{request.message}</p>\n <p>This renderer has not implemented the requested form.</p>\n <button\n disabled={busy || request.status !== 'pending'}\n onClick={() => settle(client.respond(request.id, { action: 'decline' }))}\n >\n Cancel request\n </button>\n </section>\n );\n }\n if (part.type === 'data-tool-result') {\n return (\n <pre key={part.data.id} aria-label={`${part.data.tool} result`}>\n {JSON.stringify(part.data.result, null, 2)}\n </pre>\n );\n }\n if (part.type === 'data-view') {\n return (\n <NoodleAppView\n key={`${part.data.id}:${part.data.resourceUri}`}\n client={client}\n view={part.data}\n theme={resolvedTheme}\n />\n );\n }\n return <p key={index}>Unsupported assistant content.</p>;\n })}\n </article>\n ))}\n {error ? <p role=\"alert\">{error.message}</p> : null}\n <form\n onSubmit={(event) => {\n event.preventDefault();\n const message = draft.trim();\n if (!message) return;\n setDraft('');\n settle(client.sendMessage(message));\n }}\n >\n <input\n aria-label=\"Message\"\n value={draft}\n onChange={(event) => setDraft(event.currentTarget.value)}\n />\n {busy ? (\n <button type=\"button\" onClick={() => client.abort()}>\n Stop\n </button>\n ) : (\n <button type=\"submit\">Send</button>\n )}\n </form>\n </section>\n );\n}\n```\n\n`principalKey` stays in the browser. Change it whenever the authenticated user or tenant changes; the hook\nthen aborts and clears the prior session and transcript. The sample fails closed on input requests until its\nfallback is replaced with a form generated from `requestedSchema`. A production renderer must show the\ncomplete confirmation review and both decisions. For `data-view`, map `resourceUri` or `tool` and the\nbounded/redacted result to a component already trusted by this application only when intentionally replacing\nthe linked App with a native UI. Otherwise use `NoodleAppView`; JSON result data is not the App UI. Its\nsemantic lifecycle identity is the client plus `view.id` plus `view.resourceUri`, so parent payload/callback\nrerenders keep the iframe and only a different view or unmount tears down the bridge.\nNever inject `part.data.html`, assign it to `srcdoc`, fetch a `ui://` URI, or reproduce the bridge directly. Pages with a\nContent-Security-Policy must include the Noodle service origin in both `connect-src` and `frame-src`.\n\nBefore the production-equivalent host build, run the presence-only handoff check:\n\n```sh\nnoodle assistant embed --check --json\n```\n\nAdd application-owned delegated-exchange requirements with repeatable `--require-env NAME` flags. The JSON\nreports required and missing names, CSP status, and post-deploy probes without returning environment values\nor writing scaffold files. Map the names through the production secret manager, CI environment, and any\nsecret allowlist; regenerate existing framework-owned environment binding types before the build. Default\nDevtools/model exercises to synthetic data, and obtain approval before sending real connector data to an\nexternal model.\n\nAfter deployment, use the assistant doctor to verify the embed client, model, and static session boundary:\n\n```sh\nnoodle assistant doctor --user-id <real-test-user> --origin \"$PUBLIC_APP_ORIGIN\" --org <org> --app <app> --env <env>\n```\n\nThe doctor does not invent or test an application-specific customer route. Prove routed assistant tools by\nhaving the authenticated embedding backend pass the user's server-verified endpoint during session\nexchange, then invoke one representative safe read.\n\nIf the application deliberately sends a first turn on mount, do not combine a persistent \"sent\" ref with a\nmount effect. React Strict Mode can abort that provisional request and then suppress the stable remount.\nSchedule the send after the provisional cleanup and settle its promise:\n\n```tsx\nuseEffect(() => {\n let active = true;\n queueMicrotask(() => {\n if (active) settle(client.sendMessage(initialMessage));\n });\n return () => {\n active = false;\n };\n}, [client, initialMessage]);\n```\n\nFor a chat-first custom host, raw `tool_started` supplies the direct call `id` and technical tool name. Map\nknown tools to concise application copy and use a neutral fallback. Reserve a stable `role=\"status\"` region\nfor thinking, tool activity, and the view skeleton; switch to the ready `NoodleAppView` on `view_available`\nor to `role=\"alert\"` on error. Decorative skeleton shapes stay hidden from assistive technology, and shimmer\nor transition motion is disabled under `prefers-reduced-motion`.\n\nUse `${view.id}:${view.resourceUri}` as transport identity. Different call IDs are distinct invocations and\nmust not be deduplicated generically. If this application intentionally owns one current panel for a known\nresource, declare an application-owned slot for that resource and replace only that slot.\n\nOutside React, subscribe to the DOM-free client directly. It exposes the same conversation as headless AI\nSDK `UIMessage` state, including typed confirmation, input, tool-result, and linked-view parts:\n\n```ts\nimport { createAssistantClient } from '@noodleseed/assistant/client';\n\nconst assistant = createAssistantClient({\n sessionEndpoint: '/api/noodle-assistant/session',\n});\n\nassistant.subscribeChat((state) => {\n renderUIMessageState(state);\n for (const message of state.messages) {\n for (const part of message.parts) {\n if (part.type === 'data-confirmation' && part.data.status === 'pending') {\n renderConfirmation(part.data, (response) => assistant.respond(part.data.id, response));\n }\n }\n }\n});\n```\n\n`theme=\"auto\"` follows the operating-system preference, not a SaaS-owned toggle. Pass the resolved\n`light`/`dark` theme to `NoodleAssistant` and `NoodleAppView`; updates reach mounted MCP Apps without a\nremount. CSS custom properties inherit through the host, and documented `--ns-assistant-*` variables remain\nthe final integration escape hatch. Server `branding` is shared by widgets and the assistant; there is no\nsecond branding declaration. Text streams progressively. Expired turns re-exchange and retry once;\nconfirmations never replay automatically.\n\nThe customer IdP must place the full tenant API base URL in `tenant.api_base_url`. For example, one verified\ncustomer may receive `https://customer-a.api.noodleseed.dev/v1` and another\n`https://customer-b.api.noodleseed.dev/v1`; both satisfy the declared suffix policy. Application code,\ndeployment variables, and connector arguments do not select the tenant route.\n\n`CUSTOMER_API_CLIENT_ID` and `CUSTOMER_API_CLIENT_SECRET` authenticate only the broker to the fixed exchange\nendpoint. They are not customer API bearer tokens. The exchange endpoint verifies the platform-signed\nsubject assertion and mints a short-lived token scoped to the signed-in user and route binding.\n\n## Deploy customer-protected to Noodle Seed Cloud\n\n```bash\nnoodle deploy examples/customer-auth/src/server.ts \\\n --org noodleseed \\\n --app customer-auth \\\n --env prod \\\n --access customers\n```\n\nEndpoint:\n\n```text\nhttps://cloud.noodleseed.dev/o/noodleseed/customer-auth/mcp\n```\n\n## MCP Primitives\n\n- Tool `list_my_organizations`: calls `GET /api/organizations` and returns the organizations the signed-in\n customer is a member of. Takes no arguments; the org set is scoped by the verified customer session.\n- Tool `list_org_apps`: calls `GET /api/organizations/{org_id}/apps` for one organization `org_id`.\n- Tool `archive_org_app`: after confirmation, calls\n `POST /api/organizations/{org_id}/apps/{app_id}/archive`.\n\n## Auth boundary\n\nNoodle Seed verifies the configured OIDC issuer and stable audience, then binds the exact transport-derived\nMCP resource before reading identity or routing claims. Public caller identity contains the user/role/scope\nprojection; the customer route remains private request state.\n\nConnector-backed tools ask the broker for a route-bound delegated credential; only the endpoint key and\nfingerprint enter broker cache/single-flight state or the assertion. The route claim and inbound MCP bearer\ntoken never reach tools, connectors, widgets, model output, or downstream systems. Confirmed actions keep\nthe same URL-blind binding only in private continuation state and reject acceptance-time drift.\n" },
|
|
55
|
+
{ relPath: "examples/customer-auth/README.md", content: "# Customer Auth - OIDC identity and customer-routed APIs\n\nThis curated example owns the customer/end-user authentication capability slot. It proves that a SaaS app\ncan protect an MCP endpoint with direct OIDC, retain role/scope-based tool authorization, and route ordinary\nreads and confirmed actions to the API origin selected by the verified customer's identity provider.\n\nIt also owns the customer-branded embedded-assistant presentation showcase. Direct MCP calls obtain the\nroute from the verified OIDC claim; embedded sessions obtain it from the authenticated customer backend's\nsession exchange. Both paths keep the URL outside tool/model/browser-visible state.\n\nThe public developer entrypoint is [`src/server.ts`](src/server.ts). It exposes a deliberately small MCP\nsurface for organization discovery and app lifecycle operations:\n\n- `list_my_organizations` lists the NoodleSeed.com organizations the signed-in customer belongs to (no\n arguments — the org set comes from the verified customer session).\n- `list_org_apps` lists apps for one of those organizations through that tenant's API. It is visible and\n callable only when the verified customer has the `org_apps:read` scope and either the `org_admin` or\n `org_member` role.\n- `archive_org_app` archives one app only after exact runtime confirmation. It requires the\n `org_apps:write` scope and `org_admin` role.\n\nThe tools chain: `list_my_organizations` surfaces the `org_id`s the customer can act on,\n`list_org_apps` takes one of those ids, and `archive_org_app` accepts the selected app id. Tool code remains\nindependent of the selected origin.\n\nThe server also declares one typed `agentGuide` for those product workflows. The deployed embedded assistant\nuses it automatically: each turn keeps only complete workflows supported by the verified session's roles,\nscopes, and model-visible tools. An organization member can receive organization/app review guidance, while\nonly an administrator with `org_apps:write` receives the complete archive workflow and its confirmation\nboundary. The guide stays server-side, so the Web Component, React renderer, headless hook, and public client\nneed no new option and receive no raw skill content. See\n[using a product guide at runtime](https://docs.noodleseed.dev/docs/guides/product-agent-guides#use-the-guide-at-runtime)\nfor the public behavior guide.\n\nA skill-aware external agent connected directly to the same tenant MCP URL receives the same\ncomplete-workflow filtering through the modern draft MCP Skills extension. Members and administrators may\ntherefore receive different `SKILL.md` and MCP-surface bytes, each with matching caller-specific digests.\nThis reuses the configured customer OAuth boundary; it does not require a second skill installation or auth\nsystem, and it is not a claim that every external host currently implements the draft extension. The\nsame [runtime guide](https://docs.noodleseed.dev/docs/guides/product-agent-guides#use-the-guide-at-runtime)\nexplains this preview boundary.\n\n## Declare the customer endpoint\n\n`customerEndpoint` names one private routing authority and bounds the origins an IdP may select:\n\n```ts\nconst customerApi = customerEndpoint('customer_api', {\n allowedHttpsHostSuffixes: ['api.noodleseed.dev'],\n});\n```\n\nUse either non-empty `allowedHttpsHostSuffixes` or non-empty `allowedHttpsOrigins`, never both. Exact-origin\npolicies may include a non-default port. Suffix policies match only the exact hostname or dot-boundary\nsubdomains on port 443. A routed connector must not add `allowedOrigins`; its endpoint policy is the egress\nallowlist.\n\nThe connector uses that declaration as its normal base URL. Its token endpoint remains a fixed, independently\nvalidated HTTPS URL:\n\n```ts\nconst api = connector('noodleseed_app_api')\n .version('1.0.0')\n .http({\n baseUrl: customerApi,\n auth: {\n kind: 'delegatedTokenExchange',\n tokenUrl: 'https://id.noodleseed.dev/oauth/token',\n clientId: variable('CUSTOMER_API_CLIENT_ID'),\n clientSecret: secret('CUSTOMER_API_CLIENT_SECRET'),\n scopes: ['organizations:read', 'org_apps:read', 'org_apps:write'],\n audience: 'noodleseed-customer-api',\n },\n operations: {\n // read and action operations...\n },\n });\n```\n\n`delegatedTokenExchange` consumes a verified customer caller; an MCP access mode does not create one. The\nserver must declare `customerAuth.*(...)` or `embeddedAssistant(...)` so Noodle Seed can establish the caller\nsubject, issuer, and audience. Otherwise `noodle validate`, `noodle auth doctor`, and deploy fail early with\n`delegated_token_exchange_identity_required`, before secrets are resolved or any connector egress. A\nsuccessful local Devtools exchange is not evidence that the hosted server has an identity source. Devtools\nsupplies a separate, loopback-only local identity context that is never accepted by hosted deployment.\n\nAt both connector and operation level, auth must be omitted or use `delegatedTokenExchange`. The compiler\nvalidates the concrete connector definition emitted from TypeScript, including connector defaults and\noperation overrides, and reports the exact failing auth path and kind. Do not keep a bearer, API-key,\nclient-credentials, or managed-provider fallback for local mode; use operation fakes while leaving auth\ndeclarative.\n\n## Map the endpoint from verified OIDC\n\nThe IdP claim contains the complete base URL, including an optional base path. Routing is separate from the\npublic `${user}` expression scope:\n\n```ts\nauth: customerAuth.oidc({\n issuer: 'https://id.noodleseed.dev',\n audience: 'noodleseed-customer-auth-prod',\n claims: {\n id: 'sub',\n email: 'email',\n name: 'name',\n orgs: 'permissions.orgs',\n roles: 'permissions.roles',\n scopes: 'permissions.scopes',\n },\n routing: {\n endpoints: {\n customer_api: { claim: 'tenant.api_base_url' },\n },\n },\n}),\n```\n\nFor federated OIDC, put the same endpoint map on every issuer. Claim paths may differ, but each issuer must\nmap every endpoint the app uses:\n\n```ts\nauth: customerAuth.federatedOidc({\n issuers: [\n {\n issuer: 'https://id.customer-a.com',\n audience: 'noodleseed-customer-auth-prod',\n routing: {\n endpoints: {\n customer_api: { claim: 'tenant.api_base_url' },\n },\n },\n },\n {\n issuer: 'https://login.customer-b.com',\n audience: 'noodleseed-customer-auth-prod',\n routing: {\n endpoints: {\n customer_api: { claim: 'organization.routes.customer_api' },\n },\n },\n },\n ],\n}),\n```\n\nAt runtime, Noodle Seed validates the configured stable audience, associates the caller with the exact\ntransport-derived MCP resource, projects the route into private request state, applies its policy, and\nfreezes it for the call. Missing, malformed, or\ndisallowed claims return `connector_route_unavailable` before credential lookup or connector egress.\nResolved URLs never enter artifacts, `${user}`, logs, model output, widgets, public confirmation review,\nbroker cache keys, or delegated exchange assertions.\n\nRouted reads work in tools, including declared nested calls. Routed actions require exact\n`annotations.confirm: true`; otherwise they fail with `customer_endpoint_action_unsupported`. Routed\nresources, prompts, and ambient context fail with `customer_endpoint_surface_unsupported`.\n\nThe flagship's routed action uses the normal TypeScript action helper:\n\n```ts\ntool('archive_org_app', {\n authorization: {\n requiredScopes: ['org_apps:write'],\n allowedRoles: ['org_admin'],\n },\n annotations: annotations.openAction({ destructive: false, confirm: true }),\n // input, output, and the normal connectors.app_api.archiveOrgApp(...) call...\n});\n```\n\nThe flagship also opts into the current stateless hosted MCP path:\n\n```ts\ninteractions: {\n confirmationFallback: 'host',\n},\n```\n\nA bidirectional client that negotiated form elicitation can complete the standard confirmation exchange\ninstead. The explicit host fallback trusts the MCP host to have collected native write approval before the\ntool call reaches Noodle Seed; it is never inferred from client identity and does not replace auth, policy,\nor accurate action/destructive annotations. Omit the fallback when connected hosts are not trusted to\nprovide that approval. If neither standard confirmation nor the fallback is available, the action fails\nclosed with `interaction_unavailable`.\n\nPreparation stores only sorted route `{ key, fingerprint }` bindings in its private server-held\ncontinuation; the public review exposes none of them. Acceptance re-resolves the current request route and\nreturns `invalid_continuation` if it is missing or changed, before policy, credentials, or egress. A match\nreuses the current frozen snapshot for the action and all nested or later reads.\n\nThe application developer owns the direct/federated authorization server. It must publish its path-inserted\nRFC 8414 document as direct HTTP 200 JSON with exact issuer and HTTPS authorization/token/registration/JWKS\nendpoints, authorization-code and refresh grants, PKCE S256, public-client auth method `none`, RFC 8707\nresource handling, and public signing keys. It validates each exact MCP resource on authorize, code exchange,\nand refresh, then maps approved versions of this app/environment to `noodleseed-customer-auth-prod`. Other\napps and environments use distinct audiences.\n\nRun `noodle auth doctor src/server.ts` before sharing. Its bounded, read-only probes never register a client.\nAdding the embedded assistant does not choose or rewrite MCP customer auth. Its authenticated backend may\nbind `routing.endpoints.customer_api` during assistant-session exchange from server-owned membership data;\ndirect MCP requests continue to resolve the same endpoint from the configured verified OIDC claim.\n\n## Per-tool authorization remains independent\n\nThe mapped `roles` and `scopes` paths are read only after OIDC verification. The restricted tool declares its\nrule beside the rest of its public contract:\n\n```ts\ntool('list_org_apps', {\n authorization: {\n requiredScopes: ['org_apps:read'],\n allowedRoles: ['org_admin', 'org_member'],\n },\n // input, output, and fulfilment...\n});\n```\n\nEvery required scope must be present and at least one allowed role must match. When both lists are declared,\nboth conditions apply. Route availability never changes `tools/list`: discovery remains based only on\nroles/scopes. A restricted tool is omitted for an ineligible customer and a guessed direct call still fails\nclosed.\n\nTool code calls the connector normally:\n\n```ts\nfulfil({ input, connectors }) {\n const apps = connectors.app_api.listOrgApps({\n org_id: input.org_id,\n skip: input.skip,\n limit: input.limit,\n });\n\n return { result: apps.result };\n}\n```\n\nThe broker exchanges a short-lived, platform-signed assertion at the fixed token endpoint and caches the\nresult by caller, connector, scopes, and a route fingerprint. The assertion carries only the route key and\nfingerprint, never the URL. The MCP access token is never forwarded to the customer API. The exchange wire\ncontract lives in docs/spec/connectors.md.\n\nFirebase and Microsoft remain supported managed adapters; their provider-specific contracts and tests live\nin docs/spec/auth-and-policy.md and the SharePoint flagship.\n\n## Supabase direct-OIDC access-token hook\n\nDynamic Client Registration lets any OAuth client register, so the presence of `client_id` is not approval.\nKeep an operator-controlled client-to-audience map and rewrite `aud` only for an exact mapped client. For a\ndynamically registered client, review its generated client ID, name, and exact redirect URIs in the consent\nflow before adding the mapping. Each new registration needs its own row; never approve by name or prefix.\n\nReplace `<approved-oauth-client-id>` with the reviewed client ID and `<stable-mcp-audience>` with the exact\nvalue configured in `customerAuth.oidc`:\n\n```sql\ncreate table if not exists public.mcp_oauth_client_audiences (\n client_id text primary key check (btrim(client_id) <> ''),\n audience text not null check (btrim(audience) <> '')\n);\n\nrevoke all on table public.mcp_oauth_client_audiences from authenticated, anon, public;\ngrant usage on schema public to supabase_auth_admin;\ngrant select on table public.mcp_oauth_client_audiences to supabase_auth_admin;\n\ninsert into public.mcp_oauth_client_audiences (client_id, audience)\nvalues ('<approved-oauth-client-id>', '<stable-mcp-audience>')\non conflict (client_id) do update set audience = excluded.audience;\n\ncreate or replace function public.mcp_access_token_hook(event jsonb)\nreturns jsonb\nlanguage plpgsql\nstable\nas $$\ndeclare\n claims jsonb := coalesce(event->'claims', '{}'::jsonb);\n oauth_client_id text := nullif(btrim(claims->>'client_id'), '');\n mapped_audience text;\nbegin\n if oauth_client_id is not null then\n select mapping.audience\n into mapped_audience\n from public.mcp_oauth_client_audiences as mapping\n where mapping.client_id = oauth_client_id;\n end if;\n\n if mapped_audience is not null then\n claims := jsonb_set(\n claims,\n '{aud}',\n to_jsonb(mapped_audience),\n true\n );\n end if;\n\n return jsonb_build_object('claims', claims);\nend;\n$$;\n\ngrant execute on function public.mcp_access_token_hook(jsonb) to supabase_auth_admin;\nrevoke execute on function public.mcp_access_token_hook(jsonb) from authenticated, anon, public;\n```\n\n| Token source | Mapping | Resulting `aud` |\n| --- | --- | --- |\n| Approved OAuth client | Exact client row | Mapped stable MCP audience |\n| Unrelated or unknown OAuth client | No row | Original Supabase audience |\n| Browser session | No `client_id` | Original Supabase audience |\n\nSelect this function under Supabase Auth Hooks before completing the interactive verification below.\n\n## Validate\n\n```bash\nnoodle validate examples/customer-auth/src/server.ts --json\nnoodle auth doctor examples/customer-auth/src/server.ts --json\nnoodle test examples/customer-auth/src/server.ts --json\n```\n\nThe doctor proves metadata and JWKS readiness without registering a client. For this protected app,\n`noodle test` proves the anonymous 401 plus exact protected-resource metadata boundary and reports\n`interactiveRequired: true`; neither command proves token issuance or audience verification.\n\nAgainst a deployed customer-protected environment, set a short-lived real customer token only in\n`NOODLE_CUSTOMER_TOKEN` and add `--live --org <org> --app <app> --env <env>`. The live doctor performs\ncredential exchanges without invoking any business tool. Add `--version 1` when testing a pinned version;\nthe reported customer resource must match that versioned MCP endpoint.\n\n## Run locally\n\n```bash\nnoodle devtools examples/customer-auth/src/server.ts\n```\n\nComplete sign-in in Devtools and load the tool list. That authenticated request is the local proof that DCR,\nPKCE, token issuance, issuer/signature verification, the stable audience, and exact-resource binding work\ntogether. Invoke a representative safe read when the configured customer API is available.\n\n### Test delegated exchange locally\n\nLocal customer OIDC sign-in and delegated-exchange assertion trust are two distinct boundaries. OIDC proves\nthe caller to the local MCP server; Devtools uses a separate local issuer only for the RFC 8693 assertion\nsent to the downstream token endpoint. This is the canonical local path and requires no `server.ts` change,\nflag, environment variable, or config surface.\n\n1. Configure the OIDC authorization server for the exact loopback callback and RFC 8707 resource. Do not add\n the Devtools assertion key to OIDC issuer metadata or change its signing keys.\n2. Start Devtools, complete customer sign-in, and copy the displayed `{ issuer, jwks }` from **Local delegated exchange**.\n3. Pin both values only in the customer-owned development RFC 8693 token endpoint.\n4. Restrict that trust to development client credentials, audience, API, and data.\n5. Invoke the delegated `list_org_apps` tool until its binding reads **Exchange verified**.\n6. Use hosted preview or `noodle auth doctor --live` to prove the production platform issuer.\n\n**Never trust the Devtools issuer in production: anyone holding the local private key could impersonate a customer.**\n\n## Configuration\n\nThe embedded assistant uses a customer-supplied OpenAI Chat Completions-compatible endpoint. Configure its\nmanaged values at the Noodle deployment environment; none of these values belongs in the customer web\napplication environment, and the API key never reaches the browser:\n\nThe assistant session carries a verified user, tenant, deployment, roles, and scopes. For this flagship's\nrouted tools, the embedding backend resolves the signed-in user's cluster from server-owned membership data\nand passes `routing: { endpoints: { customer_api: cluster.apiBaseUrl } }` to\n`createAssistantSession`. Noodle validates and privately stores that route; it is not returned to the\nbrowser. Do not copy the route into page context, session claims, tool input, or model instructions.\n\n```bash\nnoodle variables set ASSISTANT_ORIGIN https://app.example.com --scope env\nnoodle variables set ASSISTANT_MODEL_BASE_URL https://model.example.com/v1 --scope env\nnoodle variables set ASSISTANT_MODEL your-model --scope env\nnoodle secrets set ASSISTANT_MODEL_API_KEY --scope env\nnoodle variables set CUSTOMER_API_CLIENT_ID your-broker-client-id --scope env\nnoodle secrets set CUSTOMER_API_CLIENT_SECRET --scope env\nnoodle check --target embedded-assistant src/server.ts\n```\n\n`ASSISTANT_ORIGIN` is the operator-owned production embedding origin, so one source can serve every customer\nwithout an application fork. Assistant origins are exact. Production embedding origins must use HTTPS; plain HTTP is accepted only for\nloopback development origins such as `http://localhost:3000`, `http://127.0.0.1:3000`, or\n`http://[::1]:3000`. `noodle dev` serves the MCP project, not that separate embedding application.\n\nThe bounded `presentation` object configures the panel, launcher, header, composer, and messages. Its\nprimitives derive colors from shared server `branding`; raw HTML, CSS, inline SVG, renderer classes, and\ncallbacks are not accepted.\n\nCreate the backend credential after deployment. The CLI writes it to a mode-0600 file and never prints the\nsecret:\n\n```bash\nnoodle assistant clients create --name web --org noodleseed --app customer-auth --env prod\n```\n\nOnly the Noodle service URL, assistant client ID, and assistant client secret belong in the authenticated\ncustomer backend. The model URL, model name, and model API key remain managed by the Noodle deployment.\n\nThe customer's authenticated backend calls `createAssistantSession(...)` from\n`@noodleseed/assistant/server`, passing the already-verified user and browser origin. The browser then uses\nthe returned short-lived session through the managed Web Component/React renderer or a customer-owned UI:\n\n```bash\npnpm add @noodleseed/assistant\n```\n\n```tsx\nimport { NoodleAssistant } from '@noodleseed/assistant/react';\n\n<NoodleAssistant\n sessionEndpoint=\"/api/noodle-assistant/session\"\n theme={resolvedTheme}\n onSessionExpired={() => console.info('Assistant session renewed')}\n/>;\n```\n\n`resolvedTheme` is the application's current `'light' | 'dark'` value. Use `theme=\"auto\"` only when the\nbrowser operating-system preference is intentionally authoritative.\n\nFor an entirely application-owned React renderer, use the renderer-free hook. It creates no custom element\nand returns the AI SDK transcript plus the canonical client commands:\n\n```tsx\n'use client';\n\nimport { useEffect, useState } from 'react';\nimport { NoodleAppView } from '@noodleseed/assistant/react';\nimport { useNoodleAssistant } from '@noodleseed/assistant/react/client';\n\nexport function CustomerAssistant({\n principalKey,\n resolvedTheme,\n}: {\n principalKey: string;\n resolvedTheme: 'light' | 'dark';\n}) {\n const [draft, setDraft] = useState('');\n const { client, messages, status, error } = useNoodleAssistant({\n sessionEndpoint: '/api/noodle-assistant/session',\n principalKey,\n });\n const busy = status === 'submitted' || status === 'streaming';\n const settle = (operation: Promise<void>) => {\n void operation.catch(() => {\n // The hook exposes this same structured failure through `error`.\n });\n };\n\n return (\n <section aria-label=\"Assistant\" aria-busy={busy}>\n {messages.map((message) => (\n <article key={message.id} data-role={message.role}>\n {message.parts.map((part, index) => {\n if (part.type === 'text') return <p key={index}>{part.text}</p>;\n if (part.type === 'data-confirmation') {\n const review = part.data;\n return (\n <section key={review.id} aria-label=\"Review proposed action\">\n <h3>{review.title ?? 'Review proposed action'}</h3>\n {review.description ? <p>{review.description}</p> : null}\n <pre aria-label=\"Proposed action arguments\">\n {JSON.stringify(review.arguments ?? {}, null, 2)}\n </pre>\n <button\n disabled={busy || review.status !== 'pending'}\n onClick={() => settle(client.respond(review.id, { action: 'accept' }))}\n >\n Confirm\n </button>\n <button\n disabled={busy || review.status !== 'pending'}\n onClick={() => settle(client.respond(review.id, { action: 'decline' }))}\n >\n Don't proceed\n </button>\n </section>\n );\n }\n if (part.type === 'data-input-request') {\n const request = part.data;\n return (\n <section key={request.id} aria-label=\"Assistant needs input\">\n <p>{request.message}</p>\n <p>This renderer has not implemented the requested form.</p>\n <button\n disabled={busy || request.status !== 'pending'}\n onClick={() => settle(client.respond(request.id, { action: 'decline' }))}\n >\n Cancel request\n </button>\n </section>\n );\n }\n if (part.type === 'data-tool-result') {\n return (\n <pre key={part.data.id} aria-label={`${part.data.tool} result`}>\n {JSON.stringify(part.data.result, null, 2)}\n </pre>\n );\n }\n if (part.type === 'data-view') {\n return (\n <NoodleAppView\n key={`${part.data.id}:${part.data.resourceUri}`}\n client={client}\n view={part.data}\n theme={resolvedTheme}\n />\n );\n }\n return <p key={index}>Unsupported assistant content.</p>;\n })}\n </article>\n ))}\n {error ? <p role=\"alert\">{error.message}</p> : null}\n <form\n onSubmit={(event) => {\n event.preventDefault();\n const message = draft.trim();\n if (!message) return;\n setDraft('');\n settle(client.sendMessage(message));\n }}\n >\n <input\n aria-label=\"Message\"\n value={draft}\n onChange={(event) => setDraft(event.currentTarget.value)}\n />\n {busy ? (\n <button type=\"button\" onClick={() => client.abort()}>\n Stop\n </button>\n ) : (\n <button type=\"submit\">Send</button>\n )}\n </form>\n </section>\n );\n}\n```\n\n`principalKey` stays in the browser. Change it whenever the authenticated user or tenant changes; the hook\nthen aborts and clears the prior session and transcript. The sample fails closed on input requests until its\nfallback is replaced with a form generated from `requestedSchema`. A production renderer must show the\ncomplete confirmation review and both decisions. For `data-view`, map `resourceUri` or `tool` and the\nbounded/redacted result to a component already trusted by this application only when intentionally replacing\nthe linked App with a native UI. Otherwise use `NoodleAppView`; JSON result data is not the App UI. Its\nsemantic lifecycle identity is the client plus `view.id` plus `view.resourceUri`, so parent payload/callback\nrerenders keep the iframe and only a different view or unmount tears down the bridge.\nNever inject `part.data.html`, assign it to `srcdoc`, fetch a `ui://` URI, or reproduce the bridge directly. Pages with a\nContent-Security-Policy must include the Noodle service origin in both `connect-src` and `frame-src`.\n\nBefore the production-equivalent host build, run the presence-only handoff check:\n\n```sh\nnoodle assistant embed --check --json\n```\n\nAdd application-owned delegated-exchange requirements with repeatable `--require-env NAME` flags. The JSON\nreports required and missing names, CSP status, and post-deploy probes without returning environment values\nor writing scaffold files. Map the names through the production secret manager, CI environment, and any\nsecret allowlist; regenerate existing framework-owned environment binding types before the build. Default\nDevtools/model exercises to synthetic data, and obtain approval before sending real connector data to an\nexternal model.\n\nAfter deployment, use the assistant doctor to verify the embed client, model, and static session boundary:\n\n```sh\nnoodle assistant doctor --user-id <real-test-user> --origin \"$PUBLIC_APP_ORIGIN\" --org <org> --app <app> --env <env>\n```\n\nThe doctor does not invent or test an application-specific customer route. Prove routed assistant tools by\nhaving the authenticated embedding backend pass the user's server-verified endpoint during session\nexchange, then invoke one representative safe read.\n\nIf the application deliberately sends a first turn on mount, do not combine a persistent \"sent\" ref with a\nmount effect. React Strict Mode can abort that provisional request and then suppress the stable remount.\nSchedule the send after the provisional cleanup and settle its promise:\n\n```tsx\nuseEffect(() => {\n let active = true;\n queueMicrotask(() => {\n if (active) settle(client.sendMessage(initialMessage));\n });\n return () => {\n active = false;\n };\n}, [client, initialMessage]);\n```\n\nFor a chat-first custom host, raw `tool_started` supplies the direct call `id` and technical tool name. Map\nknown tools to concise application copy and use a neutral fallback. Reserve a stable `role=\"status\"` region\nfor thinking, tool activity, and the view skeleton; switch to the ready `NoodleAppView` on `view_available`\nor to `role=\"alert\"` on error. Decorative skeleton shapes stay hidden from assistive technology, and shimmer\nor transition motion is disabled under `prefers-reduced-motion`.\n\nUse `${view.id}:${view.resourceUri}` as transport identity. Different call IDs are distinct invocations and\nmust not be deduplicated generically. If this application intentionally owns one current panel for a known\nresource, declare an application-owned slot for that resource and replace only that slot.\n\nOutside React, subscribe to the DOM-free client directly. It exposes the same conversation as headless AI\nSDK `UIMessage` state, including typed confirmation, input, tool-result, and linked-view parts:\n\n```ts\nimport { createAssistantClient } from '@noodleseed/assistant/client';\n\nconst assistant = createAssistantClient({\n sessionEndpoint: '/api/noodle-assistant/session',\n});\n\nassistant.subscribeChat((state) => {\n renderUIMessageState(state);\n for (const message of state.messages) {\n for (const part of message.parts) {\n if (part.type === 'data-confirmation' && part.data.status === 'pending') {\n renderConfirmation(part.data, (response) => assistant.respond(part.data.id, response));\n }\n }\n }\n});\n```\n\n`theme=\"auto\"` follows the operating-system preference, not a SaaS-owned toggle. Pass the resolved\n`light`/`dark` theme to `NoodleAssistant` and `NoodleAppView`; updates reach mounted MCP Apps without a\nremount. CSS custom properties inherit through the host, and documented `--ns-assistant-*` variables remain\nthe final integration escape hatch. Server `branding` is shared by widgets and the assistant; there is no\nsecond branding declaration. Text streams progressively. Expired turns re-exchange and retry once;\nconfirmations never replay automatically.\n\nThe customer IdP must place the full tenant API base URL in `tenant.api_base_url`. For example, one verified\ncustomer may receive `https://customer-a.api.noodleseed.dev/v1` and another\n`https://customer-b.api.noodleseed.dev/v1`; both satisfy the declared suffix policy. Application code,\ndeployment variables, and connector arguments do not select the tenant route.\n\n`CUSTOMER_API_CLIENT_ID` and `CUSTOMER_API_CLIENT_SECRET` authenticate only the broker to the fixed exchange\nendpoint. They are not customer API bearer tokens. The exchange endpoint verifies the platform-signed\nsubject assertion and mints a short-lived token scoped to the signed-in user and route binding.\n\n## Deploy customer-protected to Noodle Seed Cloud\n\n```bash\nnoodle deploy examples/customer-auth/src/server.ts \\\n --org noodleseed \\\n --app customer-auth \\\n --env prod \\\n --access customers\n```\n\nEndpoint:\n\n```text\nhttps://cloud.noodleseed.dev/o/noodleseed/customer-auth/mcp\n```\n\n## MCP Primitives\n\n- Tool `list_my_organizations`: calls `GET /api/organizations` and returns the organizations the signed-in\n customer is a member of. Takes no arguments; the org set is scoped by the verified customer session.\n- Tool `list_org_apps`: calls `GET /api/organizations/{org_id}/apps` for one organization `org_id`.\n- Tool `archive_org_app`: after confirmation, calls\n `POST /api/organizations/{org_id}/apps/{app_id}/archive`.\n\n## Auth boundary\n\nNoodle Seed verifies the configured OIDC issuer and stable audience, then binds the exact transport-derived\nMCP resource before reading identity or routing claims. Public caller identity contains the user/role/scope\nprojection; the customer route remains private request state.\n\nConnector-backed tools ask the broker for a route-bound delegated credential; only the endpoint key and\nfingerprint enter broker cache/single-flight state or the assertion. The route claim and inbound MCP bearer\ntoken never reach tools, connectors, widgets, model output, or downstream systems. Confirmed actions keep\nthe same URL-blind binding only in private continuation state and reject acceptance-time drift.\n" },
|
|
56
56
|
{ relPath: "examples/customer-auth/noodle.json", content: "{\n \"entrypoint\": \"src/server.ts\",\n \"name\": \"customer-auth\"\n}\n" },
|
|
57
57
|
{ relPath: "examples/customer-auth/package.json", content: "{\n \"name\": \"customer-auth\",\n \"version\": \"0.1.0\",\n \"private\": true,\n \"type\": \"module\",\n \"scripts\": {\n \"test\": \"vitest run\",\n \"validate\": \"noodle validate\",\n \"dev\": \"noodle dev\",\n \"deploy\": \"noodle deploy\"\n },\n \"devDependencies\": {\n \"@noodleseed/one\": \"latest\",\n \"vitest\": \"latest\"\n }\n}\n" },
|
|
58
|
-
{ relPath: "examples/customer-auth/src/server.ts", content: "import {\n annotations,\n authenticatedWebsite,\n connector,\n customerAuth,\n customerEndpoint,\n embeddedAssistant,\n openAICompatible,\n secret,\n server,\n tool,\n variable,\n z,\n} from '@noodleseed/one';\n\nconst customerApi = customerEndpoint('customer_api', {\n allowedHttpsHostSuffixes: ['api.noodleseed.dev'],\n});\n\nconst noodleseedApi = connector('noodleseed_app_api')\n .version('1.0.0')\n .http({\n baseUrl: customerApi,\n auth: {\n kind: 'delegatedTokenExchange',\n tokenUrl: 'https://id.noodleseed.dev/oauth/token',\n clientId: variable('CUSTOMER_API_CLIENT_ID'),\n clientSecret: secret('CUSTOMER_API_CLIENT_SECRET'),\n scopes: ['organizations:read', 'org_apps:read', 'org_apps:write'],\n audience: 'noodleseed-customer-api',\n },\n operations: {\n list_org_apps: {\n type: 'read',\n method: 'GET',\n path: '/api/organizations/${args.org_id}/apps',\n query: ['skip', 'limit'],\n input: z.object({\n org_id: z.string(),\n skip: z.number().optional(),\n limit: z.number().optional(),\n }),\n output: z.object({ result: z.unknown().optional() }),\n response: {\n result: '${response}',\n },\n },\n list_organizations: {\n type: 'read',\n method: 'GET',\n path: '/api/organizations',\n output: z.object({ organizations: z.array(z.unknown()).optional() }),\n response: {\n organizations: '${response.organizations}',\n },\n },\n archive_org_app: {\n type: 'action',\n method: 'POST',\n path: '/api/organizations/${args.org_id}/apps/${args.app_id}/archive',\n input: z.object({\n org_id: z.string(),\n app_id: z.string(),\n }),\n output: z.object({ archived: z.boolean() }),\n response: {\n archived: '${response.archived}',\n },\n },\n },\n });\n\nconst CUSTOMER_AUTH_AGENT_GUIDE = {\n description:\n 'Use the signed-in customer context to discover organizations, review their Noodle Seed apps, and archive a selected app when authorized.',\n useWhen: [\n 'A signed-in customer asks which organizations or apps they can access.',\n 'An organization administrator asks to archive one selected app.',\n ],\n workflows: [\n {\n id: 'find_organizations',\n title: 'Find the customer organizations',\n intent: 'Ground later organization-scoped work in the verified customer membership.',\n steps: [\n {\n capability: { kind: 'tool', name: 'list_my_organizations' },\n guidance: 'Use an organization identifier returned by this read in later steps.',\n },\n ],\n },\n {\n id: 'review_organization_apps',\n title: 'Review apps in one organization',\n steps: [\n { capability: { kind: 'tool', name: 'list_my_organizations' } },\n {\n capability: { kind: 'tool', name: 'list_org_apps' },\n guidance: 'List apps only for an organization returned for the signed-in customer.',\n },\n ],\n },\n {\n id: 'archive_organization_app',\n title: 'Archive one organization app',\n steps: [\n { capability: { kind: 'tool', name: 'list_my_organizations' } },\n { capability: { kind: 'tool', name: 'list_org_apps' } },\n {\n capability: { kind: 'tool', name: 'archive_org_app' },\n guidance: 'Archive only the exact app the customer selected after confirmation.',\n },\n ],\n },\n ],\n boundaries: [\n 'Never infer an organization or app identifier that was not returned for the signed-in customer.',\n 'Never claim an app was archived until the confirmed action succeeds.',\n ],\n examples: [\n { prompt: 'Which organizations can I access?', workflow: 'find_organizations' },\n { prompt: 'Show me the apps in this organization.', workflow: 'review_organization_apps' },\n { prompt: 'Archive the app I selected.', workflow: 'archive_organization_app' },\n ],\n} as const;\n\nexport default server(\n 'noodleseed_customer_auth',\n {\n title: 'NoodleSeed.com Customer Auth',\n version: '1.0.0',\n branding: {\n name: 'Noodle Seed Assistant',\n accent: '#E85D24',\n surface: '#FFFFFF',\n surfaceDark: '#171310',\n colorScheme: 'auto',\n theme: {\n light: { accentText: '#FFFFFF', text: '#1C1714' },\n dark: { accent: '#FF8A4C', accentText: '#1C100A', text: '#FFF8F2' },\n },\n },\n use: { app_api: noodleseedApi },\n agentGuide: CUSTOMER_AUTH_AGENT_GUIDE,\n interactions: { confirmationFallback: 'host' },\n auth: customerAuth.oidc({\n issuer: 'https://id.noodleseed.dev',\n audience: 'noodleseed-customer-auth-prod',\n claims: {\n id: 'sub',\n email: 'email',\n name: 'name',\n orgs: 'permissions.orgs',\n roles: 'permissions.roles',\n scopes: 'permissions.scopes',\n },\n routing: {\n endpoints: {\n customer_api: { claim: 'tenant.api_base_url' },\n },\n },\n }),\n instructions:\n 'Direct/federated MCP OIDC demo. The customer IdP proves identity and privately selects the tenant API base URL, while the broker supplies delegated credentials and confirmed actions stay bound to the reviewed route.',\n assistant: embeddedAssistant({\n model: openAICompatible({\n baseUrl: variable('ASSISTANT_MODEL_BASE_URL'),\n model: variable('ASSISTANT_MODEL'),\n apiKey: secret('ASSISTANT_MODEL_API_KEY'),\n }),\n // Production origins are exact HTTPS; http://localhost:<port> is allowed for local development.\n access: authenticatedWebsite({\n origins: [
|
|
59
|
-
{ relPath: "examples/customer-auth/test/server.test.ts", content: "import { describe, expect, it } from 'vitest';\nimport app from '../src/server.js';\n\ndescribe('customer-auth example', () => {\n it('exports a customer-authenticated, customer-branded embedded assistant', async () => {\n expect(typeof app.toManifest).toBe('function');\n const manifest = await app.toManifest();\n expect(manifest.server.assistant).toMatchObject({\n model: { kind: 'openai-compatible', apiKey: 'ASSISTANT_MODEL_API_KEY' },\n layout: { mode: 'floating' },\n presentation: {\n panel: { surface: 'glass', elevation: 'soft', border: 'subtle' },\n launcher: { icon: 'brand-mark', status: 'session', effect: 'pulse' },\n header: { mark: 'status', badge: { text: 'Workspace online', tone: 'success' } },\n },\n });\n expect(
|
|
58
|
+
{ relPath: "examples/customer-auth/src/server.ts", content: "import {\n annotations,\n authenticatedWebsite,\n connector,\n customerAuth,\n customerEndpoint,\n embeddedAssistant,\n openAICompatible,\n secret,\n server,\n tool,\n variable,\n z,\n} from '@noodleseed/one';\n\nconst customerApi = customerEndpoint('customer_api', {\n allowedHttpsHostSuffixes: ['api.noodleseed.dev'],\n});\nconst assistantOrigin = variable('ASSISTANT_ORIGIN');\n\nconst noodleseedApi = connector('noodleseed_app_api')\n .version('1.0.0')\n .http({\n baseUrl: customerApi,\n auth: {\n kind: 'delegatedTokenExchange',\n tokenUrl: 'https://id.noodleseed.dev/oauth/token',\n clientId: variable('CUSTOMER_API_CLIENT_ID'),\n clientSecret: secret('CUSTOMER_API_CLIENT_SECRET'),\n scopes: ['organizations:read', 'org_apps:read', 'org_apps:write'],\n audience: 'noodleseed-customer-api',\n },\n operations: {\n list_org_apps: {\n type: 'read',\n method: 'GET',\n path: '/api/organizations/${args.org_id}/apps',\n query: ['skip', 'limit'],\n input: z.object({\n org_id: z.string(),\n skip: z.number().optional(),\n limit: z.number().optional(),\n }),\n output: z.object({ result: z.unknown().optional() }),\n response: {\n result: '${response}',\n },\n },\n list_organizations: {\n type: 'read',\n method: 'GET',\n path: '/api/organizations',\n output: z.object({ organizations: z.array(z.unknown()).optional() }),\n response: {\n organizations: '${response.organizations}',\n },\n },\n archive_org_app: {\n type: 'action',\n method: 'POST',\n path: '/api/organizations/${args.org_id}/apps/${args.app_id}/archive',\n input: z.object({\n org_id: z.string(),\n app_id: z.string(),\n }),\n output: z.object({ archived: z.boolean() }),\n response: {\n archived: '${response.archived}',\n },\n },\n },\n });\n\nconst CUSTOMER_AUTH_AGENT_GUIDE = {\n description:\n 'Use the signed-in customer context to discover organizations, review their Noodle Seed apps, and archive a selected app when authorized.',\n useWhen: [\n 'A signed-in customer asks which organizations or apps they can access.',\n 'An organization administrator asks to archive one selected app.',\n ],\n workflows: [\n {\n id: 'find_organizations',\n title: 'Find the customer organizations',\n intent: 'Ground later organization-scoped work in the verified customer membership.',\n steps: [\n {\n capability: { kind: 'tool', name: 'list_my_organizations' },\n guidance: 'Use an organization identifier returned by this read in later steps.',\n },\n ],\n },\n {\n id: 'review_organization_apps',\n title: 'Review apps in one organization',\n steps: [\n { capability: { kind: 'tool', name: 'list_my_organizations' } },\n {\n capability: { kind: 'tool', name: 'list_org_apps' },\n guidance: 'List apps only for an organization returned for the signed-in customer.',\n },\n ],\n },\n {\n id: 'archive_organization_app',\n title: 'Archive one organization app',\n steps: [\n { capability: { kind: 'tool', name: 'list_my_organizations' } },\n { capability: { kind: 'tool', name: 'list_org_apps' } },\n {\n capability: { kind: 'tool', name: 'archive_org_app' },\n guidance: 'Archive only the exact app the customer selected after confirmation.',\n },\n ],\n },\n ],\n boundaries: [\n 'Never infer an organization or app identifier that was not returned for the signed-in customer.',\n 'Never claim an app was archived until the confirmed action succeeds.',\n ],\n examples: [\n { prompt: 'Which organizations can I access?', workflow: 'find_organizations' },\n { prompt: 'Show me the apps in this organization.', workflow: 'review_organization_apps' },\n { prompt: 'Archive the app I selected.', workflow: 'archive_organization_app' },\n ],\n} as const;\n\nexport default server(\n 'noodleseed_customer_auth',\n {\n title: 'NoodleSeed.com Customer Auth',\n version: '1.0.0',\n branding: {\n name: 'Noodle Seed Assistant',\n accent: '#E85D24',\n surface: '#FFFFFF',\n surfaceDark: '#171310',\n colorScheme: 'auto',\n theme: {\n light: { accentText: '#FFFFFF', text: '#1C1714' },\n dark: { accent: '#FF8A4C', accentText: '#1C100A', text: '#FFF8F2' },\n },\n },\n use: { app_api: noodleseedApi },\n agentGuide: CUSTOMER_AUTH_AGENT_GUIDE,\n interactions: { confirmationFallback: 'host' },\n auth: customerAuth.oidc({\n issuer: 'https://id.noodleseed.dev',\n audience: 'noodleseed-customer-auth-prod',\n claims: {\n id: 'sub',\n email: 'email',\n name: 'name',\n orgs: 'permissions.orgs',\n roles: 'permissions.roles',\n scopes: 'permissions.scopes',\n },\n routing: {\n endpoints: {\n customer_api: { claim: 'tenant.api_base_url' },\n },\n },\n }),\n instructions:\n 'Direct/federated MCP OIDC demo. The customer IdP proves identity and privately selects the tenant API base URL, while the broker supplies delegated credentials and confirmed actions stay bound to the reviewed route.',\n assistant: embeddedAssistant({\n model: openAICompatible({\n baseUrl: variable('ASSISTANT_MODEL_BASE_URL'),\n model: variable('ASSISTANT_MODEL'),\n apiKey: secret('ASSISTANT_MODEL_API_KEY'),\n }),\n // Production origins are exact HTTPS; http://localhost:<port> is allowed for local development.\n access: authenticatedWebsite({\n origins: [assistantOrigin, 'https://dev.noodleseed.com', 'http://localhost:3000'],\n }),\n layout: { mode: 'floating', position: 'bottom-right', panelWidth: 420 },\n labels: {\n welcomeHeading: 'How can I help with Noodle Seed?',\n composerPlaceholder: 'Ask about your apps…',\n },\n presentation: {\n panel: { surface: 'glass', elevation: 'soft', border: 'subtle' },\n launcher: { icon: 'brand-mark', status: 'session', effect: 'pulse' },\n header: {\n mark: 'status',\n badge: { text: 'Workspace online', tone: 'success', indicator: true },\n },\n composer: { leadingIcon: 'brand-mark', shape: 'pill' },\n },\n suggestedPrompts: ['Explain how to connect this customer-authenticated MCP server'],\n }),\n },\n [\n tool('list_org_apps', {\n title: 'List organization apps',\n description: 'List NoodleSeed.com apps for an organization from its customer API.',\n authorization: {\n requiredScopes: ['org_apps:read'],\n allowedRoles: ['org_admin', 'org_member'],\n },\n input: z.object({\n org_id: z.string().meta({ title: 'Organization' }),\n skip: z.number().int().min(0).optional().meta({ title: 'Starting item' }),\n limit: z.number().int().min(1).max(100).optional().meta({ title: 'Maximum results' }),\n }),\n output: z.object({\n result: z.unknown(),\n }),\n annotations: annotations.readOnly(),\n fulfil({ input, connectors }) {\n const apps = connectors.app_api.listOrgApps({\n org_id: input.org_id,\n skip: input.skip,\n limit: input.limit,\n });\n return {\n result: apps.result,\n };\n },\n }),\n tool('list_my_organizations', {\n title: 'List my organizations',\n description: 'List the NoodleSeed.com organizations the signed-in customer belongs to.',\n contextProvider: true,\n input: z.object({}),\n // The customer API returns every organization for the signed-in customer in one response, with no\n // page parameter to pass through, so the bound is declared on the shape. A customer belongs to a\n // handful of organizations; `noodle check` reports an unbounded list as\n // `tool_design_output_bounds`.\n output: z.object({\n organizations: z.array(z.unknown()).max(100),\n }),\n annotations: annotations.readOnly(),\n fulfil({ connectors }) {\n const organizations = connectors.app_api.listOrganizations();\n return {\n organizations: organizations.organizations,\n };\n },\n }),\n tool('archive_org_app', {\n title: 'Archive organization app',\n description: 'Archive one NoodleSeed.com app through its customer API after confirmation.',\n authorization: {\n requiredScopes: ['org_apps:write'],\n allowedRoles: ['org_admin'],\n },\n input: z.object({\n org_id: z.string().meta({ title: 'Organization' }),\n app_id: z.string().meta({ title: 'App' }),\n }),\n output: z.object({\n archived: z.boolean(),\n }),\n annotations: annotations.openAction({ destructive: false, confirm: true }),\n fulfil({ input, connectors }) {\n const result = connectors.app_api.archiveOrgApp({\n org_id: input.org_id,\n app_id: input.app_id,\n });\n return {\n archived: result.archived,\n };\n },\n }),\n ],\n);\n" },
|
|
59
|
+
{ relPath: "examples/customer-auth/test/server.test.ts", content: "import { describe, expect, it } from 'vitest';\nimport app from '../src/server.js';\n\ndescribe('customer-auth example', () => {\n it('exports a customer-authenticated, customer-branded embedded assistant', async () => {\n expect(typeof app.toManifest).toBe('function');\n const manifest = await app.toManifest();\n expect(manifest.server.assistant).toMatchObject({\n model: { kind: 'openai-compatible', apiKey: 'ASSISTANT_MODEL_API_KEY' },\n layout: { mode: 'floating' },\n presentation: {\n panel: { surface: 'glass', elevation: 'soft', border: 'subtle' },\n launcher: { icon: 'brand-mark', status: 'session', effect: 'pulse' },\n header: { mark: 'status', badge: { text: 'Workspace online', tone: 'success' } },\n },\n });\n expect(manifest.server.assistant?.allowedOrigins).toEqual([\n '${env.ASSISTANT_ORIGIN}',\n 'https://dev.noodleseed.com',\n 'http://localhost:3000',\n ]);\n expect(manifest.server.branding).toMatchObject({\n name: 'Noodle Seed Assistant',\n colorScheme: 'auto',\n });\n expect(manifest.server.auth).toEqual({\n kind: 'oidc',\n issuer: 'https://id.noodleseed.dev',\n audience: 'noodleseed-customer-auth-prod',\n claims: {\n id: 'sub',\n email: 'email',\n name: 'name',\n orgs: 'permissions.orgs',\n roles: 'permissions.roles',\n scopes: 'permissions.scopes',\n },\n routing: {\n endpoints: {\n customer_api: { claim: 'tenant.api_base_url' },\n },\n },\n });\n expect(manifest.server.interactions).toEqual({ confirmationFallback: 'host' });\n expect(manifest.server.agentGuide?.workflows.map((workflow) => workflow.id)).toEqual([\n 'find_organizations',\n 'review_organization_apps',\n 'archive_organization_app',\n ]);\n expect(\n manifest.server.agentGuide?.workflows.find(\n (workflow) => workflow.id === 'archive_organization_app',\n )?.steps,\n ).toEqual([\n { capability: { kind: 'tool', name: 'list_my_organizations' } },\n { capability: { kind: 'tool', name: 'list_org_apps' } },\n {\n capability: { kind: 'tool', name: 'archive_org_app' },\n guidance: 'Archive only the exact app the customer selected after confirmation.',\n },\n ]);\n const catalog = app.toConnectorCatalog();\n expect(catalog?.connectors).toHaveLength(1);\n expect(catalog?.connectors[0]?.http).toMatchObject({\n baseUrl: {\n kind: 'customerEndpoint',\n name: 'customer_api',\n policy: { allowedHttpsHostSuffixes: ['api.noodleseed.dev'] },\n },\n auth: {\n kind: 'delegatedTokenExchange',\n tokenUrl: 'https://id.noodleseed.dev/oauth/token',\n clientId: '${env.CUSTOMER_API_CLIENT_ID}',\n clientSecret: 'CUSTOMER_API_CLIENT_SECRET',\n },\n });\n expect(catalog?.connectors[0]?.operations).toMatchObject({\n list_org_apps: { type: 'read' },\n list_organizations: { type: 'read' },\n archive_org_app: { type: 'action', method: 'POST' },\n });\n expect(catalog?.connectors[0]?.http).not.toHaveProperty('allowedOrigins');\n expect(JSON.stringify({ manifest, catalog })).not.toContain('tenant-a.api.noodleseed.dev');\n expect(manifest.tools.find((tool) => tool.name === 'list_org_apps')?.authorization).toEqual({\n requiredScopes: ['org_apps:read'],\n allowedRoles: ['org_admin', 'org_member'],\n });\n expect(\n manifest.tools.find((tool) => tool.name === 'list_my_organizations')?.authorization,\n ).toBeUndefined();\n expect(manifest.tools.find((tool) => tool.name === 'archive_org_app')).toMatchObject({\n authorization: {\n requiredScopes: ['org_apps:write'],\n allowedRoles: ['org_admin'],\n },\n annotations: {\n readOnlyHint: false,\n destructiveHint: false,\n openWorldHint: true,\n confirm: true,\n },\n });\n });\n});\n" },
|
|
60
60
|
{ relPath: "examples/food-ordering/README.md", content: "# Food Ordering\n\n**Owns:** The flagship consumer ordering MCP App example: React view authoring, app-only helper tools,\ncaller-scoped cart state handles, invocation context, model-visible widget state/lifecycle, packaged image\nassets, portable structured elicitation, checkout handoff policy, host actions, CSP/permissions metadata,\nproduct-agent guidance, host-neutral distribution metadata, and widget preview coverage.\n\nFood Ordering is a generic, synthetic version of a live marketplace ordering app. It lets a user search\nstores, browse menus, customize an item, build a multi-line cart, review the order, and hand off checkout to\nan allowlisted example domain. It does not use real restaurant APIs, real checkout, customer credentials, or\nprivate customer data.\n\n## What It Shows\n\n| Capability | Example |\n| :--- | :--- |\n| Public entry tool | `open_ordering` returns structured fallback content and renders the React widget |\n| Product and distribution projections | `agentGuide` supplies grounded cross-capability guidance; `distribution` supplies listing, publisher, legal, image, and review facts separately from the runtime manifest |\n| App-only helper tools | `search_stores`, `load_menu`, `load_item`, `read_cart`, `sync_cart`, `prepare_checkout`; mutating widget-owned helpers use `confirm: false` (equivalent to omission) and execute directly because action hints alone never gate |\n| Durable cart state | `server(..., { state: { handles: { cart } }, use: { state } })` with caller scope and revision checks |\n| React app runtime kit | `@noodleseed/one/react` supplies app flow, shell/nav/view, async state, form, quantity, choice, and handoff primitives |\n| Multi-step widget flow | One React shell navigates stores, menu, item customization, cart, review, and handoff views through `useAppFlow` |\n| Invocation context | `server.context` sets locale/time-zone defaults, derives an ambient service area/date, and exposes optional host-supplied coordinates to tools and the reserved `noodle_context` MCP adapter; location is an untrusted convenience hint, never an authorization signal or a substitute for explicit input |\n| Structured missing input | `plan_order` uses `ctx.elicit` to collect a fulfilment method and date through embedded/headless forms, standard bidirectional elicitation, a linked MCP App form, or an exact structured conversational retry on stateless hosts |\n| Model-visible widget state | `useUpdateModelContext` publishes one cohesive replacement snapshot when supported; `useWidgetLifecycle` auto-publishes mounted/cancelled/dismissed and reports author-owned submitted milestones for future context (not host-presentation proof), while the user-triggered submit pairs `useSendFollowUpMessage` for an immediate reply |\n| Handoff | `handoff.allowedDomains` allows only `https://orders.example.com` checkout URLs |\n| Progressive enhancement | Non-Apps hosts still receive stores, featured items, and a readable fallback summary |\n| Fail-closed hydration | The React view treats only the unhydrated, pre-result `{}` envelope as pending; a hydrated empty success remains distinct. It surfaces `isError`, validates required records and identifiers, and withholds ordering actions from malformed results |\n\nThe example is intentionally richer than the generated starter, but each inline view still follows the\nsame default: one immediate purpose, one primary action, at most one subordinate action, and progressive\ndisclosure for the rest. Preview it at 280px before adding navigation or local CSS; loading, empty, stale,\nerror/retry, and success states must remain readable without nested vertical scrolling.\n\nLike the comprehensive default `noodle init my-app` scaffold, this flagship keeps the server feature-rich\nwhile making each individual widget view focused; server capability breadth and screen density are separate.\nThe compiled initial widget should normally remain under the 1 MiB performance recommendation; Noodle Seed's\nhard ceilings are 10 MiB per compiled widget and 20 MiB across one deployment. Run `noodle check` to see raw\nand gzip-estimated sizes. Deploy requests are gzip-compressed as one stream so repeated self-contained React\nruntime bytes deduplicate on the wire without a cross-tenant CDN. Keep menu images or large live datasets in assets/resources and app-only tools\nrather than embedding them into the initial HTML bundle.\n\n## Local Author Loop\n\n```sh\nnoodle validate\nnoodle test\nnoodle dev\n```\n\nThe same `server.ts` declares `distribution` metadata for host adapters. It references real packaged images\nand keeps listing copy, support/legal URLs, and positive/negative review scenarios outside the canonical App\nPackage and Runtime Artifact. Explicit OpenAI and Claude adapters project those facts with the generated\nproduct skill; installable plugin archives and directory-submission dossiers remain separate outputs.\n\nIn another terminal:\n\n```sh\nnoodle tools list\nnoodle tools call open_ordering --args '{\"customer\":\"Asha\",\"query\":\"noodles\"}'\nnoodle tools call summarize_ordering_options --args '{}'\n```\n\nWhen a developer finalizes visual feedback in the local Design experience, a coding agent can inspect the\nlatest project-local brief without a path or session id:\n\n```sh\nnoodle design inspect --latest --json\n```\n\nThe agent should locate the captured elements in this example's authored React source, preserve the listed\nbehavior and accessibility constraints, and verify every acceptance check before changing unrelated UI.\n\nFor Apps metadata conformance, start `noodle dev`, copy the loopback MCP endpoint, then run:\n\n```sh\nnpx @mcpjam/cli@latest apps conformance --url http://127.0.0.1:<port>/o/demo/food-ordering/mcp --quiet --format json\n```\n\n## Export an OpenAI plugin\n\nThis flagship includes the guided workflows, listing metadata, review cases, and image assets needed to test\nOpenAI export. See the public [product-agent guide](https://docs.noodleseed.dev/docs/guides/product-agent-guides#export-an-openai-package)\nfor the current package workflow and boundaries.\n\nAgainst its deployed MCP URL, generate the Food Ordering submission candidate with:\n\n```sh\nnoodle export plugin openai \\\n --state submission \\\n --mcp-url https://food-ordering.noodleseed.app/mcp \\\n --category \"Food & Drink\" \\\n --output food-ordering-openai.zip\n```\n\nExtract `food-ordering-openai.zip` before using the portal. Upload\n`submission/chatgpt-app-submission.json` to the Codex-assisted import field and\n`submission/food-ordering-skill.zip` to **With MCP → Skills**. The outer ZIP is the complete review kit and\nis not itself a valid skill upload; `submission/README.md` repeats the portal steps.\n\nAfter registering that same URL in ChatGPT developer mode, substitute its real technical ID to generate the\nFood Ordering local test package:\n\n```sh\nnoodle export plugin openai \\\n --state local \\\n --mcp-url https://food-ordering.noodleseed.app/mcp \\\n --category \"Food & Drink\" \\\n --registered-app-id plugin_asdk_app_0123456789abcdef0123456789abcdef \\\n --output food-ordering-openai-local.zip\n```\n\n## Export for Claude\n\nClaude Code plugin packaging and Anthropic Connector Directory review are separate outputs. Generate the\ninstallable plugin repository with:\n\n```sh\nnoodle export plugin claude \\\n --mcp-url https://food-ordering.noodleseed.app/mcp \\\n --output food-ordering-claude.zip\n```\n\nGenerate the credential-free operator dossier for the remote Connector Directory with:\n\n```sh\nnoodle export connector claude \\\n --mcp-url https://food-ordering.noodleseed.app/mcp \\\n --auth none \\\n --category \"Food & Drink\" \\\n --output food-ordering-anthropic-connector.zip\n```\n\nThe dossier is deliberately marked `portalUploadable: false`: it gathers the listing, tool annotations,\nuse cases, allowed-link candidates, test-account guidance, and MCP App screenshot evidence, but a human must\nverify ownership/compliance and enter the final answers in Anthropic's portal. The plugin ZIP does not\ncontain this dossier.\n\n## Client Setup\n\nUse the CLI to print the exact setup flow for your MCP client:\n\n```sh\nnoodle connect claude\nnoodle connect chatgpt\nnoodle connect inspector\n```\n\n## Deploy\n\n```sh\nnoodle deploy --org demo --app food-ordering --env prod --access owner-only\nnoodle open\n```\n\nThat one deploy command preflights the complete target, creates a missing app/environment, and verifies\nhosted readiness. If it is interrupted, rerun the same command to resume the unfinished operation without a\nduplicate deployment. Use `--access org-members` for an org-wide internal demo. This example has no\nconnector secrets and does not include tokens, caller-key mechanisms, or `.env.noodle` values.\n\n### Publish an immutable host archive\n\nOnly when this demo is intentionally being prepared for an external directory, deploy it with exact public\naccess and use the returned deployment ID to publish the matching local source:\n\n```sh\nnoodle deploy --org demo --app food-ordering --env prod --access public\nnoodle distributions publish <deployment-id> src/server.ts --target openai --category \"Food & Drink\"\nnoodle distributions list <deployment-id> --target openai\nnoodle distributions readiness <distribution-id> --status ready --note \"Archive and review evidence checked\"\nnoodle distributions release <distribution-id> --visibility private\nnoodle distributions grant <distribution-id> --expires-in 900\nnoodle distributions download <distribution-id> --output food-ordering-openai.zip\n```\n\nPublish fails if local `src/server.ts` no longer compiles to that deployment's package snapshot. Readiness is\nan explicit operator claim, the private release keeps anonymous discovery off, and the grant prints one\nsensitive exact-version reviewer URL. Record `noodle distributions review` only after a human observes the\nreal portal state. Public Noodle delivery, rollback, deprecation, and terminal revocation are separate explicit\nactions; none submits to a directory or claims acceptance.\n\n## Demo Assets\n\nThe packaged demo images live under `assets/`. The current app uses `assets/noodle-bowl.jpg` as the server\nbranding image. Its three distribution screenshots are real, response-only MCP App captures from Noodle\nDevtools at 2× device scale; each is 1640×970 PNG and has the producing user prompt next to its `asset(...)`\nreference in `server.ts`.\n\nImage sources:\n\n- `assets/noodle-bowl.jpg` — Unsplash photo\n [`IRv8V9Hb8gI`](https://unsplash.com/photos/IRv8V9Hb8gI), downloaded from Unsplash.\n- `assets/food-ordering-stores.png` — store-discovery state produced by “Help me build a noodle order for\n pickup.”\n- `assets/food-ordering-menu.png` — Harbor Noodles menu state produced by “Show me the Harbor Noodles\n menu.”\n- `assets/food-ordering-handoff.png` — checkout-handoff state produced by “Review my spicy miso bowl order\n before checkout.”\n\nThe Unsplash branding photo is free to use under the [Unsplash License](https://unsplash.com/license);\nattribution is not required, but the source note is kept here for provenance.\n" },
|
|
61
61
|
{ relPath: "examples/food-ordering/noodle.json", content: "{\n \"entrypoint\": \"src/server.ts\",\n \"name\": \"food-ordering\",\n \"template\": \"widget\"\n}\n" },
|
|
62
62
|
{ relPath: "examples/food-ordering/package.json", content: "{\n \"name\": \"food-ordering\",\n \"version\": \"0.1.0\",\n \"private\": true,\n \"type\": \"module\",\n \"scripts\": {\n \"test\": \"vitest run test\",\n \"validate\": \"noodle validate\",\n \"dev\": \"noodle dev\",\n \"deploy\": \"noodle deploy\"\n },\n \"devDependencies\": {\n \"@vitejs/plugin-react\": \"latest\",\n \"@noodleseed/one\": \"latest\",\n \"@types/react\": \"latest\",\n \"@types/react-dom\": \"latest\",\n \"react\": \"latest\",\n \"react-dom\": \"latest\",\n \"vite\": \"latest\",\n \"vitest\": \"latest\"\n }\n}\n" },
|
|
@@ -122,7 +122,7 @@ export function renderAuthoringWorkflowReference() {
|
|
|
122
122
|
']);',
|
|
123
123
|
'```',
|
|
124
124
|
'',
|
|
125
|
-
'Naming: connector operation names and tool names are lowercase-with-underscores. Map with `${args.field}` for tool/operation inputs and `${response.path}` for the response — the parsed JSON body is bound directly to `${response}`, so there is **no `.body` envelope**; use bracket syntax for array indices (`${response.data[0].id}`) — a dotted numeric index like `.0.` is invalid. Declare URL query parameters with the operation-level `query: ["arg"]` array, **not** inside `request` (which builds only the JSON body). `allowedOrigins`
|
|
125
|
+
'Naming: connector operation names and tool names are lowercase-with-underscores. Map with `${args.field}` for tool/operation inputs and `${response.path}` for the response — the parsed JSON body is bound directly to `${response}`, so there is **no `.body` envelope**; use bracket syntax for array indices (`${response.data[0].id}`) — a dotted numeric index like `.0.` is invalid. Declare URL query parameters with the operation-level `query: ["arg"]` array, **not** inside `request` (which builds only the JSON body). `allowedOrigins` is the SSRF allowlist: use literal exact origins, or the same `variable("STORE_ORIGIN")` as `baseUrl` when one reusable single-origin app is bound per business. A managed origin must resolve to one canonical bare HTTPS origin (exact loopback HTTP is the development exception); never use a wildcard, path, or tenant source edit.',
|
|
126
126
|
'',
|
|
127
127
|
'More: `auth.kind` is `bearer` | `apiKey` (needs `header`) | `clientCredentials` | `delegatedOAuth` | `delegatedSessionCookie` | `delegatedTokenExchange`. For client credentials use `{ kind: "clientCredentials", tokenUrl, clientId, clientSecret, scopes? }` (RFC-6749 grant); for a non-standard partner token endpoint add `profile: "custom"` with a `custom: { requestFormat, clientIdField, clientSecretField, tokenResponsePath, expirySource }` descriptor. Do not put credential headers in operation `headers`; use connector `auth`. Use `.compute(name, { input, output, run })` for a sandboxed transform; `provides:` (instead of `use:`) exposes a connector only to compute `callOperation`; and `noodle import openapi <file>` generates a connector from an OpenAPI spec.',
|
|
128
128
|
'',
|
|
@@ -154,13 +154,13 @@ export interface PublicWebsiteAccess {
|
|
|
154
154
|
}
|
|
155
155
|
export type AssistantAccess = AuthenticatedWebsiteAccess | PublicWebsiteAccess;
|
|
156
156
|
export interface AuthenticatedWebsiteInput {
|
|
157
|
-
readonly origins: readonly string[];
|
|
157
|
+
readonly origins: readonly (string | ConfigRef)[];
|
|
158
158
|
readonly sessionClaims?: Readonly<Record<string, SessionClaimDeclaration>>;
|
|
159
159
|
/** Optional narrowing; omitted means the signed-in surface projects the whole server. */
|
|
160
160
|
readonly capabilities?: readonly CapabilityRef[];
|
|
161
161
|
}
|
|
162
162
|
export interface PublicWebsiteInput {
|
|
163
|
-
readonly origins: readonly string[];
|
|
163
|
+
readonly origins: readonly (string | ConfigRef)[];
|
|
164
164
|
/**
|
|
165
165
|
* Required: on a public page this list *is* the externally reachable surface, so it must be an
|
|
166
166
|
* explicit positive choice rather than whatever the server happens to declare.
|
|
@@ -2,7 +2,7 @@ import { serializeSecretRef, serializeVariableRef } from './config.js';
|
|
|
2
2
|
export function authenticatedWebsite(input) {
|
|
3
3
|
return {
|
|
4
4
|
mode: 'authenticated',
|
|
5
|
-
origins:
|
|
5
|
+
origins: serializeOrigins(input.origins, 'assistant.access.origins'),
|
|
6
6
|
...(input.sessionClaims ? { sessionClaims: structuredClone(input.sessionClaims) } : {}),
|
|
7
7
|
...(input.capabilities ? { capabilities: [...input.capabilities] } : {}),
|
|
8
8
|
};
|
|
@@ -10,10 +10,13 @@ export function authenticatedWebsite(input) {
|
|
|
10
10
|
export function publicWebsite(input) {
|
|
11
11
|
return {
|
|
12
12
|
mode: input.signIn === true ? 'mixed' : 'public',
|
|
13
|
-
origins:
|
|
13
|
+
origins: serializeOrigins(input.origins, 'assistant.access.origins'),
|
|
14
14
|
capabilities: [...input.capabilities],
|
|
15
15
|
};
|
|
16
16
|
}
|
|
17
|
+
function serializeOrigins(origins, path) {
|
|
18
|
+
return origins.map((origin, index) => typeof origin === 'string' ? origin : serializeVariableRef(origin, `${path}.${index}`));
|
|
19
|
+
}
|
|
17
20
|
export function openAICompatible(input) {
|
|
18
21
|
const baseUrl = typeof input.baseUrl === 'string'
|
|
19
22
|
? input.baseUrl
|
|
@@ -77,8 +77,10 @@ type HttpOperationOptionsWithRefs = Omit<HttpConnectorDef['operations'][string],
|
|
|
77
77
|
readonly input?: OperationIoOptions;
|
|
78
78
|
readonly output?: OperationIoOptions;
|
|
79
79
|
};
|
|
80
|
-
export type HttpConnectorOptions = Omit<HttpConnectorDef['http'], 'baseUrl' | 'auth'> & {
|
|
80
|
+
export type HttpConnectorOptions = Omit<HttpConnectorDef['http'], 'baseUrl' | 'allowedOrigins' | 'auth'> & {
|
|
81
81
|
readonly baseUrl: string | ConfigRef | CustomerEndpointRef;
|
|
82
|
+
/** Exact literal or operator-managed origins that may receive connector requests. */
|
|
83
|
+
readonly allowedOrigins?: readonly (string | ConfigRef)[];
|
|
82
84
|
readonly auth?: HttpAuthOptions;
|
|
83
85
|
} & {
|
|
84
86
|
readonly credentialProfiles?: HttpConnectorDef['credentialProfiles'];
|
|
@@ -158,7 +158,11 @@ function normalizeHttpOptions(id, options) {
|
|
|
158
158
|
const normalized = {
|
|
159
159
|
...httpOptions,
|
|
160
160
|
baseUrl: normalizeBaseUrl(options.baseUrl, `connectors.${id}.http.baseUrl`),
|
|
161
|
-
...(options.allowedOrigins !== undefined
|
|
161
|
+
...(options.allowedOrigins !== undefined
|
|
162
|
+
? {
|
|
163
|
+
allowedOrigins: options.allowedOrigins.map((origin, index) => normalizeVariableOrString(origin, `connectors.${id}.http.allowedOrigins.${index}`)),
|
|
164
|
+
}
|
|
165
|
+
: {}),
|
|
162
166
|
...(options.auth !== undefined
|
|
163
167
|
? { auth: normalizeAuth(options.auth, `connectors.${id}.http.auth`) }
|
|
164
168
|
: {}),
|
|
@@ -4,6 +4,7 @@ import { type AgentGuideSource } from './agent-guide.js';
|
|
|
4
4
|
import type { EmbeddedAssistantConfig } from './assistant.js';
|
|
5
5
|
import { type DistributionMetadataSource, type DistributionMetadataV1 } from './distribution.js';
|
|
6
6
|
export { annotations } from './annotations.js';
|
|
7
|
+
import { type ConfigRef } from './config.js';
|
|
7
8
|
import { type ConnectorCatalogDoc, type ConnectorRef } from './connectors.js';
|
|
8
9
|
import { type ServerContextOptions } from './context.js';
|
|
9
10
|
import { type CustomerAuth } from './customer-auth.js';
|
|
@@ -77,7 +78,7 @@ export interface ServerOptions {
|
|
|
77
78
|
readonly colorScheme?: 'auto' | 'light' | 'dark';
|
|
78
79
|
};
|
|
79
80
|
readonly handoff?: {
|
|
80
|
-
readonly allowedDomains: readonly string[];
|
|
81
|
+
readonly allowedDomains: readonly (string | ConfigRef)[];
|
|
81
82
|
};
|
|
82
83
|
readonly state?: {
|
|
83
84
|
readonly handles: Readonly<Record<string, StateHandleOptions>>;
|
|
@@ -3,6 +3,7 @@ import { z } from 'zod';
|
|
|
3
3
|
import { manifestAgentGuide } from './agent-guide.js';
|
|
4
4
|
import { projectDistributionMetadata, } from './distribution.js';
|
|
5
5
|
export { annotations } from './annotations.js';
|
|
6
|
+
import { isConfigRef, serializeVariableRef } from './config.js';
|
|
6
7
|
import { toManifestConnectorRef } from './connections.js';
|
|
7
8
|
import { validateCatalog } from './connectors.js';
|
|
8
9
|
import { manifestContext } from './context.js';
|
|
@@ -210,7 +211,9 @@ class ServerBuilder {
|
|
|
210
211
|
...(this.options.handoff
|
|
211
212
|
? {
|
|
212
213
|
handoff: {
|
|
213
|
-
allowedDomains:
|
|
214
|
+
allowedDomains: this.options.handoff.allowedDomains.map((domain, index) => isConfigRef(domain)
|
|
215
|
+
? serializeVariableRef(domain, `server.handoff.allowedDomains.${index}`)
|
|
216
|
+
: domain),
|
|
214
217
|
},
|
|
215
218
|
}
|
|
216
219
|
: {}),
|
|
@@ -9,7 +9,7 @@ export function assembleRuntimeArtifact({ manifest, options, runtimeBranding, ru
|
|
|
9
9
|
...(artifactPrompts.length > 0 ? { prompts: artifactPrompts.map((p) => p.name) } : {}),
|
|
10
10
|
};
|
|
11
11
|
const connectorBindings = Object.fromEntries(Object.entries(declared).flatMap(([alias, connector]) => connector.binding === undefined ? [] : [[alias, connector.binding]]));
|
|
12
|
-
const config = artifactConfig(artifactTools, allResources, artifactPrompts, connectorBindings, artifactAmbientContext?.fulfilment);
|
|
12
|
+
const config = artifactConfig(manifest, artifactTools, allResources, artifactPrompts, connectorBindings, artifactAmbientContext?.fulfilment);
|
|
13
13
|
const artifact = {
|
|
14
14
|
artifactSchemaVersion: ARTIFACT_SCHEMA_VERSION,
|
|
15
15
|
resolution: options.catalog ? 'resolved' : 'shape-only',
|
|
@@ -1,19 +1,31 @@
|
|
|
1
|
-
export function artifactConfig(tools, resources, prompts, connectorBindings, ambientFulfilment) {
|
|
1
|
+
export function artifactConfig(manifest, tools, resources, prompts, connectorBindings, ambientFulfilment) {
|
|
2
2
|
const variables = new Set();
|
|
3
|
+
collectVariablesFromManagedOrigins(manifest, variables);
|
|
3
4
|
for (const tool of tools)
|
|
4
5
|
collectVariablesFromFulfilment(tool.fulfilment, variables);
|
|
5
6
|
for (const resource of resources)
|
|
6
7
|
collectVariablesFromFulfilment(resource.fulfilment, variables);
|
|
7
8
|
for (const prompt of prompts)
|
|
8
9
|
collectVariablesFromFulfilment(prompt.fulfilment, variables);
|
|
9
|
-
if (ambientFulfilment !== undefined)
|
|
10
|
+
if (ambientFulfilment !== undefined)
|
|
10
11
|
collectVariablesFromFulfilment(ambientFulfilment, variables);
|
|
11
|
-
|
|
12
|
-
for (const binding of Object.values(connectorBindings)) {
|
|
12
|
+
for (const binding of Object.values(connectorBindings))
|
|
13
13
|
collectVariablesFromConnectionSource(binding.connection.source, variables);
|
|
14
|
-
}
|
|
15
14
|
return variables.size > 0 ? { variables: [...variables].sort() } : undefined;
|
|
16
15
|
}
|
|
16
|
+
function collectVariablesFromManagedOrigins(manifest, out) {
|
|
17
|
+
const assistant = manifest.server.assistant;
|
|
18
|
+
const values = [
|
|
19
|
+
...(assistant?.allowedOrigins ?? []),
|
|
20
|
+
...(assistant?.surfaces?.flatMap((surface) => surface.origins) ?? []),
|
|
21
|
+
...(manifest.handoff?.allowedDomains ?? []),
|
|
22
|
+
];
|
|
23
|
+
for (const value of values) {
|
|
24
|
+
const match = /^\$\{env\.([A-Za-z0-9_]+)\}$/.exec(value);
|
|
25
|
+
if (match?.[1] !== undefined)
|
|
26
|
+
out.add(match[1]);
|
|
27
|
+
}
|
|
28
|
+
}
|
|
17
29
|
function collectVariablesFromConnectionSource(source, out) {
|
|
18
30
|
const values = source.kind === 'clientCredentials'
|
|
19
31
|
? [source.tokenUrl, source.clientId]
|
|
@@ -51,36 +63,29 @@ function collectVariablesFromExprMap(map, out) {
|
|
|
51
63
|
}
|
|
52
64
|
function collectVariablesFromExpr(node, out) {
|
|
53
65
|
if (node.kind === 'path') {
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
out.add(first.name);
|
|
58
|
-
}
|
|
59
|
-
return;
|
|
66
|
+
const first = node.segments[0];
|
|
67
|
+
if (node.root === 'env' && first?.kind === 'prop')
|
|
68
|
+
out.add(first.name);
|
|
60
69
|
}
|
|
61
|
-
if (node.kind === 'template') {
|
|
70
|
+
else if (node.kind === 'template') {
|
|
62
71
|
for (const part of node.parts) {
|
|
63
72
|
if (part.kind !== 'text')
|
|
64
73
|
collectVariablesFromExpr(part, out);
|
|
65
74
|
}
|
|
66
|
-
return;
|
|
67
75
|
}
|
|
68
|
-
if (node.kind === 'array') {
|
|
76
|
+
else if (node.kind === 'array') {
|
|
69
77
|
for (const item of node.items)
|
|
70
78
|
collectVariablesFromExpr(item, out);
|
|
71
|
-
return;
|
|
72
79
|
}
|
|
73
|
-
if (node.kind === 'object') {
|
|
80
|
+
else if (node.kind === 'object') {
|
|
74
81
|
for (const entry of node.entries)
|
|
75
82
|
collectVariablesFromExpr(entry.value, out);
|
|
76
|
-
return;
|
|
77
83
|
}
|
|
78
|
-
if (node.kind === 'coalesce') {
|
|
84
|
+
else if (node.kind === 'coalesce') {
|
|
79
85
|
collectVariablesFromExpr(node.left, out);
|
|
80
86
|
collectVariablesFromExpr(node.right, out);
|
|
81
|
-
return;
|
|
82
87
|
}
|
|
83
|
-
if (node.kind === 'function') {
|
|
88
|
+
else if (node.kind === 'function') {
|
|
84
89
|
for (const arg of node.args)
|
|
85
90
|
collectVariablesFromExpr(arg, out);
|
|
86
91
|
}
|
|
@@ -6,7 +6,7 @@ type ToolAuthorizationManifest = {
|
|
|
6
6
|
};
|
|
7
7
|
export declare const manifestV1Schema: z.ZodObject<{
|
|
8
8
|
handoff: z.ZodOptional<z.ZodObject<{
|
|
9
|
-
allowedDomains: z.ZodArray<z.ZodURL
|
|
9
|
+
allowedDomains: z.ZodArray<z.ZodUnion<readonly [z.ZodURL, z.ZodString]>>;
|
|
10
10
|
}, z.core.$strict>>;
|
|
11
11
|
state: z.ZodOptional<z.ZodObject<{
|
|
12
12
|
handles: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
@@ -331,14 +331,14 @@ export declare const manifestV1Schema: z.ZodObject<{
|
|
|
331
331
|
model: z.ZodString;
|
|
332
332
|
apiKey: z.ZodString;
|
|
333
333
|
}, z.core.$strict>;
|
|
334
|
-
allowedOrigins: z.ZodArray<z.
|
|
334
|
+
allowedOrigins: z.ZodArray<z.ZodString>;
|
|
335
335
|
surfaces: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
336
336
|
mode: z.ZodEnum<{
|
|
337
337
|
authenticated: "authenticated";
|
|
338
338
|
public: "public";
|
|
339
339
|
mixed: "mixed";
|
|
340
340
|
}>;
|
|
341
|
-
origins: z.ZodArray<z.
|
|
341
|
+
origins: z.ZodArray<z.ZodString>;
|
|
342
342
|
capabilities: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
343
343
|
kind: z.ZodEnum<{
|
|
344
344
|
tool: "tool";
|
|
@@ -498,7 +498,7 @@ export declare const manifestV1Schema: z.ZodObject<{
|
|
|
498
498
|
}, z.core.$strip>;
|
|
499
499
|
export declare const manifestV2Schema: z.ZodObject<{
|
|
500
500
|
handoff: z.ZodOptional<z.ZodObject<{
|
|
501
|
-
allowedDomains: z.ZodArray<z.ZodURL
|
|
501
|
+
allowedDomains: z.ZodArray<z.ZodUnion<readonly [z.ZodURL, z.ZodString]>>;
|
|
502
502
|
}, z.core.$strict>>;
|
|
503
503
|
state: z.ZodOptional<z.ZodObject<{
|
|
504
504
|
handles: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
@@ -781,14 +781,14 @@ export declare const manifestV2Schema: z.ZodObject<{
|
|
|
781
781
|
model: z.ZodString;
|
|
782
782
|
apiKey: z.ZodString;
|
|
783
783
|
}, z.core.$strict>;
|
|
784
|
-
allowedOrigins: z.ZodArray<z.
|
|
784
|
+
allowedOrigins: z.ZodArray<z.ZodString>;
|
|
785
785
|
surfaces: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
786
786
|
mode: z.ZodEnum<{
|
|
787
787
|
authenticated: "authenticated";
|
|
788
788
|
public: "public";
|
|
789
789
|
mixed: "mixed";
|
|
790
790
|
}>;
|
|
791
|
-
origins: z.ZodArray<z.
|
|
791
|
+
origins: z.ZodArray<z.ZodString>;
|
|
792
792
|
capabilities: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
793
793
|
kind: z.ZodEnum<{
|
|
794
794
|
tool: "tool";
|
|
@@ -1116,7 +1116,7 @@ export declare const manifestV2Schema: z.ZodObject<{
|
|
|
1116
1116
|
}, z.core.$strip>;
|
|
1117
1117
|
export declare const manifestSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
1118
1118
|
handoff: z.ZodOptional<z.ZodObject<{
|
|
1119
|
-
allowedDomains: z.ZodArray<z.ZodURL
|
|
1119
|
+
allowedDomains: z.ZodArray<z.ZodUnion<readonly [z.ZodURL, z.ZodString]>>;
|
|
1120
1120
|
}, z.core.$strict>>;
|
|
1121
1121
|
state: z.ZodOptional<z.ZodObject<{
|
|
1122
1122
|
handles: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
@@ -1441,14 +1441,14 @@ export declare const manifestSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1441
1441
|
model: z.ZodString;
|
|
1442
1442
|
apiKey: z.ZodString;
|
|
1443
1443
|
}, z.core.$strict>;
|
|
1444
|
-
allowedOrigins: z.ZodArray<z.
|
|
1444
|
+
allowedOrigins: z.ZodArray<z.ZodString>;
|
|
1445
1445
|
surfaces: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1446
1446
|
mode: z.ZodEnum<{
|
|
1447
1447
|
authenticated: "authenticated";
|
|
1448
1448
|
public: "public";
|
|
1449
1449
|
mixed: "mixed";
|
|
1450
1450
|
}>;
|
|
1451
|
-
origins: z.ZodArray<z.
|
|
1451
|
+
origins: z.ZodArray<z.ZodString>;
|
|
1452
1452
|
capabilities: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1453
1453
|
kind: z.ZodEnum<{
|
|
1454
1454
|
tool: "tool";
|
|
@@ -1607,7 +1607,7 @@ export declare const manifestSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1607
1607
|
}, z.core.$strip>>>;
|
|
1608
1608
|
}, z.core.$strip>, z.ZodObject<{
|
|
1609
1609
|
handoff: z.ZodOptional<z.ZodObject<{
|
|
1610
|
-
allowedDomains: z.ZodArray<z.ZodURL
|
|
1610
|
+
allowedDomains: z.ZodArray<z.ZodUnion<readonly [z.ZodURL, z.ZodString]>>;
|
|
1611
1611
|
}, z.core.$strict>>;
|
|
1612
1612
|
state: z.ZodOptional<z.ZodObject<{
|
|
1613
1613
|
handles: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
@@ -1890,14 +1890,14 @@ export declare const manifestSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1890
1890
|
model: z.ZodString;
|
|
1891
1891
|
apiKey: z.ZodString;
|
|
1892
1892
|
}, z.core.$strict>;
|
|
1893
|
-
allowedOrigins: z.ZodArray<z.
|
|
1893
|
+
allowedOrigins: z.ZodArray<z.ZodString>;
|
|
1894
1894
|
surfaces: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1895
1895
|
mode: z.ZodEnum<{
|
|
1896
1896
|
authenticated: "authenticated";
|
|
1897
1897
|
public: "public";
|
|
1898
1898
|
mixed: "mixed";
|
|
1899
1899
|
}>;
|
|
1900
|
-
origins: z.ZodArray<z.
|
|
1900
|
+
origins: z.ZodArray<z.ZodString>;
|
|
1901
1901
|
capabilities: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1902
1902
|
kind: z.ZodEnum<{
|
|
1903
1903
|
tool: "tool";
|
|
@@ -135,9 +135,13 @@ const promptSchema = z.object({
|
|
|
135
135
|
});
|
|
136
136
|
const hexColorSchema = z.string().regex(/^#[0-9A-Fa-f]{6}$/, 'must be a 6-digit hex color');
|
|
137
137
|
const httpsUrlSchema = z.url().regex(/^https:\/\//, 'must use https');
|
|
138
|
+
const managedVariableExpressionPattern = /^\$\{env\.[A-Za-z0-9_]+\}$/;
|
|
139
|
+
const managedVariableExpressionSchema = z
|
|
140
|
+
.string()
|
|
141
|
+
.regex(managedVariableExpressionPattern, 'must be an exact managed variable expression');
|
|
138
142
|
// HTTP is allowed only for loopback development origins (mirrors the host-pattern loopback
|
|
139
143
|
// exception used for connector/CSP origins); production embedding origins stay https-only.
|
|
140
|
-
const
|
|
144
|
+
const assistantOriginOrVariablePattern = /^(?:\$\{env\.[A-Za-z0-9_]+\}|https:\/\/[^/?#@\\]+|http:\/\/(?:localhost|127\.0\.0\.1|\[::1\])(?::\d+)?)$/;
|
|
141
145
|
function isCanonicalAssistantOrigin(value) {
|
|
142
146
|
try {
|
|
143
147
|
return new URL(value).origin === value;
|
|
@@ -146,10 +150,10 @@ function isCanonicalAssistantOrigin(value) {
|
|
|
146
150
|
return false;
|
|
147
151
|
}
|
|
148
152
|
}
|
|
149
|
-
const
|
|
150
|
-
.
|
|
151
|
-
.regex(
|
|
152
|
-
.refine(isCanonicalAssistantOrigin, 'must be a canonical bare origin');
|
|
153
|
+
const assistantOriginOrVariableSchema = z
|
|
154
|
+
.string()
|
|
155
|
+
.regex(assistantOriginOrVariablePattern, 'must be a canonical bare origin using https (http is allowed only for localhost/127.0.0.1/[::1] loopback development origins)')
|
|
156
|
+
.refine((value) => managedVariableExpressionPattern.test(value) || isCanonicalAssistantOrigin(value), 'must be a canonical bare origin');
|
|
153
157
|
const packagedAssetSchema = z
|
|
154
158
|
.object({
|
|
155
159
|
kind: z.literal('asset'),
|
|
@@ -342,7 +346,7 @@ const embeddedAssistantSchema = z
|
|
|
342
346
|
apiKey: z.string().regex(/^[A-Za-z0-9_]+$/),
|
|
343
347
|
})
|
|
344
348
|
.strict(),
|
|
345
|
-
allowedOrigins: z.array(
|
|
349
|
+
allowedOrigins: z.array(assistantOriginOrVariableSchema).min(1),
|
|
346
350
|
// The front doors this assistant serves (ADR 0201, amended 2026-08-12). Absent means the pre-0201
|
|
347
351
|
// authenticated shape, so released artifacts keep their meaning; `allowedOrigins` stays the union
|
|
348
352
|
// and `sessionClaims` stays mirrored, so the service reads both unchanged. `capabilities` is the
|
|
@@ -351,7 +355,7 @@ const embeddedAssistantSchema = z
|
|
|
351
355
|
.array(z
|
|
352
356
|
.object({
|
|
353
357
|
mode: z.enum(['authenticated', 'public', 'mixed']),
|
|
354
|
-
origins: z.array(
|
|
358
|
+
origins: z.array(assistantOriginOrVariableSchema).min(1),
|
|
355
359
|
capabilities: z.array(assistantCapabilitySchema).optional(),
|
|
356
360
|
sessionClaims: sessionClaimsSchema.optional(),
|
|
357
361
|
})
|
|
@@ -472,7 +476,7 @@ const serverV2Schema = serverSchema.extend({
|
|
|
472
476
|
});
|
|
473
477
|
const handoffSchema = z
|
|
474
478
|
.object({
|
|
475
|
-
allowedDomains: z.array(httpsUrlSchema).min(1),
|
|
479
|
+
allowedDomains: z.array(z.union([httpsUrlSchema, managedVariableExpressionSchema])).min(1),
|
|
476
480
|
})
|
|
477
481
|
.strict();
|
|
478
482
|
const stateHandleSchema = z
|
|
@@ -22,6 +22,8 @@ export function compileHttpConnector(def, mode, errors, catalog, connectors, sec
|
|
|
22
22
|
(stringBase === undefined || isVariableExpression(stringBase) ? [] : [stringBase]);
|
|
23
23
|
if (stringBase !== undefined)
|
|
24
24
|
collectVariableExpression(stringBase, variableBindings);
|
|
25
|
+
for (const origin of allowedOrigins)
|
|
26
|
+
collectVariableExpression(origin, variableBindings);
|
|
25
27
|
if (def.http.auth !== undefined)
|
|
26
28
|
collectVariablesFromHttpAuth(def.http.auth, variableBindings);
|
|
27
29
|
if (routedBase) {
|
|
@@ -269,7 +269,7 @@ declare const httpConnectorDefSchema: z.ZodObject<{
|
|
|
269
269
|
readonly allowedHttpsHostSuffixes: readonly string[];
|
|
270
270
|
}, unknown>>;
|
|
271
271
|
}, z.core.$strict>]>;
|
|
272
|
-
allowedOrigins: z.ZodOptional<z.ZodArray<z.ZodString
|
|
272
|
+
allowedOrigins: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
273
273
|
auth: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
274
274
|
kind: z.ZodLiteral<"bearer">;
|
|
275
275
|
secret: z.ZodString;
|
|
@@ -551,7 +551,7 @@ declare const connectorDefSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
551
551
|
readonly allowedHttpsHostSuffixes: readonly string[];
|
|
552
552
|
}, unknown>>;
|
|
553
553
|
}, z.core.$strict>]>;
|
|
554
|
-
allowedOrigins: z.ZodOptional<z.ZodArray<z.ZodString
|
|
554
|
+
allowedOrigins: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
555
555
|
auth: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
556
556
|
kind: z.ZodLiteral<"bearer">;
|
|
557
557
|
secret: z.ZodString;
|
|
@@ -828,7 +828,7 @@ export declare const connectorFileSchema: z.ZodObject<{
|
|
|
828
828
|
readonly allowedHttpsHostSuffixes: readonly string[];
|
|
829
829
|
}, unknown>>;
|
|
830
830
|
}, z.core.$strict>]>;
|
|
831
|
-
allowedOrigins: z.ZodOptional<z.ZodArray<z.ZodString
|
|
831
|
+
allowedOrigins: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodString]>>>;
|
|
832
832
|
auth: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
833
833
|
kind: z.ZodLiteral<"bearer">;
|
|
834
834
|
secret: z.ZodString;
|
|
@@ -366,6 +366,9 @@ const computeOperationSchema = z
|
|
|
366
366
|
credentials: operationCredentialsSchema.optional(),
|
|
367
367
|
})
|
|
368
368
|
.strict();
|
|
369
|
+
const managedVariableExpressionSchema = z
|
|
370
|
+
.string()
|
|
371
|
+
.regex(/^\$\{env\.[A-Za-z0-9_]+\}$/, 'must be an exact managed variable expression');
|
|
369
372
|
const connectorIdentity = {
|
|
370
373
|
id: z.string().min(1),
|
|
371
374
|
version: z.string().min(1),
|
|
@@ -381,7 +384,9 @@ const httpConnectorDefSchema = z
|
|
|
381
384
|
http: z
|
|
382
385
|
.object({
|
|
383
386
|
baseUrl: baseUrlSchema,
|
|
384
|
-
allowedOrigins: z
|
|
387
|
+
allowedOrigins: z
|
|
388
|
+
.array(z.union([z.string().url(), managedVariableExpressionSchema]))
|
|
389
|
+
.optional(),
|
|
385
390
|
/** Connector-default auth scheme; an operation's own `auth` overrides it. */
|
|
386
391
|
auth: httpAuthSchema.optional(),
|
|
387
392
|
})
|
|
@@ -26,7 +26,7 @@ export class HttpConnector {
|
|
|
26
26
|
id;
|
|
27
27
|
version;
|
|
28
28
|
#config;
|
|
29
|
-
#
|
|
29
|
+
#allowedOrigins;
|
|
30
30
|
#customerBase;
|
|
31
31
|
constructor(config) {
|
|
32
32
|
this.id = config.id;
|
|
@@ -40,7 +40,11 @@ export class HttpConnector {
|
|
|
40
40
|
if (!customerRouted && origins.length === 0) {
|
|
41
41
|
throw new Error('http.allowedOrigins is required when baseUrl is a managed variable');
|
|
42
42
|
}
|
|
43
|
-
|
|
43
|
+
for (const origin of origins) {
|
|
44
|
+
if (!isVariableBaseUrl(origin))
|
|
45
|
+
new URL(origin);
|
|
46
|
+
}
|
|
47
|
+
this.#allowedOrigins = [...origins];
|
|
44
48
|
}
|
|
45
49
|
signature(operation) {
|
|
46
50
|
return this.#config.operations[operation]?.signature;
|
|
@@ -64,11 +68,12 @@ export class HttpConnector {
|
|
|
64
68
|
}
|
|
65
69
|
const env = call.env ?? {};
|
|
66
70
|
const base = customerBase ?? resolveConfigString(op.baseUrl ?? configuredBase, env);
|
|
71
|
+
const allowed = customerBase === undefined ? this.#resolveAllowedOrigins(env) : new Set();
|
|
67
72
|
try {
|
|
68
73
|
const url = this.#buildUrl(op, call.args, base);
|
|
69
74
|
// Validate the *resolved* origin and, for customer routes, the frozen base path before auth
|
|
70
75
|
// material is constructed.
|
|
71
|
-
await this.#validateUrl(url, customerBase);
|
|
76
|
+
await this.#validateUrl(url, customerBase, allowed);
|
|
72
77
|
const method = op.method ?? 'GET';
|
|
73
78
|
const payload = requestPayload(op.requestEncoding, method !== 'GET' && op.body !== undefined ? () => op.body?.(call.args, env) : undefined);
|
|
74
79
|
const headers = {
|
|
@@ -95,7 +100,7 @@ export class HttpConnector {
|
|
|
95
100
|
};
|
|
96
101
|
const json = op.pagination === undefined
|
|
97
102
|
? await this.#fetchJsonWithResilience(url, op, init)
|
|
98
|
-
: await this.#fetchPaginatedJson(op, call.args, base, init, customerBase);
|
|
103
|
+
: await this.#fetchPaginatedJson(op, call.args, base, init, customerBase, allowed);
|
|
99
104
|
return this.#mapOutput(op, json, call.args);
|
|
100
105
|
}
|
|
101
106
|
catch (error) {
|
|
@@ -149,21 +154,31 @@ export class HttpConnector {
|
|
|
149
154
|
}
|
|
150
155
|
return url;
|
|
151
156
|
}
|
|
152
|
-
|
|
157
|
+
#resolveAllowedOrigins(env) {
|
|
158
|
+
return new Set(this.#allowedOrigins.map((configured) => {
|
|
159
|
+
const resolved = resolveConfigString(configured, env);
|
|
160
|
+
const url = new URL(resolved);
|
|
161
|
+
if (isVariableBaseUrl(configured) && !isManagedOrigin(url, resolved)) {
|
|
162
|
+
throw new ConnectorInvocationError(`managed origin variable must resolve to a canonical bare HTTPS origin (loopback HTTP is allowed for development)`, { category: 'invalid_response', retryable: false });
|
|
163
|
+
}
|
|
164
|
+
return url.origin;
|
|
165
|
+
}));
|
|
166
|
+
}
|
|
167
|
+
async #validateUrl(url, customerBase, allowed) {
|
|
153
168
|
if (customerBase !== undefined) {
|
|
154
169
|
if (!isWithinCustomerBase(url, customerBase))
|
|
155
170
|
throw customerRouteUnavailable();
|
|
156
171
|
}
|
|
157
|
-
else if (!
|
|
172
|
+
else if (!allowed.has(url.origin)) {
|
|
158
173
|
throw new Error(`request resolved to a disallowed origin "${url.origin}"`);
|
|
159
174
|
}
|
|
160
175
|
if (needsGuard(url))
|
|
161
176
|
await assertPublicResolution(url.hostname, this.#config.lookup);
|
|
162
177
|
}
|
|
163
|
-
async #fetchPaginatedJson(op, args, base, init, customerBase) {
|
|
178
|
+
async #fetchPaginatedJson(op, args, base, init, customerBase, allowed = new Set()) {
|
|
164
179
|
return this.#collectPaginatedJson(op, args, async (_pageIndex, query) => {
|
|
165
180
|
const url = this.#buildUrl(op, args, base, query);
|
|
166
|
-
await this.#validateUrl(url, customerBase);
|
|
181
|
+
await this.#validateUrl(url, customerBase, allowed);
|
|
167
182
|
return this.#fetchJsonWithResilience(url, op, init);
|
|
168
183
|
});
|
|
169
184
|
}
|
|
@@ -255,6 +270,14 @@ export class HttpConnector {
|
|
|
255
270
|
});
|
|
256
271
|
}
|
|
257
272
|
}
|
|
273
|
+
function isManagedOrigin(url, resolved) {
|
|
274
|
+
if (url.origin !== resolved || url.username !== '' || url.password !== '')
|
|
275
|
+
return false;
|
|
276
|
+
if (url.protocol === 'https:')
|
|
277
|
+
return true;
|
|
278
|
+
return (url.protocol === 'http:' &&
|
|
279
|
+
(url.hostname === 'localhost' || url.hostname === '127.0.0.1' || url.hostname === '[::1]'));
|
|
280
|
+
}
|
|
258
281
|
function aggregate(pages, items, partial, stopReason) {
|
|
259
282
|
const last = pages.at(-1);
|
|
260
283
|
return {
|
|
@@ -13,6 +13,7 @@ export { type EvalScope, ExpressionEvalError, type ExpressionEvalErrorCode, eval
|
|
|
13
13
|
export { type ExecuteDeps, type ExecuteToolDeps, executePrompt, executeResource, executeTool, type KnowledgeSearchHit, type KnowledgeSearchPort, } from './execute.js';
|
|
14
14
|
export { executeToolInteractive, resumeTool } from './interactive.js';
|
|
15
15
|
export type { InvocationContext, InvocationContextPreferenceSource, InvocationLocationContext, InvocationTemporalContext, } from './invocation-context.js';
|
|
16
|
+
export { type ManagedOriginResolutionResult, resolveManagedOrigins, } from './managed-origins.js';
|
|
16
17
|
export { AllowAllPolicy } from './policy/allow-all.js';
|
|
17
18
|
export type { PolicyContext, PolicyDecision, PolicyGate } from './policy/types.js';
|
|
18
19
|
export { type ConfirmationActionReview, type ConfirmationPreparationResult, type ConfirmationReview, type ElicitationRequest, type ElicitationResponse, type ExecutionError, type ExecutionErrorCode, type ExecutionResult, type InteractiveExecutionResult, isConfirmationRequired, isInputRequired, isInputRequiredForConfirmation, type PreparedOperationAction, type PreparedToolContinuation, type ToolContinuation, type ToolPreparationContinuation, } from './result.js';
|
|
@@ -11,6 +11,7 @@ export { freezeCustomerRoutes, resolveCustomerConnectorRoute, resolveCustomerRou
|
|
|
11
11
|
export { ExpressionEvalError, evaluateCondition, evaluateValue, } from './eval/evaluate.js';
|
|
12
12
|
export { executePrompt, executeResource, executeTool, } from './execute.js';
|
|
13
13
|
export { executeToolInteractive, resumeTool } from './interactive.js';
|
|
14
|
+
export { resolveManagedOrigins, } from './managed-origins.js';
|
|
14
15
|
export { AllowAllPolicy } from './policy/allow-all.js';
|
|
15
16
|
export { isConfirmationRequired, isInputRequired, isInputRequiredForConfirmation, } from './result.js';
|
|
16
17
|
export { splitResultMeta } from './result-meta.js';
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import type { CompileError, RuntimeArtifact } from '@noodle-borg/compiler';
|
|
2
|
+
export type ManagedOriginResolutionResult = {
|
|
3
|
+
readonly ok: true;
|
|
4
|
+
readonly artifact: RuntimeArtifact;
|
|
5
|
+
} | {
|
|
6
|
+
readonly ok: false;
|
|
7
|
+
readonly errors: readonly CompileError[];
|
|
8
|
+
};
|
|
9
|
+
/** Bind operator-owned exact origins into every runtime authority and host projection. */
|
|
10
|
+
export declare function resolveManagedOrigins(artifact: RuntimeArtifact, variables: Readonly<Record<string, string>>): ManagedOriginResolutionResult;
|
|
11
|
+
//# sourceMappingURL=managed-origins.d.ts.map
|
|
@@ -0,0 +1,105 @@
|
|
|
1
|
+
const MANAGED_ORIGIN = /^\$\{env\.([A-Za-z0-9_]+)\}$/;
|
|
2
|
+
/** Bind operator-owned exact origins into every runtime authority and host projection. */
|
|
3
|
+
export function resolveManagedOrigins(artifact, variables) {
|
|
4
|
+
const errors = [];
|
|
5
|
+
const replacements = new Map();
|
|
6
|
+
const resolveList = (values, path, allowLoopback) => values.map((value, index) => resolveManagedOrigin(value, variables, `${path}.${index}`, allowLoopback, replacements, errors));
|
|
7
|
+
const assistant = artifact.server.assistant;
|
|
8
|
+
const resolvedAssistant = assistant === undefined
|
|
9
|
+
? undefined
|
|
10
|
+
: {
|
|
11
|
+
...assistant,
|
|
12
|
+
allowedOrigins: resolveList(assistant.allowedOrigins, 'server.assistant.allowedOrigins', true),
|
|
13
|
+
...(assistant.surfaces === undefined
|
|
14
|
+
? {}
|
|
15
|
+
: {
|
|
16
|
+
surfaces: assistant.surfaces.map((surface, index) => ({
|
|
17
|
+
...surface,
|
|
18
|
+
origins: resolveList(surface.origins, `server.assistant.surfaces.${index}.origins`, true),
|
|
19
|
+
})),
|
|
20
|
+
}),
|
|
21
|
+
};
|
|
22
|
+
const handoff = artifact.server.handoff;
|
|
23
|
+
const resolvedHandoff = handoff === undefined
|
|
24
|
+
? undefined
|
|
25
|
+
: {
|
|
26
|
+
...handoff,
|
|
27
|
+
allowedDomains: resolveList(handoff.allowedDomains, 'handoff.allowedDomains', false),
|
|
28
|
+
};
|
|
29
|
+
if (errors.length > 0)
|
|
30
|
+
return { ok: false, errors };
|
|
31
|
+
return {
|
|
32
|
+
ok: true,
|
|
33
|
+
artifact: {
|
|
34
|
+
...artifact,
|
|
35
|
+
server: {
|
|
36
|
+
...artifact.server,
|
|
37
|
+
...(resolvedAssistant === undefined ? {} : { assistant: resolvedAssistant }),
|
|
38
|
+
...(resolvedHandoff === undefined ? {} : { handoff: resolvedHandoff }),
|
|
39
|
+
},
|
|
40
|
+
...(artifact.resources === undefined
|
|
41
|
+
? {}
|
|
42
|
+
: {
|
|
43
|
+
resources: artifact.resources.map((resource) => replaceValue(resource, replacements)),
|
|
44
|
+
}),
|
|
45
|
+
},
|
|
46
|
+
};
|
|
47
|
+
}
|
|
48
|
+
function resolveManagedOrigin(value, variables, path, allowLoopback, replacements, errors) {
|
|
49
|
+
const match = MANAGED_ORIGIN.exec(value);
|
|
50
|
+
if (match?.[1] === undefined)
|
|
51
|
+
return value;
|
|
52
|
+
const resolved = variables[match[1]];
|
|
53
|
+
if (resolved === undefined) {
|
|
54
|
+
errors.push({
|
|
55
|
+
code: 'invalid_shape',
|
|
56
|
+
path,
|
|
57
|
+
message: `managed origin variable "${match[1]}" is not configured`,
|
|
58
|
+
});
|
|
59
|
+
return value;
|
|
60
|
+
}
|
|
61
|
+
if (!isCanonicalOrigin(resolved, allowLoopback)) {
|
|
62
|
+
errors.push({
|
|
63
|
+
code: 'invalid_shape',
|
|
64
|
+
path,
|
|
65
|
+
message: allowLoopback
|
|
66
|
+
? `managed origin variable "${match[1]}" must resolve to a canonical bare HTTPS origin (loopback HTTP is allowed for development)`
|
|
67
|
+
: `managed origin variable "${match[1]}" must resolve to a canonical bare HTTPS origin`,
|
|
68
|
+
});
|
|
69
|
+
return value;
|
|
70
|
+
}
|
|
71
|
+
replacements.set(value, resolved);
|
|
72
|
+
return resolved;
|
|
73
|
+
}
|
|
74
|
+
function isCanonicalOrigin(value, allowLoopback) {
|
|
75
|
+
try {
|
|
76
|
+
const url = new URL(value);
|
|
77
|
+
if (url.origin !== value || url.username !== '' || url.password !== '')
|
|
78
|
+
return false;
|
|
79
|
+
if (url.protocol === 'https:')
|
|
80
|
+
return true;
|
|
81
|
+
return (allowLoopback &&
|
|
82
|
+
url.protocol === 'http:' &&
|
|
83
|
+
(url.hostname === 'localhost' || url.hostname === '127.0.0.1' || url.hostname === '[::1]'));
|
|
84
|
+
}
|
|
85
|
+
catch {
|
|
86
|
+
return false;
|
|
87
|
+
}
|
|
88
|
+
}
|
|
89
|
+
function replaceValue(value, replacements) {
|
|
90
|
+
if (typeof value === 'string')
|
|
91
|
+
return replaceStrings(value, replacements);
|
|
92
|
+
if (Array.isArray(value))
|
|
93
|
+
return value.map((item) => replaceValue(item, replacements));
|
|
94
|
+
if (value !== null && typeof value === 'object') {
|
|
95
|
+
return Object.fromEntries(Object.entries(value).map(([key, item]) => [key, replaceValue(item, replacements)]));
|
|
96
|
+
}
|
|
97
|
+
return value;
|
|
98
|
+
}
|
|
99
|
+
function replaceStrings(value, replacements) {
|
|
100
|
+
let result = value;
|
|
101
|
+
for (const [expression, origin] of replacements)
|
|
102
|
+
result = result.replaceAll(expression, origin);
|
|
103
|
+
return result;
|
|
104
|
+
}
|
|
105
|
+
//# sourceMappingURL=managed-origins.js.map
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { compile, InMemoryCatalog, } from '@noodle-borg/compiler';
|
|
2
2
|
import { compileConnectors, delegatedTokenExchangeIdentityErrors, } from '@noodle-borg/connector-defs';
|
|
3
|
-
import { InMemoryConnectorRegistry } from '@noodle-borg/runtime';
|
|
3
|
+
import { InMemoryConnectorRegistry, resolveManagedOrigins, } from '@noodle-borg/runtime';
|
|
4
4
|
import { AppPackageSnapshotError, createAppPackageSnapshot, } from './app-package-snapshot.js';
|
|
5
5
|
import { missingServerConfigErrors } from './assistant-bindings.js';
|
|
6
6
|
import { publicSurfaceDelegatedAuthErrors } from './assistant-delegated-projection.js';
|
|
@@ -47,8 +47,7 @@ export async function compileRegistryTarget(context, input) {
|
|
|
47
47
|
: [];
|
|
48
48
|
if (identityErrors.length > 0)
|
|
49
49
|
return { ok: false, errors: identityErrors };
|
|
50
|
-
//
|
|
51
|
-
// inevitable runtime credential_unavailable — reject it where the author can still fix it.
|
|
50
|
+
// A delegated-auth tool on a pure public surface inevitably fails; reject it while the author can fix it.
|
|
52
51
|
const projectionErrors = compiled.ok
|
|
53
52
|
? publicSurfaceDelegatedAuthErrors(compiled.artifact, secretBindings)
|
|
54
53
|
: [];
|
|
@@ -69,6 +68,10 @@ export async function compileRegistryTarget(context, input) {
|
|
|
69
68
|
const configErrors = [...connectorConfigErrors, ...missingServerConfig];
|
|
70
69
|
if (configErrors.length > 0)
|
|
71
70
|
return { ok: false, errors: configErrors };
|
|
71
|
+
const originResolution = resolveManagedOrigins(compiled.artifact, resolvedVariables);
|
|
72
|
+
if (!originResolution.ok)
|
|
73
|
+
return { ok: false, errors: originResolution.errors };
|
|
74
|
+
const artifact = originResolution.artifact;
|
|
72
75
|
let appPackageSnapshot;
|
|
73
76
|
if (input.renderAppPackage && compiled.appPackage !== undefined) {
|
|
74
77
|
try {
|
|
@@ -106,13 +109,11 @@ export async function compileRegistryTarget(context, input) {
|
|
|
106
109
|
}
|
|
107
110
|
const bindDeployment = (boundDeploymentId) => {
|
|
108
111
|
const broker = new ManagedConfigBroker(secretBindings, context.configStore, scope, {
|
|
109
|
-
artifact
|
|
112
|
+
artifact,
|
|
110
113
|
...(context.delegatedCredentialStore !== undefined
|
|
111
114
|
? { delegatedCredentialStore: context.delegatedCredentialStore }
|
|
112
115
|
: {}),
|
|
113
|
-
...(
|
|
114
|
-
? { serverAuth: compiled.artifact.server.auth }
|
|
115
|
-
: {}),
|
|
116
|
+
...(artifact.server.auth !== undefined ? { serverAuth: artifact.server.auth } : {}),
|
|
116
117
|
...(context.sealCustomerCredential !== undefined
|
|
117
118
|
? { sealCustomerCredential: context.sealCustomerCredential }
|
|
118
119
|
: {}),
|
|
@@ -127,9 +128,9 @@ export async function compileRegistryTarget(context, input) {
|
|
|
127
128
|
deploymentId: boundDeploymentId,
|
|
128
129
|
}),
|
|
129
130
|
});
|
|
130
|
-
const stateConnector = createDeploymentStateConnector(
|
|
131
|
+
const stateConnector = createDeploymentStateConnector(artifact.server.state, boundDeploymentId, context.stateHandleStoreFactory);
|
|
131
132
|
return {
|
|
132
|
-
artifact
|
|
133
|
+
artifact,
|
|
133
134
|
deps: {
|
|
134
135
|
connectors: new InMemoryConnectorRegistry([
|
|
135
136
|
...context.platformConnectors,
|
|
@@ -141,10 +142,9 @@ export async function compileRegistryTarget(context, input) {
|
|
|
141
142
|
...(boundDeploymentId !== undefined ? { deploymentId: boundDeploymentId } : {}),
|
|
142
143
|
env: () => context.configStore.resolveConfigValues('variable', scope),
|
|
143
144
|
...(context.policyGate !== undefined ? { policy: context.policyGate } : {}),
|
|
144
|
-
...(context.knowledgeSearch !== undefined &&
|
|
145
|
-
(compiled.artifact.server.knowledge?.length ?? 0) > 0
|
|
145
|
+
...(context.knowledgeSearch !== undefined && (artifact.server.knowledge?.length ?? 0) > 0
|
|
146
146
|
? {
|
|
147
|
-
knowledgeSearch: context.knowledgeSearch(tenant,
|
|
147
|
+
knowledgeSearch: context.knowledgeSearch(tenant, artifact.server.knowledge ?? []),
|
|
148
148
|
}
|
|
149
149
|
: {}),
|
|
150
150
|
},
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
"dependencies": {
|
|
36
36
|
"@modelcontextprotocol/sdk": "^1.29.0",
|
|
37
37
|
"@noodle-borg/admission-limits": "0.0.0",
|
|
38
|
-
"@noodle-borg/agent-kit": "0.79.
|
|
38
|
+
"@noodle-borg/agent-kit": "0.79.1",
|
|
39
39
|
"@noodle-borg/app-package": "0.0.0",
|
|
40
40
|
"@noodle-borg/assistant-gateway": "0.0.0",
|
|
41
41
|
"@noodle-borg/auth": "0.0.0",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@noodleseed/one",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.133.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Noodle CLI by Noodle Seed — author, run, and deploy declarative MCP servers. Embedding the assistant in your own web app is @noodleseed/assistant.",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -235,7 +235,7 @@
|
|
|
235
235
|
"@jitl/quickjs-wasmfile-release-sync": "0.32.0",
|
|
236
236
|
"@modelcontextprotocol/client": "2.0.0",
|
|
237
237
|
"@modelcontextprotocol/server": "2.0.0",
|
|
238
|
-
"@noodle-borg/agent-kit": "0.79.
|
|
238
|
+
"@noodle-borg/agent-kit": "0.79.1",
|
|
239
239
|
"@noodle-borg/app-audit": "0.0.0",
|
|
240
240
|
"@noodle-borg/app-package": "0.0.0",
|
|
241
241
|
"@noodle-borg/auth": "0.0.0",
|