@noodleseed/one 0.89.0 → 0.89.1

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/README.md ADDED
@@ -0,0 +1,193 @@
1
+ # @noodleseed/one
2
+
3
+ **Agent connectivity infrastructure for software teams.**
4
+
5
+ Build the headless, agent-accessible version of your product for ChatGPT, Claude, Codex, embedded
6
+ assistants, and any MCP-compatible client—without rebuilding your backend for every agent surface.
7
+
8
+ Noodle Seed turns your existing APIs, application logic, and data into typed, governed capabilities that
9
+ agents can discover and use. Author one TypeScript `server.ts`, then validate, test, deploy, and operate the
10
+ resulting agent connectivity layer with the `noodle` CLI.
11
+
12
+ ## What is Noodle Seed?
13
+
14
+ Noodle Seed is the infrastructure layer between your software and AI agents. You keep your backend,
15
+ business logic, data, and customer experience; Noodle Seed provides one governed connectivity layer across
16
+ agent surfaces.
17
+
18
+ Instead of building and maintaining a separate integration for each agent host, your team describes the
19
+ capabilities agents may access, connects them to existing systems, and deploys one MCP surface with explicit
20
+ schemas, credential boundaries, tenancy, and policy.
21
+
22
+ ## What is headless software?
23
+
24
+ Headless software makes the capabilities of a product available through typed, authenticated interfaces
25
+ independently of its original graphical interface. Users and agents can access the same product through
26
+ ChatGPT, Claude, coding agents, embedded assistants, or other MCP clients.
27
+
28
+ Headless does not mean UI-free. Every capability remains complete for agents that render no interface,
29
+ while MCP Apps and widgets can add focused visual experiences where a host supports them.
30
+
31
+ ## What `@noodleseed/one` provides
32
+
33
+ This package contains both the TypeScript authoring SDK and the `noodle` command-line interface:
34
+
35
+ - **Author** typed tools, resources, prompts, connectors, and optional widgets in TypeScript.
36
+ - **Validate and test** the compiled MCP surface locally without an account.
37
+ - **Preview** headless results and MCP Apps before deployment.
38
+ - **Deploy** an authenticated, tenant-scoped MCP endpoint through Noodle Seed Cloud.
39
+ - **Operate** deployments with agent-readable JSON output, diagnostics, logs, metrics, and rollback
40
+ commands.
41
+ - **Export** the portable manifest compiled from your TypeScript source.
42
+
43
+ ```text
44
+ Your product and APIs
45
+
46
+ One TypeScript server.ts
47
+
48
+ Noodle Seed connectivity layer
49
+
50
+ ChatGPT · Claude · Codex · embedded assistants · MCP clients
51
+ ```
52
+
53
+ ## Quickstart
54
+
55
+ Create and run a local project without a Noodle Seed account:
56
+
57
+ ```sh
58
+ npx @noodleseed/one@latest init my-noodle-app
59
+ cd my-noodle-app
60
+ npm install
61
+ npm run validate
62
+ npm run dev
63
+ ```
64
+
65
+ The generated project contains a normal TypeScript entrypoint, tests, npm scripts, `noodle.json`, and
66
+ project-local instructions for supported coding agents. It remains your project: edit it with your existing
67
+ tools, commit it to your repository, and run it locally before deciding to deploy.
68
+
69
+ For frequent CLI use, you can install the same package globally:
70
+
71
+ ```sh
72
+ npm install -g @noodleseed/one@latest
73
+ noodle --version
74
+ ```
75
+
76
+ The zero-install `npx @noodleseed/one@latest <command>` path remains available when you do not want a global
77
+ installation.
78
+
79
+ ## Author one TypeScript server
80
+
81
+ `src/server.ts` is the public authoring surface:
82
+
83
+ ```ts
84
+ import { annotations, server, tool, z } from '@noodleseed/one';
85
+
86
+ export default server('acme_status', { title: 'Acme Status', version: '1.0.0' }, [
87
+ tool('get_status', {
88
+ description: 'Read the current Acme service status.',
89
+ input: z.object({}),
90
+ output: z.object({ status: z.string() }),
91
+ annotations: annotations.readOnly(),
92
+ fulfil: () => ({ status: 'operational' }),
93
+ }),
94
+ ]);
95
+ ```
96
+
97
+ From there, connect tools to your own APIs and application logic with typed connectors and explicit input
98
+ and output schemas. Noodle Seed compiles the TypeScript definition into its portable runtime representation;
99
+ you do not author manifest JSON, connector YAML, or generated runtime artifacts.
100
+
101
+ ## Validate, test, and preview locally
102
+
103
+ The local authoring loop requires no login:
104
+
105
+ ```sh
106
+ npm run validate
107
+ npm test
108
+ npm run dev
109
+ ```
110
+
111
+ - `noodle validate` compiles the TypeScript source and reports structured, field-level errors.
112
+ - `noodle test` compiles the server and exercises its loopback MCP endpoint.
113
+ - `noodle dev` runs the local MCP server with hot reload.
114
+ - `noodle check` adds host and MCP Apps readiness checks when your project uses widgets or an embedded
115
+ assistant.
116
+
117
+ Coding agents can discover the complete machine-readable command contract with:
118
+
119
+ ```sh
120
+ npx noodle commands --json
121
+ ```
122
+
123
+ ## Deploy
124
+
125
+ Sign in only when you are ready to use the hosted control plane:
126
+
127
+ ```sh
128
+ npx noodle login
129
+ npm run deploy
130
+ ```
131
+
132
+ The first deployment can infer the signed-in organization and initialized project name, or you can select an
133
+ explicit organization, app, and environment. The deployed MCP endpoint can then be connected to supported
134
+ agent hosts and embedded product surfaces.
135
+
136
+ See the [hosted quickstart](https://docs.noodleseed.dev/docs/quickstart) for account setup, access modes,
137
+ deployment targets, and host connection instructions.
138
+
139
+ ## What you can build
140
+
141
+ - A headless version of an existing SaaS product
142
+ - An MCP server over an existing API
143
+ - A ChatGPT or Claude app with focused widgets
144
+ - A customer-branded embedded assistant
145
+ - Governed internal tools for coding agents
146
+ - Agent-accessible workflows across existing systems
147
+
148
+ The same tool result remains complete in a headless client. Widgets are a progressive enhancement, not a
149
+ second business-logic surface.
150
+
151
+ ## Package surfaces
152
+
153
+ Author the server and its capabilities from the root package:
154
+
155
+ ```ts
156
+ import { connector, server, tool, z } from '@noodleseed/one';
157
+ ```
158
+
159
+ Build optional host-neutral React views with the React entrypoint and semantic stylesheet:
160
+
161
+ ```ts
162
+ import { Action, Frame } from '@noodleseed/one/react';
163
+ import '@noodleseed/one/react/styles.css';
164
+ ```
165
+
166
+ Platform helpers are available from `@noodleseed/one/platform`. The installed executable is `noodle`.
167
+ Use the [generated CLI reference](https://docs.noodleseed.dev/docs/_generated/cli) for the complete command,
168
+ flag, JSON-envelope, and exit-code catalog.
169
+
170
+ ## Runtime support
171
+
172
+ `@noodleseed/one` requires Node.js 24 or newer. The full CLI is supported on macOS and on Windows through
173
+ WSL2 with Ubuntu. Native Windows Node.js, PowerShell, and Command Prompt are not CLI execution environments;
174
+ the CLI prints a WSL2 handoff when invoked there.
175
+
176
+ ## Security and ownership
177
+
178
+ - Inbound MCP or OAuth bearer tokens are not forwarded directly to business backends. Validated identity is
179
+ exchanged for a downstream-scoped credential at the connector boundary.
180
+ - Secrets stay outside source, manifests, logs, widget payloads, and generated runtime artifacts.
181
+ - Hosted requests are authenticated and tenant-scoped before capability execution.
182
+ - Local authoring, validation, testing, and preview work without a Noodle Seed account.
183
+ - Your TypeScript source remains yours. `noodle export manifest` also emits the portable manifest compiled
184
+ from that source for inspection and self-hosting workflows.
185
+
186
+ ## Documentation and support
187
+
188
+ - [Quickstart](https://docs.noodleseed.dev/docs/quickstart)
189
+ - [CLI reference](https://docs.noodleseed.dev/docs/_generated/cli)
190
+ - [Noodle Core public repository](https://github.com/NoodleSeed-com/noodle-core)
191
+ - [Issues and feature requests](https://github.com/NoodleSeed-com/noodle-core/issues)
192
+ - [Security policy](https://github.com/NoodleSeed-com/noodle-core/security)
193
+ - [Apache-2.0 license](https://github.com/NoodleSeed-com/noodle-core/blob/main/LICENSE)
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@noodle-borg/agent-kit",
3
- "version": "0.50.0",
3
+ "version": "0.51.0",
4
4
  "private": true,
5
5
  "license": "Apache-2.0",
6
6
  "type": "module",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@noodleseed/one",
3
- "version": "0.89.0",
3
+ "version": "0.89.1",
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",
@@ -32,6 +32,28 @@
32
32
  "registry": "https://registry.npmjs.org",
33
33
  "access": "public"
34
34
  },
35
+ "repository": {
36
+ "type": "git",
37
+ "url": "https://github.com/NoodleSeed-com/noodle-core",
38
+ "directory": "packages/cli"
39
+ },
40
+ "homepage": "https://docs.noodleseed.dev/docs/quickstart",
41
+ "bugs": {
42
+ "url": "https://github.com/NoodleSeed-com/noodle-core/issues"
43
+ },
44
+ "author": "Noodle Seed",
45
+ "keywords": [
46
+ "noodle-seed",
47
+ "mcp",
48
+ "model-context-protocol",
49
+ "agent-connectivity",
50
+ "headless-software",
51
+ "mcp-server",
52
+ "mcp-apps",
53
+ "ai-agents",
54
+ "typescript",
55
+ "cli"
56
+ ],
35
57
  "files": [
36
58
  "dist",
37
59
  "react",