@galaxy-stack/orbit-mcp 0.1.4 → 0.1.6
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 +6 -1
- package/dist/index.js +6 -1
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -219,11 +219,13 @@ Transports: TCP (zero deps), Redis, NATS, RabbitMQ, Kafka, gRPC \u2014 each in i
|
|
|
219
219
|
var TOOLS = [
|
|
220
220
|
{
|
|
221
221
|
name: "orbit_knowledge_topics",
|
|
222
|
+
annotations: { title: "orbit knowledge topics", readOnlyHint: true },
|
|
222
223
|
description: "List all available Orbit framework knowledge topics with summaries.",
|
|
223
224
|
inputSchema: { type: "object", properties: {} }
|
|
224
225
|
},
|
|
225
226
|
{
|
|
226
227
|
name: "orbit_knowledge_read",
|
|
228
|
+
annotations: { title: "orbit knowledge read", readOnlyHint: true },
|
|
227
229
|
description: "Read one Orbit knowledge topic by id (use orbit_knowledge_topics first).",
|
|
228
230
|
inputSchema: {
|
|
229
231
|
type: "object",
|
|
@@ -235,6 +237,7 @@ var TOOLS = [
|
|
|
235
237
|
},
|
|
236
238
|
{
|
|
237
239
|
name: "orbit_scaffold_module",
|
|
240
|
+
annotations: { title: "orbit scaffold module", readOnlyHint: true },
|
|
238
241
|
description: "Generate a complete Orbit feature module (module, controller, service, optional Zod DTO and tests) as copy-paste-ready code.",
|
|
239
242
|
inputSchema: {
|
|
240
243
|
type: "object",
|
|
@@ -249,6 +252,7 @@ var TOOLS = [
|
|
|
249
252
|
},
|
|
250
253
|
{
|
|
251
254
|
name: "orbit_scaffold_graphql",
|
|
255
|
+
annotations: { title: "orbit scaffold graphql", readOnlyHint: true },
|
|
252
256
|
description: "Generate a GraphQL feature: resolver, object types, input types, and module wiring with security limits.",
|
|
253
257
|
inputSchema: {
|
|
254
258
|
type: "object",
|
|
@@ -261,6 +265,7 @@ var TOOLS = [
|
|
|
261
265
|
},
|
|
262
266
|
{
|
|
263
267
|
name: "orbit_security_review",
|
|
268
|
+
annotations: { title: "orbit security review", readOnlyHint: true },
|
|
264
269
|
description: "Run a static checklist against pasted source code and report missing security hardening with concrete fixes.",
|
|
265
270
|
inputSchema: {
|
|
266
271
|
type: "object",
|
|
@@ -444,7 +449,7 @@ export class ${cls}Resolver {
|
|
|
444
449
|
var PROTOCOL_VERSION = "2025-03-26";
|
|
445
450
|
var SERVER_INFO = {
|
|
446
451
|
name: "@galaxy-stack/orbit-mcp",
|
|
447
|
-
version: "0.1.
|
|
452
|
+
version: "0.1.5"
|
|
448
453
|
};
|
|
449
454
|
var PROMPTS = [
|
|
450
455
|
{
|
package/dist/index.js
CHANGED
|
@@ -222,11 +222,13 @@ function getKnowledge(id) {
|
|
|
222
222
|
var TOOLS = [
|
|
223
223
|
{
|
|
224
224
|
name: "orbit_knowledge_topics",
|
|
225
|
+
annotations: { title: "orbit knowledge topics", readOnlyHint: true },
|
|
225
226
|
description: "List all available Orbit framework knowledge topics with summaries.",
|
|
226
227
|
inputSchema: { type: "object", properties: {} }
|
|
227
228
|
},
|
|
228
229
|
{
|
|
229
230
|
name: "orbit_knowledge_read",
|
|
231
|
+
annotations: { title: "orbit knowledge read", readOnlyHint: true },
|
|
230
232
|
description: "Read one Orbit knowledge topic by id (use orbit_knowledge_topics first).",
|
|
231
233
|
inputSchema: {
|
|
232
234
|
type: "object",
|
|
@@ -238,6 +240,7 @@ var TOOLS = [
|
|
|
238
240
|
},
|
|
239
241
|
{
|
|
240
242
|
name: "orbit_scaffold_module",
|
|
243
|
+
annotations: { title: "orbit scaffold module", readOnlyHint: true },
|
|
241
244
|
description: "Generate a complete Orbit feature module (module, controller, service, optional Zod DTO and tests) as copy-paste-ready code.",
|
|
242
245
|
inputSchema: {
|
|
243
246
|
type: "object",
|
|
@@ -252,6 +255,7 @@ var TOOLS = [
|
|
|
252
255
|
},
|
|
253
256
|
{
|
|
254
257
|
name: "orbit_scaffold_graphql",
|
|
258
|
+
annotations: { title: "orbit scaffold graphql", readOnlyHint: true },
|
|
255
259
|
description: "Generate a GraphQL feature: resolver, object types, input types, and module wiring with security limits.",
|
|
256
260
|
inputSchema: {
|
|
257
261
|
type: "object",
|
|
@@ -264,6 +268,7 @@ var TOOLS = [
|
|
|
264
268
|
},
|
|
265
269
|
{
|
|
266
270
|
name: "orbit_security_review",
|
|
271
|
+
annotations: { title: "orbit security review", readOnlyHint: true },
|
|
267
272
|
description: "Run a static checklist against pasted source code and report missing security hardening with concrete fixes.",
|
|
268
273
|
inputSchema: {
|
|
269
274
|
type: "object",
|
|
@@ -447,7 +452,7 @@ export class ${cls}Resolver {
|
|
|
447
452
|
var PROTOCOL_VERSION = "2025-03-26";
|
|
448
453
|
var SERVER_INFO = {
|
|
449
454
|
name: "@galaxy-stack/orbit-mcp",
|
|
450
|
-
version: "0.1.
|
|
455
|
+
version: "0.1.5"
|
|
451
456
|
};
|
|
452
457
|
var PROMPTS = [
|
|
453
458
|
{
|
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.6",
|
|
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",
|