@galaxy-stack/orbit-mcp 0.1.7 → 0.1.9
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/cli.js +9 -17
- package/dist/index.js +9 -17
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -150,26 +150,18 @@ export class UserRepository extends Repository<User> {
|
|
|
150
150
|
{
|
|
151
151
|
id: "testing-pattern",
|
|
152
152
|
title: "Testing",
|
|
153
|
-
summary: "
|
|
154
|
-
content: `Unit-test providers directly; integration-test through
|
|
153
|
+
summary: "OrbitFactory.create(AppModule, { port: 0 }) boots a real HTTP server; bun:test for unit, e2e via fetch on app.port.",
|
|
154
|
+
content: `Unit-test providers directly; integration-test through a REAL HTTP server. There is no separate test factory and OrbitApplication has no handle() \u2014 OrbitFactory boots Bun.serve and you fetch it on the ephemeral port:
|
|
155
155
|
|
|
156
156
|
\`\`\`ts
|
|
157
157
|
import { describe, test, expect } from 'bun:test';
|
|
158
|
+
import { OrbitFactory } from '@galaxy-stack/orbit-core';
|
|
158
159
|
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
expect(service.create({ name: 'a' }).id).toBeDefined();
|
|
163
|
-
});
|
|
164
|
-
});
|
|
165
|
-
\`\`\`
|
|
160
|
+
const app = await OrbitFactory.create(AppModule, { port: 0 });
|
|
161
|
+
await app.listen(0);
|
|
162
|
+
const base = \`http://127.0.0.1:\${app.port}\`;
|
|
166
163
|
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
\`\`\`ts
|
|
170
|
-
const module = await OrbitTestFactory.create(AppModule).compile();
|
|
171
|
-
const app = module.get(OrbitApplication);
|
|
172
|
-
const res = await app.handle(new Request('http://localhost/users'));
|
|
164
|
+
const res = await fetch(\`\${base}/api/users\`);
|
|
173
165
|
expect(res.status).toBe(200);
|
|
174
166
|
\`\`\``
|
|
175
167
|
},
|
|
@@ -280,7 +272,7 @@ var TOOLS = [
|
|
|
280
272
|
function pascal(name) {
|
|
281
273
|
return name.split(/[-_]/).map((s) => s.charAt(0).toUpperCase() + s.slice(1)).join("");
|
|
282
274
|
}
|
|
283
|
-
var DOCS_STAMP = `> orbit-mcp docs \u2014
|
|
275
|
+
var DOCS_STAMP = `> orbit-mcp docs \u2014 ngu\u1ED3n ch\xEDnh th\u1EE9c cho API c\u1EE7a @galaxy-stack/orbit-core 0.2.x. C\xE0i \u0111\u1EB7t: \`bun add @galaxy-stack/orbit-core\` (bun t\u1EF1 ch\u1ECDn version m\u1EDBi nh\u1EA5t, kh\xF4ng c\u1EA7n npm view \u0111\u1EC3 pin). Sau khi c\xE0i, tra exports th\u1EADt b\u1EB1ng c\xE1ch \u0111\u1ECDc .d.ts trong node_modules (\u0111\u01B0\u1EE3c ph\xE9p) \u2014 KH\xD4NG \u0111\u1ECDc source .js hay grep c\u1EA3 c\xE2y node_modules.
|
|
284
276
|
`;
|
|
285
277
|
function executeTool(name, args) {
|
|
286
278
|
const text = (t) => ({ content: [{ type: "text", text: t }] });
|
|
@@ -453,7 +445,7 @@ export class ${cls}Resolver {
|
|
|
453
445
|
var PROTOCOL_VERSION = "2025-03-26";
|
|
454
446
|
var SERVER_INFO = {
|
|
455
447
|
name: "@galaxy-stack/orbit-mcp",
|
|
456
|
-
version: "0.1.
|
|
448
|
+
version: "0.1.8"
|
|
457
449
|
};
|
|
458
450
|
var PROMPTS = [
|
|
459
451
|
{
|
package/dist/index.js
CHANGED
|
@@ -150,26 +150,18 @@ export class UserRepository extends Repository<User> {
|
|
|
150
150
|
{
|
|
151
151
|
id: "testing-pattern",
|
|
152
152
|
title: "Testing",
|
|
153
|
-
summary: "
|
|
154
|
-
content: `Unit-test providers directly; integration-test through
|
|
153
|
+
summary: "OrbitFactory.create(AppModule, { port: 0 }) boots a real HTTP server; bun:test for unit, e2e via fetch on app.port.",
|
|
154
|
+
content: `Unit-test providers directly; integration-test through a REAL HTTP server. There is no separate test factory and OrbitApplication has no handle() \u2014 OrbitFactory boots Bun.serve and you fetch it on the ephemeral port:
|
|
155
155
|
|
|
156
156
|
\`\`\`ts
|
|
157
157
|
import { describe, test, expect } from 'bun:test';
|
|
158
|
+
import { OrbitFactory } from '@galaxy-stack/orbit-core';
|
|
158
159
|
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
expect(service.create({ name: 'a' }).id).toBeDefined();
|
|
163
|
-
});
|
|
164
|
-
});
|
|
165
|
-
\`\`\`
|
|
160
|
+
const app = await OrbitFactory.create(AppModule, { port: 0 });
|
|
161
|
+
await app.listen(0);
|
|
162
|
+
const base = \`http://127.0.0.1:\${app.port}\`;
|
|
166
163
|
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
\`\`\`ts
|
|
170
|
-
const module = await OrbitTestFactory.create(AppModule).compile();
|
|
171
|
-
const app = module.get(OrbitApplication);
|
|
172
|
-
const res = await app.handle(new Request('http://localhost/users'));
|
|
164
|
+
const res = await fetch(\`\${base}/api/users\`);
|
|
173
165
|
expect(res.status).toBe(200);
|
|
174
166
|
\`\`\``
|
|
175
167
|
},
|
|
@@ -283,7 +275,7 @@ var TOOLS = [
|
|
|
283
275
|
function pascal(name) {
|
|
284
276
|
return name.split(/[-_]/).map((s) => s.charAt(0).toUpperCase() + s.slice(1)).join("");
|
|
285
277
|
}
|
|
286
|
-
var DOCS_STAMP = `> orbit-mcp docs \u2014
|
|
278
|
+
var DOCS_STAMP = `> orbit-mcp docs \u2014 ngu\u1ED3n ch\xEDnh th\u1EE9c cho API c\u1EE7a @galaxy-stack/orbit-core 0.2.x. C\xE0i \u0111\u1EB7t: \`bun add @galaxy-stack/orbit-core\` (bun t\u1EF1 ch\u1ECDn version m\u1EDBi nh\u1EA5t, kh\xF4ng c\u1EA7n npm view \u0111\u1EC3 pin). Sau khi c\xE0i, tra exports th\u1EADt b\u1EB1ng c\xE1ch \u0111\u1ECDc .d.ts trong node_modules (\u0111\u01B0\u1EE3c ph\xE9p) \u2014 KH\xD4NG \u0111\u1ECDc source .js hay grep c\u1EA3 c\xE2y node_modules.
|
|
287
279
|
`;
|
|
288
280
|
function executeTool(name, args) {
|
|
289
281
|
const text = (t) => ({ content: [{ type: "text", text: t }] });
|
|
@@ -456,7 +448,7 @@ export class ${cls}Resolver {
|
|
|
456
448
|
var PROTOCOL_VERSION = "2025-03-26";
|
|
457
449
|
var SERVER_INFO = {
|
|
458
450
|
name: "@galaxy-stack/orbit-mcp",
|
|
459
|
-
version: "0.1.
|
|
451
|
+
version: "0.1.8"
|
|
460
452
|
};
|
|
461
453
|
var PROMPTS = [
|
|
462
454
|
{
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@galaxy-stack/orbit-mcp",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.9",
|
|
4
4
|
"description": "Model Context Protocol server for Orbit framework — AI coding agents get framework knowledge, scaffolding, and security review tools",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|