@noodleseed/one 0.40.0 → 0.41.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.
@@ -0,0 +1,34 @@
1
+ /** The plugin identifier — matches the skill name so the defer-to-project rule reads coherently. */
2
+ export declare const PLUGIN_NAME = "noodle-seed";
3
+ /** The public marketplace identifier (`/plugin install noodle-seed@noodleseed`). */
4
+ export declare const MARKETPLACE_NAME = "noodleseed";
5
+ /** Where the plugin lives inside the marketplace repo (relative sources must start with "./"). */
6
+ export declare const PLUGIN_SOURCE_PATH = "./plugins/noodle-seed";
7
+ /**
8
+ * The skill frontmatter description. It must auto-trigger on cold intents ("build an MCP app",
9
+ * "make a ChatGPT app", "ship a Claude Code plugin") from developers who have never heard of
10
+ * Noodle Seed — this is the whole point of the global plugin.
11
+ */
12
+ export declare const BOOTSTRAP_SKILL_DESCRIPTION: string;
13
+ export interface PluginBundleFile {
14
+ readonly path: string;
15
+ readonly content: string;
16
+ }
17
+ export interface PluginRenderOptions {
18
+ /**
19
+ * Release version stamped into both plugin manifests and the router frontmatter. Defaults to the
20
+ * in-repo AGENT_KIT_VERSION (development metadata); the marketplace render script passes the
21
+ * published @noodleseed/agent-kit version so pushed content always matches a real release.
22
+ */
23
+ readonly version?: string;
24
+ }
25
+ /** The shared plugin directory: two host manifests, the bootstrap router, and the references. */
26
+ export declare function renderPluginBundle(options?: PluginRenderOptions): readonly PluginBundleFile[];
27
+ /**
28
+ * Both marketplace catalogs, rendered from one entry: the Claude format (relative-string source;
29
+ * Codex also reads it for legacy compat) and the native Codex format (object source + policy).
30
+ */
31
+ export declare function renderMarketplaceCatalogs(options?: PluginRenderOptions): readonly PluginBundleFile[];
32
+ /** The full public marketplace repo layout: catalogs + README + the plugin under plugins/<name>/. */
33
+ export declare function renderMarketplaceRepo(options?: PluginRenderOptions): readonly PluginBundleFile[];
34
+ //# sourceMappingURL=plugin-bundle.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"plugin-bundle.d.ts","sourceRoot":"","sources":["../src/plugin-bundle.ts"],"names":[],"mappings":"AAaA,oGAAoG;AACpG,eAAO,MAAM,WAAW,gBAAgB,CAAC;AACzC,oFAAoF;AACpF,eAAO,MAAM,gBAAgB,eAAe,CAAC;AAC7C,kGAAkG;AAClG,eAAO,MAAM,kBAAkB,0BAA0B,CAAC;AAW1D;;;;GAIG;AACH,eAAO,MAAM,2BAA2B,QAIyB,CAAC;AAUlE,MAAM,WAAW,gBAAgB;IAC/B,QAAQ,CAAC,IAAI,EAAE,MAAM,CAAC;IACtB,QAAQ,CAAC,OAAO,EAAE,MAAM,CAAC;CAC1B;AAED,MAAM,WAAW,mBAAmB;IAClC;;;;OAIG;IACH,QAAQ,CAAC,OAAO,CAAC,EAAE,MAAM,CAAC;CAC3B;AAyDD,iGAAiG;AACjG,wBAAgB,kBAAkB,CAAC,OAAO,GAAE,mBAAwB,GAAG,SAAS,gBAAgB,EAAE,CAoCjG;AAED;;;GAGG;AACH,wBAAgB,yBAAyB,CACvC,OAAO,GAAE,mBAAwB,GAChC,SAAS,gBAAgB,EAAE,CAqC7B;AA2CD,qGAAqG;AACrG,wBAAgB,qBAAqB,CACnC,OAAO,GAAE,mBAAwB,GAChC,SAAS,gBAAgB,EAAE,CAU7B"}
@@ -0,0 +1,225 @@
1
+ // The globally-installable Noodle Seed authoring plugin for Claude Code and Codex. It fixes the
2
+ // cold-start gap: a developer installs the plugin into their coding agent once, and from the first
3
+ // prompt in any directory the agent knows to reach for the `noodle` CLI (`npx @noodleseed/one`),
4
+ // scaffold with `noodle init`, and then defer to the project-local `noodle-seed` skill that init
5
+ // installs. One shared plugin directory serves both hosts (`.claude-plugin/plugin.json` +
6
+ // `.codex-plugin/plugin.json`); the `references/**` payload is byte-identical to the project skill
7
+ // (rendered from the same `SKILL_REFERENCES`), and only the router SKILL.md is plugin-specific.
8
+ // The bundle deliberately excludes the project-local extras: no bundled examples (project-local
9
+ // rationale; `noodle init` ships them), no `.mcp.json` (docs endpoint not yet live; Codex documents
10
+ // stdio-only), no legacy `commands/` (official docs: use `skills/` for new plugins).
11
+ import { AGENT_KIT_VERSION, contentHash } from './index.js';
12
+ import { REFERENCE_INDEX_LINES, SKILL_REFERENCES } from './skill-content.js';
13
+ /** The plugin identifier — matches the skill name so the defer-to-project rule reads coherently. */
14
+ export const PLUGIN_NAME = 'noodle-seed';
15
+ /** The public marketplace identifier (`/plugin install noodle-seed@noodleseed`). */
16
+ export const MARKETPLACE_NAME = 'noodleseed';
17
+ /** Where the plugin lives inside the marketplace repo (relative sources must start with "./"). */
18
+ export const PLUGIN_SOURCE_PATH = './plugins/noodle-seed';
19
+ const HOMEPAGE = 'https://noodleseed.dev';
20
+ const AUTHOR = { name: 'Noodle Seed', url: HOMEPAGE };
21
+ const OWNER = { name: 'Noodle Seed' };
22
+ const PLUGIN_DESCRIPTION = 'Build production MCP servers and apps with Noodle Seed: author one TypeScript server.ts with ' +
23
+ 'the noodle CLI, validate and test locally, then deploy to a governed hosted MCP endpoint that ' +
24
+ 'works in ChatGPT, Claude, Codex, Cursor, Gemini, and every MCP client.';
25
+ /**
26
+ * The skill frontmatter description. It must auto-trigger on cold intents ("build an MCP app",
27
+ * "make a ChatGPT app", "ship a Claude Code plugin") from developers who have never heard of
28
+ * Noodle Seed — this is the whole point of the global plugin.
29
+ */
30
+ export const BOOTSTRAP_SKILL_DESCRIPTION = 'Use when asked to build, create, or ship an MCP server or MCP app, a ChatGPT app, a Claude or ' +
31
+ 'Gemini connector, a Codex plugin or Claude Code plugin, or to make a product, API, or SaaS ' +
32
+ 'reachable by AI agents. Bootstraps Noodle Seed — TypeScript authoring with the noodle CLI, ' +
33
+ 'local validation and testing, and governed hosted deployment.';
34
+ /** Starter prompts surfaced by the Codex install UI (mirrors the website starter intents). */
35
+ const DEFAULT_PROMPTS = [
36
+ 'Create a ChatGPT app for my support workflow',
37
+ 'Create a Claude connector for my SaaS',
38
+ 'Create an MCP app with a small UI',
39
+ 'Create a Codex or Claude Code plugin for this repo',
40
+ ];
41
+ function bootstrapRouterBody() {
42
+ return [
43
+ '# Noodle Seed bootstrap',
44
+ '',
45
+ 'Noodle Seed turns one TypeScript file (`server.ts`) into a production MCP server or app: authored locally with the `noodle` CLI, validated and tested offline, and deployed to a governed hosted MCP endpoint reachable from ChatGPT, Claude, Codex, Cursor, Gemini, and every MCP client. Use this skill whenever the user wants an MCP server or app, a ChatGPT app, a Claude connector, a Codex or Claude Code plugin, or wants their product, API, or SaaS reachable by AI agents.',
46
+ '',
47
+ '## Defer to the project-local skill',
48
+ '',
49
+ '`noodle init` and `noodle agents setup --write` install a fuller, project-configured `noodle-seed` skill into the project (`.claude/skills/noodle-seed/` for Claude Code, `.agents/skills/noodle-seed/` for Codex) plus a managed context block in `CLAUDE.md`/`AGENTS.md`. When that project-local skill exists, read it and follow it instead of this one — it is self-updating (`noodle agents doctor --json`) and carries project defaults plus bundled flagship examples. This plugin skill is only the cold-start bootstrap.',
50
+ '',
51
+ '## Cold start (no project yet)',
52
+ '',
53
+ '1. **Get the CLI.** Check `noodle --version`. If it is missing, run commands zero-install via `npx @noodleseed/one@latest <command>`, or install once with `npm install -g @noodleseed/one@latest` (Node 24+). Never assume the CLI is present.',
54
+ '2. **Scaffold or reconcile.**',
55
+ ' - New or empty directory: `noodle init` — scaffolds `noodle.json`, `src/server.ts`, tests, and the project-local agent files (the full skill + managed context).',
56
+ ' - Existing project: run `noodle setup --write` and `noodle agents setup --write` instead of overwriting unrelated files.',
57
+ '3. **Switch to the project skill.** Read the newly installed project-local `noodle-seed` `SKILL.md` and follow its golden path end to end.',
58
+ '',
59
+ '## The loop (summary — the project skill owns the detail)',
60
+ '',
61
+ 'Author TypeScript in `src/server.ts` with the `@noodleseed/one` SDK → `noodle validate --json` (fix each `error.errors[]` entry at its `path`; never freeform re-edit) → `noodle test --json` → `noodle dev` for a local loopback MCP endpoint → only after explicit approval `noodle deploy` → `noodle connect <claude-code|codex|chatgpt>` to wire the deployed endpoint into a host. The CLI is agent-native: every cold-path command speaks `--json`, so parse machine state, not prose. Discover the full verb surface with `noodle commands --json`.',
62
+ '',
63
+ '## References',
64
+ '',
65
+ 'The same reference set the project-local skill ships, readable before any project exists:',
66
+ '',
67
+ ...REFERENCE_INDEX_LINES,
68
+ '',
69
+ '## Safety',
70
+ '',
71
+ '- Keep secrets, bearer tokens, refresh tokens, static access keys, `.env.noodle` values, and `~/.noodle/config.json` out of prompts, logs, docs, tests, and generated files. Reference managed secrets as `secret("NAME")` in TypeScript and set them with `noodle secrets set`.',
72
+ '- Do not hand-author manifest JSON/YAML, runtime artifacts, connector IR, or hosted asset metadata — the SDK emits them.',
73
+ '- Do not add static data-plane credential paths; hosted access is identity-based.',
74
+ ].join('\n');
75
+ }
76
+ function stampBootstrapRouter(version) {
77
+ const body = bootstrapRouterBody();
78
+ return [
79
+ '---',
80
+ `name: ${PLUGIN_NAME}`,
81
+ `description: ${BOOTSTRAP_SKILL_DESCRIPTION}`,
82
+ `version: ${version}`,
83
+ `hash: ${contentHash(body)}`,
84
+ '---',
85
+ '',
86
+ body,
87
+ '',
88
+ ].join('\n');
89
+ }
90
+ function json(value) {
91
+ return `${JSON.stringify(value, null, 2)}\n`;
92
+ }
93
+ /** The shared plugin directory: two host manifests, the bootstrap router, and the references. */
94
+ export function renderPluginBundle(options = {}) {
95
+ const version = options.version ?? AGENT_KIT_VERSION;
96
+ const shared = {
97
+ name: PLUGIN_NAME,
98
+ displayName: 'Noodle Seed',
99
+ version,
100
+ description: PLUGIN_DESCRIPTION,
101
+ author: AUTHOR,
102
+ homepage: HOMEPAGE,
103
+ repository: 'https://github.com/NoodleSeed-com/plugins',
104
+ license: 'Apache-2.0',
105
+ keywords: ['mcp', 'mcp-server', 'chatgpt-apps', 'claude', 'codex', 'noodleseed'],
106
+ };
107
+ return [
108
+ { path: '.claude-plugin/plugin.json', content: json(shared) },
109
+ {
110
+ path: '.codex-plugin/plugin.json',
111
+ content: json({
112
+ ...shared,
113
+ interface: {
114
+ displayName: 'Noodle Seed',
115
+ shortDescription: 'Build and deploy MCP servers and apps from one TypeScript file.',
116
+ longDescription: PLUGIN_DESCRIPTION,
117
+ developerName: 'Noodle Seed',
118
+ category: 'Developer Tools',
119
+ websiteURL: HOMEPAGE,
120
+ defaultPrompt: DEFAULT_PROMPTS,
121
+ },
122
+ }),
123
+ },
124
+ { path: `skills/${PLUGIN_NAME}/SKILL.md`, content: stampBootstrapRouter(version) },
125
+ ...SKILL_REFERENCES.map((ref) => ({
126
+ path: `skills/${PLUGIN_NAME}/${ref.relPath}`,
127
+ content: ref.render(),
128
+ })),
129
+ ];
130
+ }
131
+ /**
132
+ * Both marketplace catalogs, rendered from one entry: the Claude format (relative-string source;
133
+ * Codex also reads it for legacy compat) and the native Codex format (object source + policy).
134
+ */
135
+ export function renderMarketplaceCatalogs(options = {}) {
136
+ const version = options.version ?? AGENT_KIT_VERSION;
137
+ const entryMetadata = {
138
+ name: PLUGIN_NAME,
139
+ description: PLUGIN_DESCRIPTION,
140
+ version,
141
+ author: OWNER,
142
+ homepage: HOMEPAGE,
143
+ license: 'Apache-2.0',
144
+ category: 'developer-tools',
145
+ };
146
+ return [
147
+ {
148
+ path: '.claude-plugin/marketplace.json',
149
+ content: json({
150
+ name: MARKETPLACE_NAME,
151
+ owner: OWNER,
152
+ description: 'Official Noodle Seed plugins for coding agents.',
153
+ plugins: [{ ...entryMetadata, source: PLUGIN_SOURCE_PATH }],
154
+ }),
155
+ },
156
+ {
157
+ path: '.agents/plugins/marketplace.json',
158
+ content: json({
159
+ name: MARKETPLACE_NAME,
160
+ interface: { displayName: 'Noodle Seed' },
161
+ plugins: [
162
+ {
163
+ ...entryMetadata,
164
+ source: { source: 'local', path: PLUGIN_SOURCE_PATH },
165
+ policy: { installation: 'AVAILABLE' },
166
+ category: 'Developer Tools',
167
+ },
168
+ ],
169
+ }),
170
+ },
171
+ ];
172
+ }
173
+ function marketplaceReadme(version) {
174
+ return [
175
+ '# Noodle Seed plugins',
176
+ '',
177
+ 'The official [Noodle Seed](https://noodleseed.dev) plugin marketplace for AI coding agents.',
178
+ `Install the \`${PLUGIN_NAME}\` plugin once and your coding agent knows how to build, validate,`,
179
+ 'and deploy production MCP servers and apps with the `noodle` CLI from the very first prompt.',
180
+ '',
181
+ '## Install',
182
+ '',
183
+ '**Claude Code**',
184
+ '',
185
+ '```text',
186
+ '/plugin marketplace add NoodleSeed-com/plugins',
187
+ `/plugin install ${PLUGIN_NAME}@${MARKETPLACE_NAME}`,
188
+ '```',
189
+ '',
190
+ '**Codex**',
191
+ '',
192
+ '```text',
193
+ 'codex plugin marketplace add NoodleSeed-com/plugins',
194
+ '```',
195
+ '',
196
+ `Then install \`${PLUGIN_NAME}\` from the \`${MARKETPLACE_NAME}\` marketplace.`,
197
+ '',
198
+ '## What you get',
199
+ '',
200
+ `- The \`${PLUGIN_NAME}\` skill: the cold-start bootstrap plus the full Noodle Seed reference`,
201
+ ' set (SDK surface, CLI commands, compile-error fixes, authoring workflow, widgets, deploy).',
202
+ '- After `noodle init`, projects carry their own self-updating project-local skill; the plugin',
203
+ ' defers to it.',
204
+ '',
205
+ '## About this repository',
206
+ '',
207
+ `This repository is **generated** from \`@noodleseed/agent-kit@${version}\` by the Noodle Seed`,
208
+ 'release process. Do not edit it by hand — changes land through <https://noodleseed.dev>',
209
+ 'releases. Docs: <https://docs.noodleseed.dev>.',
210
+ '',
211
+ ].join('\n');
212
+ }
213
+ /** The full public marketplace repo layout: catalogs + README + the plugin under plugins/<name>/. */
214
+ export function renderMarketplaceRepo(options = {}) {
215
+ const version = options.version ?? AGENT_KIT_VERSION;
216
+ return [
217
+ ...renderMarketplaceCatalogs(options),
218
+ { path: 'README.md', content: marketplaceReadme(version) },
219
+ ...renderPluginBundle(options).map((file) => ({
220
+ path: `plugins/${PLUGIN_NAME}/${file.path}`,
221
+ content: file.content,
222
+ })),
223
+ ];
224
+ }
225
+ //# sourceMappingURL=plugin-bundle.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"plugin-bundle.js","sourceRoot":"","sources":["../src/plugin-bundle.ts"],"names":[],"mappings":"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"}
@@ -5,6 +5,11 @@ export interface SkillReference {
5
5
  readonly relPath: string;
6
6
  readonly render: () => string;
7
7
  }
