Skip to content

Commit 23f529e

Browse files
committed
v11.9.0
1 parent e538b2d commit 23f529e

File tree

8 files changed

+35
-10
lines changed

8 files changed

+35
-10
lines changed

ServiceWorker.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ class ServiceWorker extends ServiceBase {
2020
*/
2121
singleton: true,
2222
/**
23-
* @member {String} version='11.8.0'
23+
* @member {String} version='11.9.0'
2424
*/
25-
version: '11.8.0'
25+
version: '11.9.0'
2626
}
2727

2828
/**

apps/portal/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@
166166
"@type": "CreativeWork",
167167
"name": "Neo.mjs v11.8.0: The Agent OS Release",
168168
"url": "https://github.com/neomjs/neo/releases/tag/v11.8.0",
169-
"datePublished": "2025-11-21",
169+
"datePublished": "2025-11-23",
170170
"description": "Introduces standalone AI SDK with 'TypeScript without TypeScript' runtime safety (Zod + OpenAPI), enabling autonomous agent workflows. Includes self-healing repository proof-of-concept where agents monitor, analyze, and fix bugs without human intervention.",
171171
"keywords": ["agent OS", "code execution pattern", "autonomous agents", "self-healing repository", "runtime type safety", "typescript without typescript", "Zod validation"]
172172
},

apps/portal/llms.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,11 @@ For example, the Portal app is available at all four environment URLs, plus a fi
105105
- [Multi-Window Applications](https://neomjs.com/#/learn/guides/specificfeatures/MultiWindow)
106106
- [Mixins](https://neomjs.com/#/learn/guides/specificfeatures/Mixins)
107107
- [Portal App](https://neomjs.com/#/learn/guides/specificfeatures/PortalApp)
108+
- [Introduction](https://neomjs.com/#/learn/guides/mcp/Introduction)
109+
- [The Knowledge Base Server](https://neomjs.com/#/learn/guides/mcp/KnowledgeBase)
110+
- [The Memory Core Server](https://neomjs.com/#/learn/guides/mcp/MemoryCore)
111+
- [The GitHub Workflow Server](https://neomjs.com/#/learn/guides/mcp/GitHubWorkflow)
112+
- [Code Execution](https://neomjs.com/#/learn/guides/mcp/CodeExecution)
108113
- [Strategic Workflows](https://neomjs.com/#/learn/guides/ai/StrategicWorkflows)
109114
- [Agent-Agnostic MCP Configuration](https://neomjs.com/#/learn/guides/ai/AgentAgnosticMcpConfig)
110115
- [Memory Core MCP API](https://neomjs.com/#/learn/guides/ai/MemoryCoreMcpApi)

apps/portal/sitemap.xml

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -287,6 +287,26 @@
287287
<loc>https://neomjs.com/#/learn/guides/specificfeatures/PortalApp</loc>
288288
<lastmod>2025-07-15T21:37:07+02:00</lastmod>
289289
</url>
290+
<url>
291+
<loc>https://neomjs.com/#/learn/guides/mcp/Introduction</loc>
292+
<lastmod>2025-11-23T13:10:07+01:00</lastmod>
293+
</url>
294+
<url>
295+
<loc>https://neomjs.com/#/learn/guides/mcp/KnowledgeBase</loc>
296+
<lastmod>2025-11-23T13:10:07+01:00</lastmod>
297+
</url>
298+
<url>
299+
<loc>https://neomjs.com/#/learn/guides/mcp/MemoryCore</loc>
300+
<lastmod>2025-11-23T13:10:07+01:00</lastmod>
301+
</url>
302+
<url>
303+
<loc>https://neomjs.com/#/learn/guides/mcp/GitHubWorkflow</loc>
304+
<lastmod>2025-11-23T13:10:07+01:00</lastmod>
305+
</url>
306+
<url>
307+
<loc>https://neomjs.com/#/learn/guides/mcp/CodeExecution</loc>
308+
<lastmod>2025-11-23T13:10:07+01:00</lastmod>
309+
</url>
290310
<url>
291311
<loc>https://neomjs.com/#/learn/guides/ai/StrategicWorkflows</loc>
292312
<lastmod>2025-10-03T12:01:08+02:00</lastmod>
@@ -426,7 +446,7 @@
426446
</url>
427447
<url>
428448
<loc>https://neomjs.com/apps/portal/index.html</loc>
429-
<lastmod>2025-11-20T22:39:25+01:00</lastmod>
449+
<lastmod>2025-11-23T12:53:29+01:00</lastmod>
430450
</url>
431451
<url>
432452
<loc>https://neomjs.com/apps/realworld/index.html</loc>

apps/portal/view/home/FooterContainer.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ class FooterContainer extends Container {
108108
}, {
109109
module: Component,
110110
cls : ['neo-version'],
111-
text : 'v11.8.0'
111+
text : 'v11.9.0'
112112
}]
113113
}],
114114
/**

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name" : "neo.mjs",
3-
"version" : "11.8.0",
3+
"version" : "11.9.0",
44
"description": "Neo.mjs: The first Agent Operating System for the web. A standalone, type-safe AI SDK combined with a multi-threaded, zero-build platform for building autonomous agents and desktop-class web apps.",
55
"type" : "module",
66
"repository": {

src/DefaultConfig.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -299,12 +299,12 @@ const DefaultConfig = {
299299
useVdomWorker: true,
300300
/**
301301
* buildScripts/injectPackageVersion.mjs will update this value
302-
* @default '11.8.0'
302+
* @default '11.9.0'
303303
* @memberOf! module:Neo
304304
* @name config.version
305305
* @type String
306306
*/
307-
version: '11.8.0'
307+
version: '11.9.0'
308308
};
309309

310310
Object.assign(DefaultConfig, {

0 commit comments

Comments
 (0)