8
+ /**
9
+ * The one-line routing index for every reference file, shared verbatim by the project-local router
10
+ * and the global authoring-plugin bootstrap router so the two cannot drift.
11
+ */
12
+ export declare const REFERENCE_INDEX_LINES: readonly string[];
8
13
  export declare function skillRouterBody(target: AgentTarget): string;
9
14
  export declare function renderSdkSurfaceReference(): string;
10
15
  export declare function renderCliCommandsReference(): string;
@@ -1 +1 @@
1
- {"version":3,"file":"skill-content.d.ts","sourceRoot":"","sources":["../src/skill-content.ts"],"names":[],"mappings":"AAWA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,YAAY,CAAC;AAkB9C,eAAO,MAAM,iBAAiB,QAEmC,CAAC;AAElE,0EAA0E;AAC1E,MAAM,WAAW,cAAc;IAC7B,QAAQ,CAAC,OAAO,EAAE,MAAM,CAAC;IACzB,QAAQ,CAAC,MAAM,EAAE,MAAM,MAAM,CAAC;CAC/B;AAMD,wBAAgB,eAAe,CAAC,MAAM,EAAE,WAAW,GAAG,MAAM,CA6D3D;AAoOD,wBAAgB,yBAAyB,IAAI,MAAM,CA2ClD;AAMD,wBAAgB,0BAA0B,IAAI,MAAM,CA+BnD;AAMD,wBAAgB,4BAA4B,IAAI,MAAM,CAiDrD;AAMD,wBAAgB,4BAA4B,IAAI,MAAM,CAoBrD;AAMD,eAAO,MAAM,gBAAgB,EAAE,SAAS,cAAc,EAgBrD,CAAC"}
1
+ {"version":3,"file":"skill-content.d.ts","sourceRoot":"","sources":["../src/skill-content.ts"],"names":[],"mappings":"AAWA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,YAAY,CAAC;AAkB9C,eAAO,MAAM,iBAAiB,QAEmC,CAAC;AAElE,0EAA0E;AAC1E,MAAM,WAAW,cAAc;IAC7B,QAAQ,CAAC,OAAO,EAAE,MAAM,CAAC;IACzB,QAAQ,CAAC,MAAM,EAAE,MAAM,MAAM,CAAC;CAC/B;AAMD;;;GAGG;AACH,eAAO,MAAM,qBAAqB,EAAE,SAAS,MAAM,EAgBlD,CAAC;AAEF,wBAAgB,eAAe,CAAC,MAAM,EAAE,WAAW,GAAG,MAAM,CA+C3D;AAoOD,wBAAgB,yBAAyB,IAAI,MAAM,CA2ClD;AAMD,wBAAgB,0BAA0B,IAAI,MAAM,CA+BnD;AAMD,wBAAgB,4BAA4B,IAAI,MAAM,CAiDrD;AAMD,wBAAgB,4BAA4B,IAAI,MAAM,CAoBrD;AAMD,eAAO,MAAM,gBAAgB,EAAE,SAAS,cAAc,EAgBrD,CAAC"}
@@ -20,6 +20,27 @@ export const SKILL_DESCRIPTION = 'Use when building, validating, testing, deploy
20
20
  // ----------------------------------------------------------------------------
21
21
  // SKILL.md router (target-aware preamble; references are shared across targets)
22
22
  // ----------------------------------------------------------------------------
23
+ /**
24
+ * The one-line routing index for every reference file, shared verbatim by the project-local router
25
+ * and the global authoring-plugin bootstrap router so the two cannot drift.
26
+ */
27
+ export const REFERENCE_INDEX_LINES = [
28
+ '- `references/agent-contract.md` — the `--json` envelope, exit codes, and the three output modes.',
29
+ '- `references/sdk-surface.md` — what to import from `@noodleseed/one` and which builder to use.',
30
+ '- `references/cli-commands.md` — every `noodle` command, grouped by area.',
31
+ '- `references/compile-errors.md` — fix `noodle validate` errors by code.',
32
+ '- `references/authoring-workflow.md` — input paths (scrape / OpenAPI import / user interview), the fit check, the validate→test→dev repair loop, connectors, and secrets/variables.',
33
+ '- `references/embedded-assistant.md` — HTTPS origins, managed model config, deploy-before-client sequencing, backend session exchange, browser mounting, and credential boundaries.',
34
+ '- `references/connect-an-api.md` — given an API key: secure it, probe the live API to learn the real shape, model the connector, and prove real output before building.',
35
+ '- `references/experience-design.md` — design the app experience before authoring: funnel/handoff boundary, grounding, two-users, display modes, and the wireframe/UX spec.',
36
+ '- `references/widgets-and-apps.md` — MCP Apps, React `view` widgets, the widget hook surface, output shaping, and CSP.',
37
+ '- `references/test-in-hosts.md` — connect and test in ChatGPT (developer mode), Claude, agent hosts, and MCP Inspector.',
38
+ '- `references/troubleshooting.md` — runtime symptom → cause → fix, in-host and hosted.',
39
+ '- `references/deploy-and-ops.md` — login/link/deploy/status/access and hosted operations.',
40
+ '- `references/publishing.md` — submit to the ChatGPT apps directory and Claude connectors directory.',
41
+ '- `references/chatgpt-compliance.md` — the OpenAI Apps SDK pre-submission checklist (beyond the metadata gate): conversational value, helpful-UI-only, in-chat completion, UI guidelines, domain guardrails, privacy.',
42
+ '- `references/examples.md` — flagship example index and a canonical `server.ts`.',
43
+ ];
23
44
  export function skillRouterBody(target) {
24
45
  const preamble = target === 'codex'
25
46
  ? 'Use this skill for local Noodle Seed project work in Codex.'
@@ -54,21 +75,7 @@ export function skillRouterBody(target) {
54
75
  '',
55
76
  'Scan all of these during discovery; open in full the ones your task touches:',
56
77
  '',
57
- '- `references/agent-contract.md` — the `--json` envelope, exit codes, and the three output modes.',
58
- '- `references/sdk-surface.md` — what to import from `@noodleseed/one` and which builder to use.',
59
- '- `references/cli-commands.md` — every `noodle` command, grouped by area.',
60
- '- `references/compile-errors.md` — fix `noodle validate` errors by code.',
61
- '- `references/authoring-workflow.md` — input paths (scrape / OpenAPI import / user interview), the fit check, the validate→test→dev repair loop, connectors, and secrets/variables.',
62
- '- `references/embedded-assistant.md` — HTTPS origins, managed model config, deploy-before-client sequencing, backend session exchange, browser mounting, and credential boundaries.',
63
- '- `references/connect-an-api.md` — given an API key: secure it, probe the live API to learn the real shape, model the connector, and prove real output before building.',
64
- '- `references/experience-design.md` — design the app experience before authoring: funnel/handoff boundary, grounding, two-users, display modes, and the wireframe/UX spec.',
65
- '- `references/widgets-and-apps.md` — MCP Apps, React `view` widgets, the widget hook surface, output shaping, and CSP.',
66
- '- `references/test-in-hosts.md` — connect and test in ChatGPT (developer mode), Claude, agent hosts, and MCP Inspector.',
67
- '- `references/troubleshooting.md` — runtime symptom → cause → fix, in-host and hosted.',
68
- '- `references/deploy-and-ops.md` — login/link/deploy/status/access and hosted operations.',
69
- '- `references/publishing.md` — submit to the ChatGPT apps directory and Claude connectors directory.',
70
- '- `references/chatgpt-compliance.md` — the OpenAI Apps SDK pre-submission checklist (beyond the metadata gate): conversational value, helpful-UI-only, in-chat completion, UI guidelines, domain guardrails, privacy.',
71
- '- `references/examples.md` — flagship example index and a canonical `server.ts`.',
78
+ ...REFERENCE_INDEX_LINES,
72
79
  '',
73
80
  '## Safety',
74
81
  '',
@@ -1 +1 @@
1
- {"version":3,"file":"skill-content.js","sourceRoot":"","sources":["../src/skill-content.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"skill-content.js","sourceRoot":"","sources":["../src/skill-content.ts"],"names":[],"mappings":"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"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@noodleseed/one",
3
- "version": "0.40.0",
3
+ "version": "0.41.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",