Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| cad596fb0b | |||
| 4e3ef2e9e3 | |||
| 12d7a5de5a | |||
| 14081fb0f5 |
@@ -2,6 +2,11 @@
|
|||||||
.env.dev
|
.env.dev
|
||||||
.env.prod
|
.env.prod
|
||||||
data
|
data
|
||||||
|
# Exception: the committed draw.io shape catalog (issue #424) lives in a `data/`
|
||||||
|
# dir, but the bare `data` ignore above is meant for runtime state, not this
|
||||||
|
# bundled build asset. Re-include the directory and its contents.
|
||||||
|
!packages/mcp/data/
|
||||||
|
!packages/mcp/data/**
|
||||||
# compiled output
|
# compiled output
|
||||||
/dist
|
/dist
|
||||||
node_modules
|
node_modules
|
||||||
|
|||||||
@@ -13,6 +13,14 @@ import { SHARED_TOOL_SPECS } from '../../../../../../packages/mcp/src/tool-specs
|
|||||||
const mockLoaded = (DocmostClient: loader.DocmostClientCtor) => ({
|
const mockLoaded = (DocmostClient: loader.DocmostClientCtor) => ({
|
||||||
DocmostClient,
|
DocmostClient,
|
||||||
sharedToolSpecs: SHARED_TOOL_SPECS as Record<string, loader.SharedToolSpec>,
|
sharedToolSpecs: SHARED_TOOL_SPECS as Record<string, loader.SharedToolSpec>,
|
||||||
|
// Pure no-network draw.io helpers (#424). Type-correct stubs: these tests
|
||||||
|
// never execute the drawio_shapes / drawio_guide tool bodies.
|
||||||
|
searchShapes: (() => []) as unknown as loader.SearchShapesFn,
|
||||||
|
getGuideSection: (() => ({
|
||||||
|
section: 'index',
|
||||||
|
content: '',
|
||||||
|
sections: [],
|
||||||
|
})) as unknown as loader.GetGuideSectionFn,
|
||||||
});
|
});
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -836,3 +844,104 @@ describe('AiChatToolsService getCurrentPage selection (#388)', () => {
|
|||||||
);
|
);
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
/**
|
||||||
|
* #440 review: the in-app drawio_create / drawio_update handlers must forward
|
||||||
|
* the optional `layout:"elk"` param to the client (5th positional arg), exactly
|
||||||
|
* like the MCP host. It was silently dropped, so ELK auto-layout worked only via
|
||||||
|
* the standalone MCP server, not in-app. These tests pin per-host parity.
|
||||||
|
*/
|
||||||
|
describe('AiChatToolsService drawio layout passthrough (#440)', () => {
|
||||||
|
const createCalls: unknown[][] = [];
|
||||||
|
const updateCalls: unknown[][] = [];
|
||||||
|
|
||||||
|
const fakeClient: Partial<DocmostClientLike> = {
|
||||||
|
drawioCreate: (...args: unknown[]) => {
|
||||||
|
createCalls.push(args);
|
||||||
|
return Promise.resolve({ success: true, nodeId: '#0' });
|
||||||
|
},
|
||||||
|
drawioUpdate: (...args: unknown[]) => {
|
||||||
|
updateCalls.push(args);
|
||||||
|
return Promise.resolve({ success: true, nodeId: '#0' });
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
const tokenServiceStub = {
|
||||||
|
generateAccessToken: jest.fn().mockResolvedValue('access-token'),
|
||||||
|
generateCollabToken: jest.fn().mockResolvedValue('collab-token'),
|
||||||
|
};
|
||||||
|
|
||||||
|
let service: AiChatToolsService;
|
||||||
|
|
||||||
|
beforeEach(() => {
|
||||||
|
createCalls.length = 0;
|
||||||
|
updateCalls.length = 0;
|
||||||
|
jest.spyOn(loader, 'loadDocmostMcp').mockResolvedValue(
|
||||||
|
mockLoaded(function () {
|
||||||
|
return fakeClient as DocmostClientLike;
|
||||||
|
} as unknown as loader.DocmostClientCtor),
|
||||||
|
);
|
||||||
|
service = new AiChatToolsService(
|
||||||
|
tokenServiceStub as never,
|
||||||
|
{} as never,
|
||||||
|
{} as never,
|
||||||
|
{} as never,
|
||||||
|
{} as never,
|
||||||
|
{
|
||||||
|
asSink: () => ({ put: jest.fn(), has: jest.fn(), evict: jest.fn() }),
|
||||||
|
} as never,
|
||||||
|
);
|
||||||
|
});
|
||||||
|
|
||||||
|
afterEach(() => jest.restoreAllMocks());
|
||||||
|
|
||||||
|
const buildTools = () =>
|
||||||
|
service.forUser(
|
||||||
|
{ id: 'user-1', email: 'u@example.com', workspaceId: 'ws-1' } as never,
|
||||||
|
'session-1',
|
||||||
|
'ws-1',
|
||||||
|
'chat-1',
|
||||||
|
);
|
||||||
|
|
||||||
|
it('forwards layout:"elk" to client.drawioCreate as the 5th positional arg', async () => {
|
||||||
|
const tools = await buildTools();
|
||||||
|
await tools.drawioCreate.execute(
|
||||||
|
{
|
||||||
|
pageId: 'p-1',
|
||||||
|
xml: '<mxGraphModel/>',
|
||||||
|
position: 'append',
|
||||||
|
layout: 'elk',
|
||||||
|
} as never,
|
||||||
|
{} as never,
|
||||||
|
);
|
||||||
|
expect(createCalls).toHaveLength(1);
|
||||||
|
// drawioCreate(pageId, where, xml, title, layout) — layout is args[4].
|
||||||
|
expect(createCalls[0][4]).toBe('elk');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('forwards layout:"elk" to client.drawioUpdate as the 5th positional arg', async () => {
|
||||||
|
const tools = await buildTools();
|
||||||
|
await tools.drawioUpdate.execute(
|
||||||
|
{
|
||||||
|
pageId: 'p-1',
|
||||||
|
node: '#0',
|
||||||
|
xml: '<mxGraphModel/>',
|
||||||
|
baseHash: 'h',
|
||||||
|
layout: 'elk',
|
||||||
|
} as never,
|
||||||
|
{} as never,
|
||||||
|
);
|
||||||
|
expect(updateCalls).toHaveLength(1);
|
||||||
|
// drawioUpdate(pageId, node, xml, baseHash, layout) — layout is args[4].
|
||||||
|
expect(updateCalls[0][4]).toBe('elk');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('omits layout (undefined 5th arg) when not requested', async () => {
|
||||||
|
const tools = await buildTools();
|
||||||
|
await tools.drawioCreate.execute(
|
||||||
|
{ pageId: 'p-1', xml: '<mxGraphModel/>', position: 'append' } as never,
|
||||||
|
{} as never,
|
||||||
|
);
|
||||||
|
expect(createCalls[0][4]).toBeUndefined();
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|||||||
@@ -169,8 +169,12 @@ export class AiChatToolsService {
|
|||||||
// provenance tokens) and load the shared tool-spec registry. Client
|
// provenance tokens) and load the shared tool-spec registry. Client
|
||||||
// construction is shared with the page-change detection path (#274) via
|
// construction is shared with the page-change detection path (#274) via
|
||||||
// buildDocmostClient so both go over the exact same authenticated route.
|
// buildDocmostClient so both go over the exact same authenticated route.
|
||||||
const { sharedToolSpecs, createCommentSignalTracker } =
|
const {
|
||||||
await loadDocmostMcp();
|
sharedToolSpecs,
|
||||||
|
createCommentSignalTracker,
|
||||||
|
searchShapes,
|
||||||
|
getGuideSection,
|
||||||
|
} = await loadDocmostMcp();
|
||||||
const client = await this.buildDocmostClient(
|
const client = await this.buildDocmostClient(
|
||||||
user,
|
user,
|
||||||
sessionId,
|
sessionId,
|
||||||
@@ -743,12 +747,24 @@ export class AiChatToolsService {
|
|||||||
// The flat schema fields are regrouped into the client's `where` object.
|
// The flat schema fields are regrouped into the client's `where` object.
|
||||||
drawioCreate: sharedTool(
|
drawioCreate: sharedTool(
|
||||||
sharedToolSpecs.drawioCreate,
|
sharedToolSpecs.drawioCreate,
|
||||||
async ({ pageId, xml, position, anchorNodeId, anchorText, title }) =>
|
async ({
|
||||||
|
pageId,
|
||||||
|
xml,
|
||||||
|
position,
|
||||||
|
anchorNodeId,
|
||||||
|
anchorText,
|
||||||
|
title,
|
||||||
|
layout,
|
||||||
|
}) =>
|
||||||
await client.drawioCreate(
|
await client.drawioCreate(
|
||||||
pageId,
|
pageId,
|
||||||
{ position, anchorNodeId, anchorText },
|
{ position, anchorNodeId, anchorText },
|
||||||
xml,
|
xml,
|
||||||
title,
|
title,
|
||||||
|
// Forward layout:"elk" so in-app auto-placement matches the MCP host
|
||||||
|
// (the shared schema accepts it; dropping it silently disabled ELK
|
||||||
|
// auto-layout for the in-app agent).
|
||||||
|
layout as "elk" | undefined,
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
|
||||||
@@ -756,8 +772,34 @@ export class AiChatToolsService {
|
|||||||
// baseHash is the optimistic lock: mismatch => structured conflict error.
|
// baseHash is the optimistic lock: mismatch => structured conflict error.
|
||||||
drawioUpdate: sharedTool(
|
drawioUpdate: sharedTool(
|
||||||
sharedToolSpecs.drawioUpdate,
|
sharedToolSpecs.drawioUpdate,
|
||||||
async ({ pageId, node, xml, baseHash }) =>
|
async ({ pageId, node, xml, baseHash, layout }) =>
|
||||||
await client.drawioUpdate(pageId, node, xml, baseHash),
|
// Forward layout:"elk" (5th arg) so in-app auto-placement matches the
|
||||||
|
// MCP host; dropping it silently disabled ELK auto-layout in-app.
|
||||||
|
await client.drawioUpdate(
|
||||||
|
pageId,
|
||||||
|
node,
|
||||||
|
xml,
|
||||||
|
baseHash,
|
||||||
|
layout as "elk" | undefined,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
|
||||||
|
// Schema + description live in @docmost/mcp's SHARED_TOOL_SPECS (#424).
|
||||||
|
// Pure no-network helper — calls searchShapes directly, no client method.
|
||||||
|
// Result shape mirrors the MCP server: { query, count, results }.
|
||||||
|
drawioShapes: sharedTool(
|
||||||
|
sharedToolSpecs.drawioShapes,
|
||||||
|
async ({ query, category, limit }) => {
|
||||||
|
const results = searchShapes(query, { category, limit });
|
||||||
|
return { query, count: results.length, results };
|
||||||
|
},
|
||||||
|
),
|
||||||
|
|
||||||
|
// Schema + description live in @docmost/mcp's SHARED_TOOL_SPECS (#424).
|
||||||
|
// Pure no-network helper — calls getGuideSection directly, no client method.
|
||||||
|
drawioGuide: sharedTool(
|
||||||
|
sharedToolSpecs.drawioGuide,
|
||||||
|
async ({ section }) => getGuideSection(section),
|
||||||
),
|
),
|
||||||
|
|
||||||
// Schema + description now live in @docmost/mcp's SHARED_TOOL_SPECS (#294).
|
// Schema + description now live in @docmost/mcp's SHARED_TOOL_SPECS (#294).
|
||||||
|
|||||||
@@ -277,6 +277,14 @@ describe('AiChatToolsService forUser + comment signal (real tracker)', () => {
|
|||||||
// Wire the REAL factory so the in-app path is exercised end to end.
|
// Wire the REAL factory so the in-app path is exercised end to end.
|
||||||
createCommentSignalTracker:
|
createCommentSignalTracker:
|
||||||
createCommentSignalTracker as unknown as loader.CommentSignalTrackerFactory,
|
createCommentSignalTracker as unknown as loader.CommentSignalTrackerFactory,
|
||||||
|
// Pure no-network draw.io helpers (#424) — required on the loader return;
|
||||||
|
// this comment-signal test doesn't exercise them, so no-op stubs suffice.
|
||||||
|
searchShapes: (() => []) as unknown as loader.SearchShapesFn,
|
||||||
|
getGuideSection: (() => ({
|
||||||
|
section: '',
|
||||||
|
content: '',
|
||||||
|
sections: [],
|
||||||
|
})) as unknown as loader.GetGuideSectionFn,
|
||||||
});
|
});
|
||||||
return new AiChatToolsService(
|
return new AiChatToolsService(
|
||||||
tokenServiceStub as never,
|
tokenServiceStub as never,
|
||||||
|
|||||||
@@ -190,6 +190,9 @@ export interface DocmostClientLike {
|
|||||||
},
|
},
|
||||||
xml: string,
|
xml: string,
|
||||||
title?: string,
|
title?: string,
|
||||||
|
// #424: layout:"elk" runs elkjs auto-placement before the write. Mirror the
|
||||||
|
// real client signature so the in-app handler can forward it (parity #440).
|
||||||
|
layout?: 'elk',
|
||||||
): Promise<Record<string, unknown>>;
|
): Promise<Record<string, unknown>>;
|
||||||
// Optimistic-locked full replacement of a diagram (baseHash from drawioGet).
|
// Optimistic-locked full replacement of a diagram (baseHash from drawioGet).
|
||||||
drawioUpdate(
|
drawioUpdate(
|
||||||
@@ -197,6 +200,7 @@ export interface DocmostClientLike {
|
|||||||
node: string,
|
node: string,
|
||||||
xml: string,
|
xml: string,
|
||||||
baseHash: string,
|
baseHash: string,
|
||||||
|
layout?: 'elk',
|
||||||
): Promise<Record<string, unknown>>;
|
): Promise<Record<string, unknown>>;
|
||||||
tableInsertRow(
|
tableInsertRow(
|
||||||
pageId: string,
|
pageId: string,
|
||||||
@@ -337,6 +341,19 @@ export type CommentSignalTrackerFactory = (options: {
|
|||||||
debounceMs?: number;
|
debounceMs?: number;
|
||||||
}) => CommentSignalTrackerLike;
|
}) => CommentSignalTrackerLike;
|
||||||
|
|
||||||
|
// Pure, no-network draw.io helpers (#424). These are plain functions on the
|
||||||
|
// module (NOT DocmostClient methods) — the in-app AI-SDK service calls them
|
||||||
|
// directly to wire drawio_shapes / drawio_guide, mirroring the MCP server.
|
||||||
|
export type SearchShapesFn = (
|
||||||
|
query: string,
|
||||||
|
opts?: { category?: string; limit?: number },
|
||||||
|
) => Array<Record<string, unknown>>;
|
||||||
|
export type GetGuideSectionFn = (section?: string) => {
|
||||||
|
section: string;
|
||||||
|
content: string;
|
||||||
|
sections: string[];
|
||||||
|
};
|
||||||
|
|
||||||
interface DocmostMcpModule {
|
interface DocmostMcpModule {
|
||||||
DocmostClient: DocmostClientCtor;
|
DocmostClient: DocmostClientCtor;
|
||||||
SHARED_TOOL_SPECS: Record<string, SharedToolSpec>;
|
SHARED_TOOL_SPECS: Record<string, SharedToolSpec>;
|
||||||
@@ -344,6 +361,8 @@ interface DocmostMcpModule {
|
|||||||
// loader in unit tests. The in-app layer treats an absent factory as "signal
|
// loader in unit tests. The in-app layer treats an absent factory as "signal
|
||||||
// disabled" — a pure no-op that leaves tool results byte-identical.
|
// disabled" — a pure no-op that leaves tool results byte-identical.
|
||||||
createCommentSignalTracker?: CommentSignalTrackerFactory;
|
createCommentSignalTracker?: CommentSignalTrackerFactory;
|
||||||
|
searchShapes: SearchShapesFn;
|
||||||
|
getGuideSection: GetGuideSectionFn;
|
||||||
}
|
}
|
||||||
|
|
||||||
// TS with module:commonjs downlevels a literal `import()` to `require()`, which
|
// TS with module:commonjs downlevels a literal `import()` to `require()`, which
|
||||||
@@ -368,6 +387,8 @@ export async function loadDocmostMcp(): Promise<{
|
|||||||
DocmostClient: DocmostClientCtor;
|
DocmostClient: DocmostClientCtor;
|
||||||
sharedToolSpecs: Record<string, SharedToolSpec>;
|
sharedToolSpecs: Record<string, SharedToolSpec>;
|
||||||
createCommentSignalTracker?: CommentSignalTrackerFactory;
|
createCommentSignalTracker?: CommentSignalTrackerFactory;
|
||||||
|
searchShapes: SearchShapesFn;
|
||||||
|
getGuideSection: GetGuideSectionFn;
|
||||||
}> {
|
}> {
|
||||||
if (!modulePromise) {
|
if (!modulePromise) {
|
||||||
modulePromise = (async () => {
|
modulePromise = (async () => {
|
||||||
@@ -396,5 +417,8 @@ export async function loadDocmostMcp(): Promise<{
|
|||||||
// Optional: forwarded when present so the in-app layer can build the passive
|
// Optional: forwarded when present so the in-app layer can build the passive
|
||||||
// comment signal (#417); undefined on a stale build => signal disabled.
|
// comment signal (#417); undefined on a stale build => signal disabled.
|
||||||
createCommentSignalTracker: mod.createCommentSignalTracker,
|
createCommentSignalTracker: mod.createCommentSignalTracker,
|
||||||
|
// Pure no-network draw.io helpers (#424); not client methods.
|
||||||
|
searchShapes: mod.searchShapes,
|
||||||
|
getGuideSection: mod.getGuideSection,
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -45,6 +45,16 @@ describe('SHARED_TOOL_SPECS contract parity', () => {
|
|||||||
string,
|
string,
|
||||||
loader.SharedToolSpec
|
loader.SharedToolSpec
|
||||||
>,
|
>,
|
||||||
|
// Pure no-network draw.io helpers (#424). The contract test never executes
|
||||||
|
// a tool body, so type-correct stubs suffice (the real functions can't be
|
||||||
|
// imported here — drawio-shapes.ts uses import.meta, incompatible with the
|
||||||
|
// CommonJS jest transform).
|
||||||
|
searchShapes: (() => []) as unknown as loader.SearchShapesFn,
|
||||||
|
getGuideSection: (() => ({
|
||||||
|
section: 'index',
|
||||||
|
content: '',
|
||||||
|
sections: [],
|
||||||
|
})) as unknown as loader.GetGuideSectionFn,
|
||||||
});
|
});
|
||||||
const service = new AiChatToolsService(
|
const service = new AiChatToolsService(
|
||||||
tokenServiceStub as never,
|
tokenServiceStub as never,
|
||||||
|
|||||||
@@ -124,6 +124,13 @@ describe('deferred catalog ↔ live forUser() toolset partition (#332, F3)', ()
|
|||||||
return {} as DocmostClientLike;
|
return {} as DocmostClientLike;
|
||||||
} as unknown as loader.DocmostClientCtor,
|
} as unknown as loader.DocmostClientCtor,
|
||||||
sharedToolSpecs: SHARED_TOOL_SPECS as Record<string, loader.SharedToolSpec>,
|
sharedToolSpecs: SHARED_TOOL_SPECS as Record<string, loader.SharedToolSpec>,
|
||||||
|
// Pure no-network draw.io helpers (#424); tool bodies are never executed here.
|
||||||
|
searchShapes: (() => []) as unknown as loader.SearchShapesFn,
|
||||||
|
getGuideSection: (() => ({
|
||||||
|
section: 'index',
|
||||||
|
content: '',
|
||||||
|
sections: [],
|
||||||
|
})) as unknown as loader.GetGuideSectionFn,
|
||||||
});
|
});
|
||||||
const service = new AiChatToolsService(
|
const service = new AiChatToolsService(
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -1,8 +1,3 @@
|
|||||||
import * as fs from 'node:fs';
|
|
||||||
import * as os from 'node:os';
|
|
||||||
import { join } from 'node:path';
|
|
||||||
import Fastify, { FastifyInstance } from 'fastify';
|
|
||||||
import fastifyStatic from '@fastify/static';
|
|
||||||
import { resolveStaticAssetHeaders } from './static.module';
|
import { resolveStaticAssetHeaders } from './static.module';
|
||||||
|
|
||||||
// Unit tests for the static-asset cache classifier extracted from the
|
// Unit tests for the static-asset cache classifier extracted from the
|
||||||
@@ -38,69 +33,3 @@ describe('resolveStaticAssetHeaders', () => {
|
|||||||
expect(headers['vary']).toBe('Accept-Encoding');
|
expect(headers['vary']).toBe('Accept-Encoding');
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
// Integration test proving the ACTUAL response header emitted by @fastify/static
|
|
||||||
// with the exact registration options StaticModule uses. This is the regression
|
|
||||||
// guard for #452: without `cacheControl: false`, @fastify/static writes its own
|
|
||||||
// `Cache-Control: public, max-age=0` AFTER the setHeaders callback, overwriting
|
|
||||||
// the immutable header — the /assets/ assertion below would then fail.
|
|
||||||
describe('static.module @fastify/static registration (integration)', () => {
|
|
||||||
let app: FastifyInstance;
|
|
||||||
let tmpDir: string;
|
|
||||||
|
|
||||||
beforeAll(async () => {
|
|
||||||
tmpDir = fs.mkdtempSync(join(os.tmpdir(), 'static-module-spec-'));
|
|
||||||
fs.mkdirSync(join(tmpDir, 'assets'), { recursive: true });
|
|
||||||
fs.mkdirSync(join(tmpDir, 'locales'), { recursive: true });
|
|
||||||
fs.writeFileSync(
|
|
||||||
join(tmpDir, 'assets', 'index-a1b2c3.js'),
|
|
||||||
'console.log(1);',
|
|
||||||
);
|
|
||||||
fs.writeFileSync(join(tmpDir, 'locales', 'en.json'), '{"hello":"world"}');
|
|
||||||
|
|
||||||
app = Fastify();
|
|
||||||
// Mirror StaticModule.onModuleInit's registration options exactly.
|
|
||||||
await app.register(fastifyStatic, {
|
|
||||||
root: tmpDir,
|
|
||||||
wildcard: false,
|
|
||||||
preCompressed: true,
|
|
||||||
cacheControl: false,
|
|
||||||
setHeaders: (res, filePath) => {
|
|
||||||
for (const [name, value] of Object.entries(
|
|
||||||
resolveStaticAssetHeaders(filePath),
|
|
||||||
)) {
|
|
||||||
res.setHeader(name, value);
|
|
||||||
}
|
|
||||||
},
|
|
||||||
});
|
|
||||||
await app.ready();
|
|
||||||
});
|
|
||||||
|
|
||||||
afterAll(async () => {
|
|
||||||
await app.close();
|
|
||||||
fs.rmSync(tmpDir, { recursive: true, force: true });
|
|
||||||
});
|
|
||||||
|
|
||||||
it('serves a hashed /assets/ file with an immutable, 1-year cache-control', async () => {
|
|
||||||
const res = await app.inject({
|
|
||||||
method: 'GET',
|
|
||||||
url: '/assets/index-a1b2c3.js',
|
|
||||||
});
|
|
||||||
expect(res.statusCode).toBe(200);
|
|
||||||
const cacheControl = res.headers['cache-control'];
|
|
||||||
expect(cacheControl).toContain('immutable');
|
|
||||||
expect(cacheControl).toContain('max-age=31536000');
|
|
||||||
});
|
|
||||||
|
|
||||||
it('serves a non-hashed /locales/ file WITHOUT an immutable cache-control', async () => {
|
|
||||||
const res = await app.inject({ method: 'GET', url: '/locales/en.json' });
|
|
||||||
expect(res.statusCode).toBe(200);
|
|
||||||
// resolveStaticAssetHeaders sets no cache-control here and cacheControl:false
|
|
||||||
// stops @fastify/static from adding one, so the browser revalidates by
|
|
||||||
// etag/last-modified — either an absent header or one without `immutable`.
|
|
||||||
const cacheControl = res.headers['cache-control'];
|
|
||||||
if (cacheControl !== undefined) {
|
|
||||||
expect(cacheControl).not.toContain('immutable');
|
|
||||||
}
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|||||||
@@ -115,11 +115,6 @@ export class StaticModule implements OnModuleInit {
|
|||||||
// Serve the build-time .br/.gz neighbour when the client accepts it
|
// Serve the build-time .br/.gz neighbour when the client accepts it
|
||||||
// (see vite-plugin-compression2 in apps/client/vite.config.ts).
|
// (see vite-plugin-compression2 in apps/client/vite.config.ts).
|
||||||
preCompressed: true,
|
preCompressed: true,
|
||||||
// @fastify/static's default cacheControl:true writes its own
|
|
||||||
// Cache-Control (from maxAge, default 0) AFTER the setHeaders callback,
|
|
||||||
// silently overwriting the immutable header that resolveStaticAssetHeaders
|
|
||||||
// sets — disable it so setHeaders/resolveStaticAssetHeaders own the header.
|
|
||||||
cacheControl: false,
|
|
||||||
setHeaders: (res, filePath) => {
|
setHeaders: (res, filePath) => {
|
||||||
for (const [name, value] of Object.entries(
|
for (const [name, value] of Object.entries(
|
||||||
resolveStaticAssetHeaders(filePath),
|
resolveStaticAssetHeaders(filePath),
|
||||||
|
|||||||
Binary file not shown.
@@ -49,6 +49,7 @@
|
|||||||
"@tiptap/starter-kit": "3.20.4",
|
"@tiptap/starter-kit": "3.20.4",
|
||||||
"@types/jsdom": "^27.0.0",
|
"@types/jsdom": "^27.0.0",
|
||||||
"axios": "^1.6.0",
|
"axios": "^1.6.0",
|
||||||
|
"elkjs": "^0.11.1",
|
||||||
"form-data": "^4.0.0",
|
"form-data": "^4.0.0",
|
||||||
"jsdom": "^27.4.0",
|
"jsdom": "^27.4.0",
|
||||||
"marked": "^17.0.1",
|
"marked": "^17.0.1",
|
||||||
|
|||||||
@@ -54,6 +54,7 @@ import {
|
|||||||
countUserCells,
|
countUserCells,
|
||||||
} from "./lib/drawio-xml.js";
|
} from "./lib/drawio-xml.js";
|
||||||
import { renderDiagramShapes } from "./lib/drawio-preview.js";
|
import { renderDiagramShapes } from "./lib/drawio-preview.js";
|
||||||
|
import { applyElkLayout } from "./lib/drawio-layout.js";
|
||||||
import {
|
import {
|
||||||
applyTextEdits,
|
applyTextEdits,
|
||||||
TextEdit,
|
TextEdit,
|
||||||
@@ -3753,6 +3754,7 @@ export class DocmostClient {
|
|||||||
},
|
},
|
||||||
xml: string,
|
xml: string,
|
||||||
title?: string,
|
title?: string,
|
||||||
|
layout?: "elk",
|
||||||
): Promise<{
|
): Promise<{
|
||||||
success: boolean;
|
success: boolean;
|
||||||
nodeId: string;
|
nodeId: string;
|
||||||
@@ -3783,8 +3785,12 @@ export class DocmostClient {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Optional server-side ELK auto-layout: the model declares structure with
|
||||||
|
// rough coords, ELK computes the pixels (best-effort — returns the input
|
||||||
|
// unchanged on any layout failure).
|
||||||
|
const laidOutXml = layout === "elk" ? await applyElkLayout(xml) : xml;
|
||||||
// Pre-write pipeline (throws a structured DrawioLintError on any violation).
|
// Pre-write pipeline (throws a structured DrawioLintError on any violation).
|
||||||
const prepared = prepareModel(xml);
|
const prepared = prepareModel(laidOutXml);
|
||||||
const inner = renderDiagramShapes(prepared.cells, prepared.bbox);
|
const inner = renderDiagramShapes(prepared.cells, prepared.bbox);
|
||||||
const diagramTitle = title || "Page-1";
|
const diagramTitle = title || "Page-1";
|
||||||
const svg = buildDrawioSvg(prepared.modelXml, inner, prepared.bbox, diagramTitle);
|
const svg = buildDrawioSvg(prepared.modelXml, inner, prepared.bbox, diagramTitle);
|
||||||
@@ -3898,6 +3904,7 @@ export class DocmostClient {
|
|||||||
node: string,
|
node: string,
|
||||||
xml: string,
|
xml: string,
|
||||||
baseHash: string,
|
baseHash: string,
|
||||||
|
layout?: "elk",
|
||||||
): Promise<{
|
): Promise<{
|
||||||
success: boolean;
|
success: boolean;
|
||||||
nodeId: string;
|
nodeId: string;
|
||||||
@@ -3935,8 +3942,10 @@ export class DocmostClient {
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Optional server-side ELK auto-layout (best-effort; see drawioCreate).
|
||||||
|
const laidOutXml = layout === "elk" ? await applyElkLayout(xml) : xml;
|
||||||
// Pipeline for the new content (throws a structured DrawioLintError).
|
// Pipeline for the new content (throws a structured DrawioLintError).
|
||||||
const prepared = prepareModel(xml);
|
const prepared = prepareModel(laidOutXml);
|
||||||
const inner = renderDiagramShapes(prepared.cells, prepared.bbox);
|
const inner = renderDiagramShapes(prepared.cells, prepared.bbox);
|
||||||
const diagramTitle = oldAttrs.title || "Page-1";
|
const diagramTitle = oldAttrs.title || "Page-1";
|
||||||
const svg = buildDrawioSvg(prepared.modelXml, inner, prepared.bbox, diagramTitle);
|
const svg = buildDrawioSvg(prepared.modelXml, inner, prepared.bbox, diagramTitle);
|
||||||
|
|||||||
@@ -5,6 +5,8 @@ import { fileURLToPath } from "url";
|
|||||||
import { dirname, join } from "path";
|
import { dirname, join } from "path";
|
||||||
import { DocmostClient, DocmostMcpConfig } from "./client.js";
|
import { DocmostClient, DocmostMcpConfig } from "./client.js";
|
||||||
import { parseNodeArg } from "@docmost/prosemirror-markdown";
|
import { parseNodeArg } from "@docmost/prosemirror-markdown";
|
||||||
|
import { searchShapes } from "./lib/drawio-shapes.js";
|
||||||
|
import { getGuideSection } from "./lib/drawio-guide.js";
|
||||||
import { SHARED_TOOL_SPECS, SharedToolSpec } from "./tool-specs.js";
|
import { SHARED_TOOL_SPECS, SharedToolSpec } from "./tool-specs.js";
|
||||||
import {
|
import {
|
||||||
createCommentSignalTracker,
|
createCommentSignalTracker,
|
||||||
@@ -46,6 +48,13 @@ export type {
|
|||||||
CommentSignalProbeResult,
|
CommentSignalProbeResult,
|
||||||
CommentSignalTrackerOptions,
|
CommentSignalTrackerOptions,
|
||||||
} from "./comment-signal.js";
|
} from "./comment-signal.js";
|
||||||
|
// Re-export the pure, no-network draw.io helpers (#424) so the in-app AI-SDK
|
||||||
|
// service can wire drawio_shapes / drawio_guide off the loaded module. These are
|
||||||
|
// NOT client methods (no page/backend hit) — the in-app handler calls them
|
||||||
|
// directly, mirroring how the standalone MCP server wires them here.
|
||||||
|
export { searchShapes } from "./lib/drawio-shapes.js";
|
||||||
|
export type { SearchShapesOptions } from "./lib/drawio-shapes.js";
|
||||||
|
export { getGuideSection } from "./lib/drawio-guide.js";
|
||||||
|
|
||||||
// Read version from package.json
|
// Read version from package.json
|
||||||
const __filename = fileURLToPath(import.meta.url);
|
const __filename = fileURLToPath(import.meta.url);
|
||||||
@@ -75,7 +84,7 @@ const VERSION = packageJson.version;
|
|||||||
export const SERVER_INSTRUCTIONS =
|
export const SERVER_INSTRUCTIONS =
|
||||||
"Docmost editing guide — choose the tool by intent.\n" +
|
"Docmost editing guide — choose the tool by intent.\n" +
|
||||||
"READ: find a page -> search (workspace-wide full-text); list -> list_pages / list_spaces. Locate blocks and their ids CHEAPLY -> get_outline (compact top-level map; start here, not get_page_json). One block's subtree -> get_node (by attrs.id, or \"#<index>\" for tables, which carry no id). Find every occurrence of a string/regex ON a page (and where each is) -> search_in_page, NOT block-by-block get_node — it returns each hit's node ref + block index + context for a targeted comment. Whole page -> get_page (Markdown, lossy; inline <span data-comment-id> tags are comment anchors — markup, not text) or get_page_json (lossless ProseMirror with block ids). Hand a huge page (with images) to an external consumer without pulling it through the model context -> stash_page (returns a short-lived anonymous URL).\n" +
|
"READ: find a page -> search (workspace-wide full-text); list -> list_pages / list_spaces. Locate blocks and their ids CHEAPLY -> get_outline (compact top-level map; start here, not get_page_json). One block's subtree -> get_node (by attrs.id, or \"#<index>\" for tables, which carry no id). Find every occurrence of a string/regex ON a page (and where each is) -> search_in_page, NOT block-by-block get_node — it returns each hit's node ref + block index + context for a targeted comment. Whole page -> get_page (Markdown, lossy; inline <span data-comment-id> tags are comment anchors — markup, not text) or get_page_json (lossless ProseMirror with block ids). Hand a huge page (with images) to an external consumer without pulling it through the model context -> stash_page (returns a short-lived anonymous URL).\n" +
|
||||||
"EDIT: fix wording/typos/numbers -> edit_page_text (find/replace inside blocks, no node id needed). Change ONE block (paragraph/heading/callout/etc.) structurally -> patch_node (by attrs.id from get_outline). Add a block -> insert_node (before/after a block by attrs.id or by anchor text, or append). Remove a block -> delete_node (by attrs.id). Tables -> table_get / table_update_cell / table_insert_row / table_delete_row (address by \"#<index>\" from get_outline; table nodes have no attrs.id). Images -> insert_image (add from a web URL) / replace_image (swap an existing image). Draw.io diagrams -> drawio_create (create from mxGraph XML and insert), drawio_get (read a diagram as mxGraph XML + a hash), drawio_update (replace a diagram; pass the hash from drawio_get as baseHash for optimistic locking). Footnotes -> insert_footnote. Bulk/structural rewrite -> update_page_json (full ProseMirror replace; prefer the granular tools above to avoid resending the whole ~100KB+ document). Complex/scripted rewrite (multiple coordinated edits, renumbering) -> docmost_transform: write a JS `(doc, ctx) => doc` transform, preview the diff with dryRun (default), then apply with dryRun:false; ctx.helpers includes commentsToFootnotes for turning inline comments into numbered footnotes.\n" +
|
"EDIT: fix wording/typos/numbers -> edit_page_text (find/replace inside blocks, no node id needed). Change ONE block (paragraph/heading/callout/etc.) structurally -> patch_node (by attrs.id from get_outline). Add a block -> insert_node (before/after a block by attrs.id or by anchor text, or append). Remove a block -> delete_node (by attrs.id). Tables -> table_get / table_update_cell / table_insert_row / table_delete_row (address by \"#<index>\" from get_outline; table nodes have no attrs.id). Images -> insert_image (add from a web URL) / replace_image (swap an existing image). Draw.io diagrams -> drawio_create (create from mxGraph XML and insert), drawio_get (read a diagram as mxGraph XML + a hash), drawio_update (replace a diagram; pass the hash from drawio_get as baseHash for optimistic locking); before authoring a diagram, drawio_shapes (look up verified stencil style-strings so a shape name never renders as an empty box) and drawio_guide (on-demand authoring reference: skeleton/layout/containers/icons-aws/icons-azure), and pass layout:\"elk\" to drawio_create/drawio_update to auto-place nodes. Footnotes -> insert_footnote. Bulk/structural rewrite -> update_page_json (full ProseMirror replace; prefer the granular tools above to avoid resending the whole ~100KB+ document). Complex/scripted rewrite (multiple coordinated edits, renumbering) -> docmost_transform: write a JS `(doc, ctx) => doc` transform, preview the diff with dryRun (default), then apply with dryRun:false; ctx.helpers includes commentsToFootnotes for turning inline comments into numbered footnotes.\n" +
|
||||||
"PAGES: new -> create_page (Markdown). Rename (title only) -> rename_page. Move -> move_page. Delete -> delete_page (SOFT delete — the page goes to trash and is restorable; nothing is permanent). Copy/replace a page's whole content from another page (server-side, no document through the model) -> copy_page_content. Sharing -> share_page / unshare_page / list_shares; share_page makes the page PUBLICLY accessible — do it only when explicitly asked.\n" +
|
"PAGES: new -> create_page (Markdown). Rename (title only) -> rename_page. Move -> move_page. Delete -> delete_page (SOFT delete — the page goes to trash and is restorable; nothing is permanent). Copy/replace a page's whole content from another page (server-side, no document through the model) -> copy_page_content. Sharing -> share_page / unshare_page / list_shares; share_page makes the page PUBLICLY accessible — do it only when explicitly asked.\n" +
|
||||||
"COMMENTS: create_comment is always inline and requires an EXACT selection — contiguous text from a single block, <=250 chars (fails rather than leaving an unanchored comment); reply to a thread via parentCommentId. Propose a concrete text fix for one-click human approval -> create_comment with suggestedText (the exact plain-text replacement for the selection; the selection must then be UNIQUE in the page — extend it with context if needed); prefer this over editing directly when the change is subjective or needs the author's sign-off. Manage -> list_comments, update_comment, resolve_comment (resolve/reopen, reversible — prefer over delete to close), delete_comment, check_new_comments.\n" +
|
"COMMENTS: create_comment is always inline and requires an EXACT selection — contiguous text from a single block, <=250 chars (fails rather than leaving an unanchored comment); reply to a thread via parentCommentId. Propose a concrete text fix for one-click human approval -> create_comment with suggestedText (the exact plain-text replacement for the selection; the selection must then be UNIQUE in the page — extend it with context if needed); prefer this over editing directly when the change is subjective or needs the author's sign-off. Manage -> list_comments, update_comment, resolve_comment (resolve/reopen, reversible — prefer over delete to close), delete_comment, check_new_comments.\n" +
|
||||||
"HISTORY: review what changed -> diff_page_versions (a historyId vs current, or two versions). List saved versions -> list_page_history. Undo a bad edit -> restore_page_version (writes a past version back as current; itself revertible). Lossless markdown round-trip (download, edit, re-upload, incl. comment anchors) -> export_page_markdown / import_page_markdown.";
|
"HISTORY: review what changed -> diff_page_versions (a historyId vs current, or two versions). List saved versions -> list_page_history. Undo a bad edit -> restore_page_version (writes a past version back as current; itself revertible). Lossless markdown round-trip (download, edit, re-upload, incl. comment anchors) -> export_page_markdown / import_page_markdown.";
|
||||||
@@ -600,12 +609,13 @@ registerShared(
|
|||||||
// Tool: drawio_create — lint mxGraph XML, build the .drawio.svg, insert a node.
|
// Tool: drawio_create — lint mxGraph XML, build the .drawio.svg, insert a node.
|
||||||
registerShared(
|
registerShared(
|
||||||
SHARED_TOOL_SPECS.drawioCreate,
|
SHARED_TOOL_SPECS.drawioCreate,
|
||||||
async ({ pageId, xml, position, anchorNodeId, anchorText, title }) => {
|
async ({ pageId, xml, position, anchorNodeId, anchorText, title, layout }) => {
|
||||||
const result = await docmostClient.drawioCreate(
|
const result = await docmostClient.drawioCreate(
|
||||||
pageId,
|
pageId,
|
||||||
{ position, anchorNodeId, anchorText },
|
{ position, anchorNodeId, anchorText },
|
||||||
xml,
|
xml,
|
||||||
title,
|
title,
|
||||||
|
layout,
|
||||||
);
|
);
|
||||||
return jsonContent(result);
|
return jsonContent(result);
|
||||||
},
|
},
|
||||||
@@ -614,12 +624,29 @@ registerShared(
|
|||||||
// Tool: drawio_update — optimistic-locked full replacement of a diagram.
|
// Tool: drawio_update — optimistic-locked full replacement of a diagram.
|
||||||
registerShared(
|
registerShared(
|
||||||
SHARED_TOOL_SPECS.drawioUpdate,
|
SHARED_TOOL_SPECS.drawioUpdate,
|
||||||
async ({ pageId, node, xml, baseHash }) => {
|
async ({ pageId, node, xml, baseHash, layout }) => {
|
||||||
const result = await docmostClient.drawioUpdate(pageId, node, xml, baseHash);
|
const result = await docmostClient.drawioUpdate(
|
||||||
|
pageId,
|
||||||
|
node,
|
||||||
|
xml,
|
||||||
|
baseHash,
|
||||||
|
layout,
|
||||||
|
);
|
||||||
return jsonContent(result);
|
return jsonContent(result);
|
||||||
},
|
},
|
||||||
);
|
);
|
||||||
|
|
||||||
|
// Tool: drawio_shapes — verified stencil-style lookup (no network; #424).
|
||||||
|
registerShared(SHARED_TOOL_SPECS.drawioShapes, async ({ query, category, limit }) => {
|
||||||
|
const results = searchShapes(query, { category, limit });
|
||||||
|
return jsonContent({ query, count: results.length, results });
|
||||||
|
});
|
||||||
|
|
||||||
|
// Tool: drawio_guide — on-demand draw.io authoring reference (no network; #424).
|
||||||
|
registerShared(SHARED_TOOL_SPECS.drawioGuide, async ({ section }) => {
|
||||||
|
return jsonContent(getGuideSection(section));
|
||||||
|
});
|
||||||
|
|
||||||
// Tool: share_page
|
// Tool: share_page
|
||||||
// Schema + description now live in the shared registry (#294). The execute body
|
// Schema + description now live in the shared registry (#294). The execute body
|
||||||
// keeps this transport's own `searchIndexing ?? true` default.
|
// keeps this transport's own `searchIndexing ?? true` default.
|
||||||
|
|||||||
@@ -0,0 +1,228 @@
|
|||||||
|
// Progressive-disclosure authoring reference for the `drawio_guide` tool
|
||||||
|
// (issue #424, stage 2). The FULL draw.io authoring guide would bloat every
|
||||||
|
// context window, so it is split into small sections the model reads on demand:
|
||||||
|
// skeleton | layout | containers | icons-aws | icons-azure
|
||||||
|
// Content is written directly from the issue #424 appendix (the layout
|
||||||
|
// heuristics, container rules, AWS icon patterns + gotchas + blocklist, and
|
||||||
|
// Azure image-style paths). ACCEPTANCE: each section stays <= ~4 KB so pulling
|
||||||
|
// one is cheap.
|
||||||
|
|
||||||
|
export type GuideSection =
|
||||||
|
| "skeleton"
|
||||||
|
| "layout"
|
||||||
|
| "containers"
|
||||||
|
| "icons-aws"
|
||||||
|
| "icons-azure";
|
||||||
|
|
||||||
|
export const GUIDE_SECTIONS: GuideSection[] = [
|
||||||
|
"skeleton",
|
||||||
|
"layout",
|
||||||
|
"containers",
|
||||||
|
"icons-aws",
|
||||||
|
"icons-azure",
|
||||||
|
];
|
||||||
|
|
||||||
|
const SKELETON = `# drawio_guide: skeleton
|
||||||
|
|
||||||
|
Canonical mxGraph skeleton. id="0" and id="1" are MANDATORY sentinels; every
|
||||||
|
real cell has parent="1" (or a container id). Set adaptiveColors="auto" on the
|
||||||
|
model so Docmost's dark theme adapts strokeColor/fillColor/fontColor="default".
|
||||||
|
|
||||||
|
\`\`\`xml
|
||||||
|
<mxGraphModel dx="800" dy="600" grid="1" gridSize="10" adaptiveColors="auto"
|
||||||
|
page="1" pageWidth="850" pageHeight="1100">
|
||||||
|
<root>
|
||||||
|
<mxCell id="0"/>
|
||||||
|
<mxCell id="1" parent="0"/>
|
||||||
|
<mxCell id="2" value="Start" style="rounded=1;whiteSpace=wrap;html=1;"
|
||||||
|
vertex="1" parent="1">
|
||||||
|
<mxGeometry x="40" y="40" width="140" height="60" as="geometry"/>
|
||||||
|
</mxCell>
|
||||||
|
<mxCell id="3" value="Store" style="shape=cylinder3;whiteSpace=wrap;html=1;"
|
||||||
|
vertex="1" parent="1">
|
||||||
|
<mxGeometry x="40" y="200" width="80" height="80" as="geometry"/>
|
||||||
|
</mxCell>
|
||||||
|
<mxCell id="e1" edge="1" parent="1" source="2" target="3"
|
||||||
|
style="edgeStyle=orthogonalEdgeStyle;rounded=1;html=1;">
|
||||||
|
<mxGeometry relative="1" as="geometry"/>
|
||||||
|
</mxCell>
|
||||||
|
</root>
|
||||||
|
</mxGraphModel>
|
||||||
|
\`\`\`
|
||||||
|
|
||||||
|
Three accepted inputs to drawio_create/drawio_update: a bare <mxGraphModel>, a
|
||||||
|
full <mxfile> (decoded to its first page), or a raw list of <mxCell> (the server
|
||||||
|
wraps it and adds the id=0/id=1 sentinels).
|
||||||
|
|
||||||
|
Hard rules: a cell is vertex="1" XOR edge="1" (a container/group is neither);
|
||||||
|
every edge has a child <mxGeometry relative="1" as="geometry"/>; ids are unique;
|
||||||
|
no XML comments; put html=1 in styles and XML-escape value (& -> &,
|
||||||
|
< -> <); a newline in a label is 
, never a literal \\n. Don't guess
|
||||||
|
shape=mxgraph.* names — call drawio_shapes first (a wrong name renders empty).`;
|
||||||
|
|
||||||
|
const LAYOUT = `# drawio_guide: layout
|
||||||
|
|
||||||
|
Turn "make it look good" into checkable numbers. Or pass layout:"elk" to
|
||||||
|
drawio_create/drawio_update and the server computes coordinates for you (ELK
|
||||||
|
layered layout, honouring nested containers) — you declare structure, it places
|
||||||
|
pixels.
|
||||||
|
|
||||||
|
Spacing (when placing by hand):
|
||||||
|
- Horizontal gap between shapes 200-220px; vertical between rows/lanes 250px;
|
||||||
|
auxiliary services (monitoring, DLQ) sit below the main flow with 280px+ gap.
|
||||||
|
- Coordinates are multiples of 10 (grid). Base sizes: rectangle 140x60, diamond
|
||||||
|
140x80, circle 60x60; cloud icons 78x78 primary / 65x65 secondary; font 12px.
|
||||||
|
- Main flow left-to-right, one primary axis; <=3-4 lanes/zones; one icon/service.
|
||||||
|
|
||||||
|
Edges:
|
||||||
|
- <=1 bend per edge (ideally 0); an edge must not cross another shape's bbox;
|
||||||
|
two edges must not lie on top of each other.
|
||||||
|
- Give explicit exitX/exitY/entryX/entryY for every non-straight link or the
|
||||||
|
orthogonal router drives lines through shapes. Vertical link:
|
||||||
|
exitX=0.5;exitY=1 -> entryX=0.5;entryY=0. For 2+ links on one node, spread the
|
||||||
|
attach points 0.25 / 0.5 / 0.75.
|
||||||
|
- Base edge style:
|
||||||
|
edgeStyle=orthogonalEdgeStyle;rounded=1;orthogonalLoop=1;jettySize=auto;html=1;strokeWidth=2;exitX=1;exitY=0.5;entryX=0;entryY=0.5;
|
||||||
|
- Edge labels: 1-2 words max, labelBackgroundColor=#F5F5F5;fontSize=11;. Don't
|
||||||
|
label an obvious flow (Lambda->DynamoDB needs no "Write"); prefer numbering
|
||||||
|
stages (1,2,3) over many labels.
|
||||||
|
- Line semantics: solid = main/sync; dashed=1 = async; red dashed
|
||||||
|
strokeColor=#DD344C = error path.
|
||||||
|
|
||||||
|
Alignment: centre a child under its parent by math, not by eye:
|
||||||
|
child.x = parent.center_x - child.width/2.
|
||||||
|
|
||||||
|
The linter returns quality WARNINGS (bbox overlap, edge through a shape,
|
||||||
|
edge-on-edge, gap <150px, label wider than its shape, negative/off-page coords).
|
||||||
|
They do not block the write — fix them and retry, max 2 iterations.`;
|
||||||
|
|
||||||
|
const CONTAINERS = `# drawio_guide: containers
|
||||||
|
|
||||||
|
Groups/zones are TRANSPARENT containers. A coloured group fill is an instant
|
||||||
|
"AI-generated" tell — never fill a group.
|
||||||
|
|
||||||
|
- Every group: container=1;dropTarget=1;fillColor=none;. It is a cell with
|
||||||
|
vertex unset AND edge unset.
|
||||||
|
- Children set parent="<groupId>" and their coordinates are RELATIVE to the
|
||||||
|
group's top-left, not absolute.
|
||||||
|
- An edge between cells in DIFFERENT containers must be parent="1" (the layer),
|
||||||
|
otherwise it is clipped to one container and disappears.
|
||||||
|
- Keep the group title off the group icon:
|
||||||
|
spacingLeft=40;spacingTop=-4;.
|
||||||
|
- Leave >=30px padding between children and the group frame.
|
||||||
|
- Draw edges on the BACK layer (place their <mxCell> BEFORE the shapes in XML)
|
||||||
|
and keep >=20px between an arrow and a label.
|
||||||
|
|
||||||
|
Swimlanes: style=swimlane;horizontal=0;startSize=110;. Lanes are parent="1";
|
||||||
|
their members are children of the lane.
|
||||||
|
|
||||||
|
Example (transparent zone with two children and an internal edge):
|
||||||
|
\`\`\`xml
|
||||||
|
<mxCell id="z1" value="VPC" style="rounded=0;container=1;dropTarget=1;fillColor=none;verticalAlign=top;spacingLeft=40;spacingTop=-4;html=1;"
|
||||||
|
vertex="1" parent="1">
|
||||||
|
<mxGeometry x="40" y="40" width="320" height="200" as="geometry"/>
|
||||||
|
</mxCell>
|
||||||
|
<mxCell id="a" value="App" style="rounded=1;html=1;" vertex="1" parent="z1">
|
||||||
|
<mxGeometry x="30" y="40" width="120" height="60" as="geometry"/>
|
||||||
|
</mxCell>
|
||||||
|
<mxCell id="b" value="DB" style="shape=cylinder3;html=1;" vertex="1" parent="z1">
|
||||||
|
<mxGeometry x="30" y="120" width="80" height="60" as="geometry"/>
|
||||||
|
</mxCell>
|
||||||
|
<mxCell id="ab" edge="1" parent="z1" source="a" target="b">
|
||||||
|
<mxGeometry relative="1" as="geometry"/>
|
||||||
|
</mxCell>
|
||||||
|
\`\`\``;
|
||||||
|
|
||||||
|
const ICONS_AWS = `# drawio_guide: icons-aws
|
||||||
|
|
||||||
|
Two mutually-exclusive AWS icon patterns — mixing them is the #1 cause of empty
|
||||||
|
boxes. Always call drawio_shapes for the exact resIcon name; do not guess.
|
||||||
|
|
||||||
|
| Level | style | strokeColor |
|
||||||
|
|---|---|---|
|
||||||
|
| Service | shape=mxgraph.aws4.resourceIcon;resIcon=mxgraph.aws4.<NAME> | #ffffff (required) |
|
||||||
|
| Resource | shape=mxgraph.aws4.<NAME> | none (required) |
|
||||||
|
|
||||||
|
Full service-level template (fillColor is REQUIRED — the glyph is invisible in
|
||||||
|
PNG export without it):
|
||||||
|
\`\`\`
|
||||||
|
sketch=0;outlineConnect=0;fontColor=#232F3E;fillColor=<category>;strokeColor=#ffffff;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=center;html=1;fontSize=12;aspect=fixed;shape=mxgraph.aws4.resourceIcon;resIcon=mxgraph.aws4.<NAME>
|
||||||
|
\`\`\`
|
||||||
|
|
||||||
|
Category fillColor: Compute #ED7100, Networking #8C4FFF, Database #C925D1,
|
||||||
|
Storage #3F8624, Security #DD344C, Integration #E7157B, AI/ML #01A88D.
|
||||||
|
|
||||||
|
Rebrandings (stencil name lags the product name):
|
||||||
|
- Amazon OpenSearch -> resIcon elasticsearch_service (renamed 2021)
|
||||||
|
- Amazon EventBridge -> resIcon eventbridge (was CloudWatch Events)
|
||||||
|
- VPC Peering -> resIcon peering (NOT vpc_peering -> empty box)
|
||||||
|
- Amazon MSK -> resIcon managed_streaming_for_kafka (NOT msk)
|
||||||
|
- IAM Identity Center -> resIcon single_sign_on (NOT iam_identity_center)
|
||||||
|
|
||||||
|
Blocklist -> replacement: dynamodb_table -> dynamodb; general_saml_token ->
|
||||||
|
traditional_server; kinesis_data_streams is unreliable. An unknown service ->
|
||||||
|
generic resIcon=mxgraph.aws4.general_AWScloud WITH a label; an unnamed coloured
|
||||||
|
rectangle is forbidden.
|
||||||
|
|
||||||
|
Group stencils (transparent containers): AWS Cloud group_aws_cloud_alt, VPC
|
||||||
|
group_vpc2, Subnet group_security_group, Account group_account; subnets use
|
||||||
|
shape=mxgraph.aws4.group;grIcon=mxgraph.aws4.group_public_subnet;.`;
|
||||||
|
|
||||||
|
const ICONS_AZURE = `# drawio_guide: icons-azure
|
||||||
|
|
||||||
|
shape=mxgraph.azure2.* does NOT render in every host. Use the portable
|
||||||
|
image-style instead:
|
||||||
|
\`\`\`
|
||||||
|
image;aspect=fixed;html=1;image=img/lib/azure2/<category>/<Icon>.svg;
|
||||||
|
\`\`\`
|
||||||
|
|
||||||
|
Known working paths:
|
||||||
|
- networking/Front_Doors.svg
|
||||||
|
- app_services/API_Management_Services.svg
|
||||||
|
- databases/Azure_Cosmos_DB.svg
|
||||||
|
- identity/Managed_Identities.svg
|
||||||
|
- management_governance/Monitor.svg
|
||||||
|
- devops/Application_Insights.svg
|
||||||
|
|
||||||
|
For maximum robustness (e.g. PNG export on a host without the bundled lib), use
|
||||||
|
an absolute URL fallback for the image:
|
||||||
|
\`\`\`
|
||||||
|
https://raw.githubusercontent.com/jgraph/drawio/dev/src/main/webapp/img/lib/azure2/<category>/<Icon>.svg
|
||||||
|
\`\`\`
|
||||||
|
|
||||||
|
Call drawio_shapes with the service name (e.g. "cosmos", "api management",
|
||||||
|
"front door") to get the exact image-style string and default 68x68 size.`;
|
||||||
|
|
||||||
|
const CONTENT: Record<GuideSection, string> = {
|
||||||
|
skeleton: SKELETON,
|
||||||
|
layout: LAYOUT,
|
||||||
|
containers: CONTAINERS,
|
||||||
|
"icons-aws": ICONS_AWS,
|
||||||
|
"icons-azure": ICONS_AZURE,
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Return one guide section, or (when `section` is omitted/unknown) an index
|
||||||
|
* listing the available sections plus a one-line summary each. Each section is
|
||||||
|
* kept under ~4 KB so pulling it does not bloat the model's context.
|
||||||
|
*/
|
||||||
|
export function getGuideSection(section?: string): {
|
||||||
|
section: string;
|
||||||
|
content: string;
|
||||||
|
sections: GuideSection[];
|
||||||
|
} {
|
||||||
|
const key = (section ?? "").trim().toLowerCase() as GuideSection;
|
||||||
|
if (section && GUIDE_SECTIONS.includes(key)) {
|
||||||
|
return { section: key, content: CONTENT[key], sections: GUIDE_SECTIONS };
|
||||||
|
}
|
||||||
|
const index =
|
||||||
|
"# drawio_guide\n\nProgressive-disclosure draw.io authoring reference. " +
|
||||||
|
"Call drawio_guide(section) with one of:\n" +
|
||||||
|
"- skeleton — canonical mxGraph XML, sentinels, the three accepted inputs, hard rules\n" +
|
||||||
|
"- layout — spacing heuristics, edge routing, the layout:\"elk\" option, quality warnings\n" +
|
||||||
|
"- containers — transparent groups, relative child coords, cross-container edges, swimlanes\n" +
|
||||||
|
"- icons-aws — the service/resource icon patterns, category colors, rebrandings, blocklist\n" +
|
||||||
|
"- icons-azure — the portable image-style paths\n\n" +
|
||||||
|
"Also call drawio_shapes(query) for verified stencil style-strings.";
|
||||||
|
return { section: "index", content: index, sections: GUIDE_SECTIONS };
|
||||||
|
}
|
||||||
@@ -0,0 +1,240 @@
|
|||||||
|
// ELK auto-layout for draw.io models (issue #424, stage 2). The model declares
|
||||||
|
// the LOGICAL structure (which nodes exist, which containers nest which
|
||||||
|
// children, which edges connect what) with rough or arbitrary coordinates; this
|
||||||
|
// module runs an Eclipse Layout Kernel "layered" pass (via elkjs — a pure-JS
|
||||||
|
// port, no native/browser deps) that HONOURS nested containers as compound
|
||||||
|
// nodes, then rewrites every vertex's <mxGeometry> with the computed pixels.
|
||||||
|
//
|
||||||
|
// Principle: "the model declares logical structure, the server computes pixels."
|
||||||
|
// Coordinates ELK returns for a node are relative to its parent, which is
|
||||||
|
// exactly mxGraph's convention for a child of a container, so they map across
|
||||||
|
// directly. Container sizes are computed by ELK; leaf sizes are preserved.
|
||||||
|
|
||||||
|
import ELK from "elkjs/lib/elk.bundled.js";
|
||||||
|
import { JSDOM } from "jsdom";
|
||||||
|
import { normalizeInput, parseCells, type DrawioCell } from "./drawio-xml.js";
|
||||||
|
|
||||||
|
// Default sizes when a vertex declares no geometry (appendix base sizes).
|
||||||
|
const DEFAULT_W = 140;
|
||||||
|
const DEFAULT_H = 60;
|
||||||
|
|
||||||
|
// DoS bounds for the in-process ELK layout. The mxGraph XML is LLM-supplied
|
||||||
|
// (layout:"elk" in drawio_create/drawio_update) and elkjs runs synchronously on
|
||||||
|
// the MCP server's event loop, so an unbounded graph would block it for
|
||||||
|
// seconds-to-minutes. A ~1MB XML (well under the stage-1 16MB cap) can carry
|
||||||
|
// thousands of nodes. We cap the graph size and race the layout against a
|
||||||
|
// wall-clock timeout; on either bound we fall back to the ORIGINAL model, the
|
||||||
|
// same best-effort contract the catch already honours.
|
||||||
|
// - 500 nodes lays out in well under a second; beyond that ELK cost climbs
|
||||||
|
// steeply, so refuse and leave the (already-valid) model untouched.
|
||||||
|
// - Edges dominate the layered-crossing cost, so allow a bit more headroom
|
||||||
|
// (1000) than nodes but still bound them.
|
||||||
|
// - 5s is generous for any graph within the caps yet short enough that a
|
||||||
|
// pathological input can never wedge the server.
|
||||||
|
const ELK_MAX_NODES = 500;
|
||||||
|
const ELK_MAX_EDGES = 1000;
|
||||||
|
const ELK_TIMEOUT_MS = 5000;
|
||||||
|
|
||||||
|
// Spacing is set >=150px on purpose so an ELK layout never trips the linter's
|
||||||
|
// "gap between adjacent shapes < 150px" quality warning (acceptance #3).
|
||||||
|
const LAYOUT_OPTIONS: Record<string, string> = {
|
||||||
|
"elk.algorithm": "layered",
|
||||||
|
"elk.direction": "RIGHT",
|
||||||
|
// Route edges across container boundaries in a single hierarchical pass.
|
||||||
|
"elk.hierarchyHandling": "INCLUDE_CHILDREN",
|
||||||
|
"elk.layered.spacing.nodeNodeBetweenLayers": "170",
|
||||||
|
"elk.spacing.nodeNode": "170",
|
||||||
|
"elk.spacing.edgeNode": "40",
|
||||||
|
"elk.spacing.edgeEdge": "30",
|
||||||
|
"elk.padding": "[top=20,left=20,bottom=20,right=20]",
|
||||||
|
};
|
||||||
|
|
||||||
|
// Per-container options: pad children >=30px off the frame (appendix rule) and
|
||||||
|
// carry the same generous spacing so nested nodes never trip the "gap <150px"
|
||||||
|
// warning either.
|
||||||
|
const CONTAINER_OPTIONS: Record<string, string> = {
|
||||||
|
"elk.algorithm": "layered",
|
||||||
|
"elk.direction": "RIGHT",
|
||||||
|
"elk.padding": "[top=40,left=30,bottom=30,right=30]",
|
||||||
|
"elk.layered.spacing.nodeNodeBetweenLayers": "170",
|
||||||
|
"elk.spacing.nodeNode": "170",
|
||||||
|
};
|
||||||
|
|
||||||
|
interface ElkNode {
|
||||||
|
id: string;
|
||||||
|
width?: number;
|
||||||
|
height?: number;
|
||||||
|
x?: number;
|
||||||
|
y?: number;
|
||||||
|
children?: ElkNode[];
|
||||||
|
layoutOptions?: Record<string, string>;
|
||||||
|
}
|
||||||
|
interface ElkEdge {
|
||||||
|
id: string;
|
||||||
|
sources: string[];
|
||||||
|
targets: string[];
|
||||||
|
}
|
||||||
|
interface ElkGraph extends ElkNode {
|
||||||
|
edges?: ElkEdge[];
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Apply an ELK layered layout to a drawio input and return a full mxGraphModel
|
||||||
|
* string with rewritten geometry. Accepts the same three input forms as
|
||||||
|
* drawio_create (a bare model, an <mxfile>, or a <mxCell> list). Async because
|
||||||
|
* elkjs' layout() is promise-based. On any layout failure the ORIGINAL
|
||||||
|
* (normalized) model is returned unchanged — layout is best-effort polish, never
|
||||||
|
* a reason to fail the write.
|
||||||
|
*/
|
||||||
|
export async function applyElkLayout(inputXml: string): Promise<string> {
|
||||||
|
const modelXml = normalizeInput(inputXml);
|
||||||
|
let cells: DrawioCell[];
|
||||||
|
try {
|
||||||
|
cells = parseCells(modelXml);
|
||||||
|
} catch {
|
||||||
|
return modelXml; // unparseable -> let the linter report it downstream
|
||||||
|
}
|
||||||
|
|
||||||
|
const byId = new Map(cells.map((c) => [c.id, c]));
|
||||||
|
const vertices = cells.filter(
|
||||||
|
(c) => c.vertex && c.id !== "0" && c.id !== "1",
|
||||||
|
);
|
||||||
|
if (vertices.length === 0) return modelXml;
|
||||||
|
|
||||||
|
// A vertex is a CONTAINER iff some other vertex names it as parent.
|
||||||
|
const childrenOf = new Map<string, DrawioCell[]>();
|
||||||
|
for (const v of vertices) {
|
||||||
|
const p = v.parent && byId.get(v.parent)?.vertex ? v.parent : "__root__";
|
||||||
|
if (!childrenOf.has(p)) childrenOf.set(p, []);
|
||||||
|
childrenOf.get(p)!.push(v);
|
||||||
|
}
|
||||||
|
const isContainer = (id: string) => childrenOf.has(id);
|
||||||
|
|
||||||
|
const buildNode = (v: DrawioCell): ElkNode => {
|
||||||
|
const kids = childrenOf.get(v.id);
|
||||||
|
const node: ElkNode = { id: v.id };
|
||||||
|
if (kids && kids.length > 0) {
|
||||||
|
node.children = kids.map(buildNode);
|
||||||
|
node.layoutOptions = { ...CONTAINER_OPTIONS };
|
||||||
|
} else {
|
||||||
|
node.width = v.geometry.width ?? DEFAULT_W;
|
||||||
|
node.height = v.geometry.height ?? DEFAULT_H;
|
||||||
|
}
|
||||||
|
return node;
|
||||||
|
};
|
||||||
|
|
||||||
|
const roots = (childrenOf.get("__root__") ?? []).map(buildNode);
|
||||||
|
|
||||||
|
// All edges at the root; INCLUDE_CHILDREN lets them span the hierarchy. Only
|
||||||
|
// edges whose endpoints are laid-out vertices are handed to ELK.
|
||||||
|
const vertexIds = new Set(vertices.map((v) => v.id));
|
||||||
|
const edges: ElkEdge[] = [];
|
||||||
|
for (const c of cells) {
|
||||||
|
if (!c.edge || !c.source || !c.target) continue;
|
||||||
|
if (!vertexIds.has(c.source) || !vertexIds.has(c.target)) continue;
|
||||||
|
edges.push({ id: c.id || `e${edges.length}`, sources: [c.source], targets: [c.target] });
|
||||||
|
}
|
||||||
|
|
||||||
|
// DoS guard: refuse to lay out an oversized LLM-supplied graph. elkjs runs
|
||||||
|
// in-process on the event loop, so bound the work before we ever call it and
|
||||||
|
// return the original model unchanged (best-effort, same as the catch below).
|
||||||
|
if (vertices.length > ELK_MAX_NODES || edges.length > ELK_MAX_EDGES) {
|
||||||
|
return modelXml;
|
||||||
|
}
|
||||||
|
|
||||||
|
const graph: ElkGraph = {
|
||||||
|
id: "root",
|
||||||
|
layoutOptions: LAYOUT_OPTIONS,
|
||||||
|
children: roots,
|
||||||
|
edges,
|
||||||
|
};
|
||||||
|
|
||||||
|
let laid: ElkGraph;
|
||||||
|
let timer: ReturnType<typeof setTimeout> | undefined;
|
||||||
|
try {
|
||||||
|
// elkjs ships a CJS default export whose interop shape varies across
|
||||||
|
// module systems; resolve the real constructor at runtime, then cast (the
|
||||||
|
// runtime call is verified — see the layout unit test).
|
||||||
|
const Ctor: any = (ELK as any).default ?? ELK;
|
||||||
|
const elk = new Ctor();
|
||||||
|
// Race the layout against a wall-clock timeout so a graph that is under the
|
||||||
|
// node/edge caps but still pathologically slow can never wedge the server.
|
||||||
|
const timeout = new Promise<never>((_, reject) => {
|
||||||
|
timer = setTimeout(
|
||||||
|
() => reject(new Error("ELK layout timed out")),
|
||||||
|
ELK_TIMEOUT_MS,
|
||||||
|
);
|
||||||
|
});
|
||||||
|
laid = (await Promise.race([elk.layout(graph as any), timeout])) as ElkGraph;
|
||||||
|
} catch {
|
||||||
|
return modelXml; // best-effort: keep the model as-is on timeout or ELK failure
|
||||||
|
} finally {
|
||||||
|
if (timer) clearTimeout(timer);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Collect computed geometry per node id (coords are parent-relative already).
|
||||||
|
const geo = new Map<string, { x: number; y: number; w: number; h: number }>();
|
||||||
|
const walk = (n: ElkNode) => {
|
||||||
|
if (n.id !== "root") {
|
||||||
|
geo.set(n.id, {
|
||||||
|
x: Math.round(n.x ?? 0),
|
||||||
|
y: Math.round(n.y ?? 0),
|
||||||
|
w: Math.round(n.width ?? DEFAULT_W),
|
||||||
|
h: Math.round(n.height ?? DEFAULT_H),
|
||||||
|
});
|
||||||
|
}
|
||||||
|
for (const c of n.children ?? []) walk(c);
|
||||||
|
};
|
||||||
|
walk(laid);
|
||||||
|
|
||||||
|
return rewriteGeometry(modelXml, geo, isContainer);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Rewrite each vertex cell's <mxGeometry> x/y (and width/height for containers,
|
||||||
|
* whose size ELK computed) using the DOM, then serialize back. Leaf sizes are
|
||||||
|
* left untouched. Edges and non-geometry attributes are preserved verbatim.
|
||||||
|
*/
|
||||||
|
function rewriteGeometry(
|
||||||
|
modelXml: string,
|
||||||
|
geo: Map<string, { x: number; y: number; w: number; h: number }>,
|
||||||
|
isContainer: (id: string) => boolean,
|
||||||
|
): string {
|
||||||
|
const dom = new JSDOM("");
|
||||||
|
const parser = new dom.window.DOMParser();
|
||||||
|
const doc = parser.parseFromString(modelXml, "application/xml");
|
||||||
|
if (doc.getElementsByTagName("parsererror").length > 0) return modelXml;
|
||||||
|
|
||||||
|
const cellEls = doc.getElementsByTagName("mxCell");
|
||||||
|
for (let i = 0; i < cellEls.length; i++) {
|
||||||
|
const el = cellEls[i];
|
||||||
|
const id = el.getAttribute("id") || "";
|
||||||
|
const g = geo.get(id);
|
||||||
|
if (!g) continue;
|
||||||
|
let geoEl: any = null;
|
||||||
|
for (let j = 0; j < el.childNodes.length; j++) {
|
||||||
|
const ch = el.childNodes[j];
|
||||||
|
if (ch.nodeType === 1 && (ch as any).tagName === "mxGeometry") {
|
||||||
|
geoEl = ch;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (!geoEl) {
|
||||||
|
geoEl = doc.createElement("mxGeometry");
|
||||||
|
geoEl.setAttribute("as", "geometry");
|
||||||
|
el.appendChild(geoEl);
|
||||||
|
}
|
||||||
|
geoEl.setAttribute("x", String(g.x));
|
||||||
|
geoEl.setAttribute("y", String(g.y));
|
||||||
|
// Containers take ELK's computed size; leaves keep their authored size.
|
||||||
|
if (isContainer(id) || !geoEl.hasAttribute("width")) {
|
||||||
|
geoEl.setAttribute("width", String(g.w));
|
||||||
|
}
|
||||||
|
if (isContainer(id) || !geoEl.hasAttribute("height")) {
|
||||||
|
geoEl.setAttribute("height", String(g.h));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
const ser = new dom.window.XMLSerializer();
|
||||||
|
return ser.serializeToString(doc.documentElement);
|
||||||
|
}
|
||||||
@@ -0,0 +1,420 @@
|
|||||||
|
// Verified draw.io shape catalog for the `drawio_shapes` tool (issue #424,
|
||||||
|
// stage 2). This is the fix for AI-generated diagrams' #1 defect: guessed
|
||||||
|
// `shape=mxgraph.*` names that render as EMPTY BOXES because the stencil does
|
||||||
|
// not exist. Instead of guessing, the model queries this catalog and gets back
|
||||||
|
// an exact, verified style-string + the stencil's default width/height.
|
||||||
|
//
|
||||||
|
// DATA SOURCE — the bundled index is the REAL jgraph/drawio-mcp shape index
|
||||||
|
// (`shape-search/search-index.json`, Apache-2.0, ~10 446 shapes), fetched
|
||||||
|
// verbatim and gzip-compressed to `packages/mcp/data/drawio-shape-index.json.gz`
|
||||||
|
// (~4.7 MB -> ~430 KB). Each record is `{ style, w, h, title, tags, type }`.
|
||||||
|
//
|
||||||
|
// REGENERATING THE INDEX (keeps the catalog from going stale as draw.io ships
|
||||||
|
// new stencils): jgraph publishes `shape-search/generate-index.js`, which
|
||||||
|
// rebuilds `search-index.json` from a draw.io release's `app.min.js`. To update:
|
||||||
|
// 1. clone https://github.com/jgraph/drawio-mcp (Apache-2.0)
|
||||||
|
// 2. run `node shape-search/generate-index.js` per its README
|
||||||
|
// 3. `gzip -9 -c search-index.json > packages/mcp/data/drawio-shape-index.json.gz`
|
||||||
|
// The record shape and this module's search stay unchanged.
|
||||||
|
//
|
||||||
|
// CURATED OVERLAY — on top of the raw index this module carries a small,
|
||||||
|
// hand-maintained overlay drawn from the issue #424 appendix (the aws-
|
||||||
|
// architecture-diagram-skill knowledge): AWS service rebrandings whose stencil
|
||||||
|
// name lags the product name, a BLOCKLIST of known-broken stencils mapped to
|
||||||
|
// working replacements, the category fillColor palette, the AWS group/subnet
|
||||||
|
// stencils, and the Azure image-style paths. The overlay is applied BEFORE the
|
||||||
|
// raw search so a query for a rebranded/blocked name returns the correct answer
|
||||||
|
// with an explanatory note instead of the empty-box stencil.
|
||||||
|
|
||||||
|
import { readFileSync } from "node:fs";
|
||||||
|
import { gunzipSync } from "node:zlib";
|
||||||
|
|
||||||
|
/** A single catalog record as returned to the model. */
|
||||||
|
export interface ShapeResult {
|
||||||
|
/** The exact draw.io style-string to put on the cell. */
|
||||||
|
style: string;
|
||||||
|
/** Default width in px for this stencil. */
|
||||||
|
w: number;
|
||||||
|
/** Default height in px for this stencil. */
|
||||||
|
h: number;
|
||||||
|
/** Human-readable stencil name. */
|
||||||
|
title: string;
|
||||||
|
/** "vertex" | "edge" (from the index). */
|
||||||
|
type: string;
|
||||||
|
/** AWS category (Compute/Database/…) when derivable, else undefined. */
|
||||||
|
category?: string;
|
||||||
|
/**
|
||||||
|
* Present when the overlay rewrote/annotated the answer: a rebrand, a
|
||||||
|
* blocklist replacement, or a usage hint. The model should surface it.
|
||||||
|
*/
|
||||||
|
note?: string;
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Raw record shape in the bundled index. */
|
||||||
|
interface IndexRecord {
|
||||||
|
style: string;
|
||||||
|
w: number;
|
||||||
|
h: number;
|
||||||
|
title: string;
|
||||||
|
tags: string;
|
||||||
|
type: string;
|
||||||
|
}
|
||||||
|
|
||||||
|
// --- AWS category fillColor palette (appendix) -----------------------------
|
||||||
|
// Service-level icons MUST carry a fillColor (invisible in PNG export
|
||||||
|
// otherwise); the color is the AWS category color.
|
||||||
|
export const AWS_CATEGORY_FILL: Record<string, string> = {
|
||||||
|
Compute: "#ED7100",
|
||||||
|
Networking: "#8C4FFF",
|
||||||
|
Database: "#C925D1",
|
||||||
|
Storage: "#3F8624",
|
||||||
|
Security: "#DD344C",
|
||||||
|
Integration: "#E7157B",
|
||||||
|
"AI/ML": "#01A88D",
|
||||||
|
};
|
||||||
|
|
||||||
|
/** Reverse lookup: fillColor hex -> category name (for annotating results). */
|
||||||
|
const FILL_TO_CATEGORY: Record<string, string> = Object.fromEntries(
|
||||||
|
Object.entries(AWS_CATEGORY_FILL).map(([k, v]) => [v.toLowerCase(), k]),
|
||||||
|
);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Build the canonical service-level AWS icon style for a resIcon name. Mirrors
|
||||||
|
* the appendix's full template: strokeColor=#ffffff is MANDATORY and fillColor
|
||||||
|
* is the category color (defaults to AWS ink #232F3E when the category is
|
||||||
|
* unknown, so the glyph is never invisible).
|
||||||
|
*/
|
||||||
|
export function awsServiceStyle(resIcon: string, category?: string): string {
|
||||||
|
const fill = (category && AWS_CATEGORY_FILL[category]) || "#232F3E";
|
||||||
|
return (
|
||||||
|
"sketch=0;outlineConnect=0;fontColor=#232F3E;gradientColor=none;" +
|
||||||
|
`fillColor=${fill};strokeColor=#ffffff;dashed=0;verticalLabelPosition=bottom;` +
|
||||||
|
"verticalAlign=top;align=center;html=1;fontSize=12;fontStyle=0;aspect=fixed;" +
|
||||||
|
`shape=mxgraph.aws4.resourceIcon;resIcon=mxgraph.aws4.${resIcon}`
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
// --- AWS rebrandings (appendix "gotcha" table) -----------------------------
|
||||||
|
// The stencil name lags the AWS product name; a naive query for the product
|
||||||
|
// name would miss (or return an empty box). Each alias maps to the REAL resIcon.
|
||||||
|
interface Rebrand {
|
||||||
|
aliases: string[];
|
||||||
|
resIcon: string;
|
||||||
|
category?: string;
|
||||||
|
note: string;
|
||||||
|
}
|
||||||
|
export const AWS_REBRANDS: Rebrand[] = [
|
||||||
|
{
|
||||||
|
aliases: ["opensearch", "open search", "amazon opensearch"],
|
||||||
|
resIcon: "elasticsearch_service",
|
||||||
|
category: "Database",
|
||||||
|
note: "Amazon OpenSearch's stencil is still named `elasticsearch_service` (renamed in 2021).",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
aliases: ["eventbridge", "event bridge", "cloudwatch events"],
|
||||||
|
resIcon: "eventbridge",
|
||||||
|
category: "Integration",
|
||||||
|
note: "Amazon EventBridge uses resIcon `eventbridge` (formerly CloudWatch Events).",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
aliases: ["vpc peering", "peering"],
|
||||||
|
resIcon: "peering",
|
||||||
|
category: "Networking",
|
||||||
|
note: "VPC Peering is resIcon `peering`, NOT `vpc_peering` (which renders empty).",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
aliases: ["msk", "kafka", "managed streaming", "amazon msk"],
|
||||||
|
resIcon: "managed_streaming_for_kafka",
|
||||||
|
category: "Integration",
|
||||||
|
note: "Amazon MSK is resIcon `managed_streaming_for_kafka`, NOT `msk`.",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
aliases: ["iam identity center", "identity center", "sso", "single sign on"],
|
||||||
|
resIcon: "single_sign_on",
|
||||||
|
category: "Security",
|
||||||
|
note: "IAM Identity Center is resIcon `single_sign_on`, NOT `iam_identity_center`.",
|
||||||
|
},
|
||||||
|
];
|
||||||
|
|
||||||
|
// --- BLOCKLIST of broken stencils (appendix) -------------------------------
|
||||||
|
// A query that names one of these gets the working replacement + a note; the
|
||||||
|
// broken stencil is never returned.
|
||||||
|
interface Blocked {
|
||||||
|
bad: string;
|
||||||
|
good: string;
|
||||||
|
goodStyle?: (idx: IndexRecord[]) => ShapeResult | null;
|
||||||
|
note: string;
|
||||||
|
}
|
||||||
|
export const AWS_BLOCKLIST: Blocked[] = [
|
||||||
|
{
|
||||||
|
bad: "dynamodb_table",
|
||||||
|
good: "dynamodb",
|
||||||
|
note: "`dynamodb_table` renders as an empty box; use resIcon `dynamodb`.",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
bad: "general_saml_token",
|
||||||
|
good: "traditional_server",
|
||||||
|
note: "`general_saml_token` is broken; use resIcon `traditional_server`.",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
bad: "kinesis_data_streams",
|
||||||
|
good: "kinesis_data_streams",
|
||||||
|
note: "`kinesis_data_streams` is unreliable across draw.io versions; verify it renders, or fall back to resIcon `kinesis`.",
|
||||||
|
},
|
||||||
|
];
|
||||||
|
|
||||||
|
// --- AWS group / container stencils (appendix) -----------------------------
|
||||||
|
// Groups are transparent containers; these are the verified stencil names.
|
||||||
|
export const AWS_GROUP_STENCILS: ShapeResult[] = [
|
||||||
|
{
|
||||||
|
title: "AWS Cloud (group)",
|
||||||
|
style:
|
||||||
|
"points=[[0,0],[0.25,0],[0.5,0],[0.75,0],[1,0],[1,0.25],[1,0.5],[1,0.75],[1,1],[0.75,1],[0.5,1],[0.25,1],[0,1],[0,0.75],[0,0.5],[0,0.25]];" +
|
||||||
|
"outlineConnect=0;gradientColor=none;html=1;whiteSpace=wrap;fontSize=12;fontStyle=0;container=1;" +
|
||||||
|
"pointerEvents=0;collapsible=0;recursiveResize=0;shape=mxgraph.aws4.group;grIcon=mxgraph.aws4.group_aws_cloud_alt;" +
|
||||||
|
"strokeColor=#232F3E;fillColor=none;verticalAlign=top;align=left;spacingLeft=30;fontColor=#232F3E;dashed=0;",
|
||||||
|
w: 400,
|
||||||
|
h: 300,
|
||||||
|
type: "vertex",
|
||||||
|
note: "AWS Cloud boundary — transparent container (grIcon=group_aws_cloud_alt).",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: "VPC (group)",
|
||||||
|
style:
|
||||||
|
"points=[[0,0],[0.25,0],[0.5,0],[0.75,0],[1,0],[1,0.25],[1,0.5],[1,0.75],[1,1],[0.75,1],[0.5,1],[0.25,1],[0,1],[0,0.75],[0,0.5],[0,0.25]];" +
|
||||||
|
"outlineConnect=0;gradientColor=none;html=1;whiteSpace=wrap;fontSize=12;fontStyle=0;container=1;" +
|
||||||
|
"pointerEvents=0;collapsible=0;recursiveResize=0;shape=mxgraph.aws4.group;grIcon=mxgraph.aws4.group_vpc2;" +
|
||||||
|
"strokeColor=#8C4FFF;fillColor=none;verticalAlign=top;align=left;spacingLeft=30;fontColor=#8C4FFF;dashed=0;",
|
||||||
|
w: 350,
|
||||||
|
h: 250,
|
||||||
|
type: "vertex",
|
||||||
|
note: "VPC boundary — transparent container (grIcon=group_vpc2).",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: "Public Subnet (group)",
|
||||||
|
style:
|
||||||
|
"sketch=0;outlineConnect=0;gradientColor=none;html=1;whiteSpace=wrap;fontSize=12;fontStyle=0;container=1;" +
|
||||||
|
"pointerEvents=0;collapsible=0;recursiveResize=0;shape=mxgraph.aws4.group;grIcon=mxgraph.aws4.group_public_subnet;" +
|
||||||
|
"grStroke=0;strokeColor=none;fillColor=#E9F3E6;verticalAlign=top;align=left;spacingLeft=30;fontColor=#248814;dashed=0;",
|
||||||
|
w: 300,
|
||||||
|
h: 200,
|
||||||
|
type: "vertex",
|
||||||
|
note: "Public subnet — transparent container (grIcon=group_public_subnet).",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: "Private Subnet (group)",
|
||||||
|
style:
|
||||||
|
"sketch=0;outlineConnect=0;gradientColor=none;html=1;whiteSpace=wrap;fontSize=12;fontStyle=0;container=1;" +
|
||||||
|
"pointerEvents=0;collapsible=0;recursiveResize=0;shape=mxgraph.aws4.group;grIcon=mxgraph.aws4.group_private_subnet;" +
|
||||||
|
"grStroke=0;strokeColor=none;fillColor=#E6F2F8;verticalAlign=top;align=left;spacingLeft=30;fontColor=#147EBA;dashed=0;",
|
||||||
|
w: 300,
|
||||||
|
h: 200,
|
||||||
|
type: "vertex",
|
||||||
|
note: "Private subnet — transparent container (grIcon=group_private_subnet).",
|
||||||
|
},
|
||||||
|
];
|
||||||
|
|
||||||
|
// --- Azure image-style stencils (appendix) ---------------------------------
|
||||||
|
// `shape=mxgraph.azure2.*` does not render in every host; the image-style path
|
||||||
|
// is the portable form. These are the verified known-working paths.
|
||||||
|
interface AzureIcon {
|
||||||
|
aliases: string[];
|
||||||
|
path: string;
|
||||||
|
title: string;
|
||||||
|
}
|
||||||
|
const AZURE_ICONS: AzureIcon[] = [
|
||||||
|
{ aliases: ["front door", "front doors"], path: "networking/Front_Doors.svg", title: "Azure Front Door" },
|
||||||
|
{ aliases: ["api management", "apim"], path: "app_services/API_Management_Services.svg", title: "Azure API Management" },
|
||||||
|
{ aliases: ["cosmos", "cosmos db"], path: "databases/Azure_Cosmos_DB.svg", title: "Azure Cosmos DB" },
|
||||||
|
{ aliases: ["managed identity", "managed identities"], path: "identity/Managed_Identities.svg", title: "Azure Managed Identity" },
|
||||||
|
{ aliases: ["azure monitor", "monitor"], path: "management_governance/Monitor.svg", title: "Azure Monitor" },
|
||||||
|
{ aliases: ["application insights", "app insights"], path: "devops/Application_Insights.svg", title: "Azure Application Insights" },
|
||||||
|
];
|
||||||
|
|
||||||
|
/** Build the portable Azure image-style for a lib path (appendix template). */
|
||||||
|
export function azureImageStyle(path: string): string {
|
||||||
|
return `sketch=0;points=[[0,0,0],[0.25,0,0],[0.5,0,0],[0.75,0,0],[1,0,0],[0,1,0],[0.25,1,0],[0.5,1,0],[0.75,1,0],[1,1,0],[0,0.25,0],[0,0.5,0],[0,0.75,0],[1,0.25,0],[1,0.5,0],[1,0.75,0]];shadow=0;dashed=0;html=1;strokeColor=none;fillColor=#5E9BD9;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;outlineConnect=0;image;aspect=fixed;image=img/lib/azure2/${path};`;
|
||||||
|
}
|
||||||
|
|
||||||
|
// --- index loading (lazy, cached) ------------------------------------------
|
||||||
|
|
||||||
|
let _index: IndexRecord[] | null = null;
|
||||||
|
|
||||||
|
/** Path to the bundled gzipped index, resolved relative to the built module. */
|
||||||
|
function indexPath(): URL {
|
||||||
|
// build/lib/drawio-shapes.js -> ../../data/… -> packages/mcp/data/…
|
||||||
|
return new URL("../../data/drawio-shape-index.json.gz", import.meta.url);
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Load + decompress + parse the bundled index once, then cache it. */
|
||||||
|
export function loadShapeIndex(): IndexRecord[] {
|
||||||
|
if (_index) return _index;
|
||||||
|
const gz = readFileSync(indexPath());
|
||||||
|
const json = gunzipSync(gz).toString("utf-8");
|
||||||
|
const arr = JSON.parse(json) as IndexRecord[];
|
||||||
|
_index = arr;
|
||||||
|
return arr;
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Derive an AWS category from a service-level icon's fillColor, if present. */
|
||||||
|
function categoryOf(style: string): string | undefined {
|
||||||
|
const m = /fillColor=(#[0-9a-fA-F]{6})/.exec(style);
|
||||||
|
if (!m) return undefined;
|
||||||
|
return FILL_TO_CATEGORY[m[1].toLowerCase()];
|
||||||
|
}
|
||||||
|
|
||||||
|
function toResult(r: IndexRecord): ShapeResult {
|
||||||
|
return {
|
||||||
|
style: r.style,
|
||||||
|
w: r.w,
|
||||||
|
h: r.h,
|
||||||
|
title: r.title,
|
||||||
|
type: r.type,
|
||||||
|
category: categoryOf(r.style),
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Find the best index record whose style carries `resIcon=<name>`. */
|
||||||
|
function findByResIcon(idx: IndexRecord[], name: string): IndexRecord | null {
|
||||||
|
const needle = `resIcon=mxgraph.aws4.${name}`;
|
||||||
|
// Prefer the service-level resourceIcon form; fall back to any style match.
|
||||||
|
let fallback: IndexRecord | null = null;
|
||||||
|
for (const r of idx) {
|
||||||
|
if (r.style.includes(needle) && r.style.includes("resourceIcon")) return r;
|
||||||
|
if (!fallback && r.style.includes(needle)) fallback = r;
|
||||||
|
}
|
||||||
|
return fallback;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Score a record against a lowercased query. Higher is better; 0 = no match.
|
||||||
|
* Exact title match ranks highest, then title substring, tag word, then a loose
|
||||||
|
* style/tag substring. This is a cheap substring+token scorer, not a real fuzzy
|
||||||
|
* matcher, which is plenty for the "give me the lambda icon" use case.
|
||||||
|
*/
|
||||||
|
function score(r: IndexRecord, q: string): number {
|
||||||
|
const title = r.title.toLowerCase();
|
||||||
|
const tags = r.tags.toLowerCase();
|
||||||
|
const style = r.style.toLowerCase();
|
||||||
|
let s = title === q ? 100 : 0;
|
||||||
|
if (title !== q && title.includes(q)) s += 40 - Math.min(20, title.length - q.length);
|
||||||
|
const words = q.split(/\s+/).filter(Boolean);
|
||||||
|
for (const w of words) {
|
||||||
|
if (title.includes(w)) s += 12;
|
||||||
|
if (new RegExp(`(^|\\W)${escapeRe(w)}(\\W|$)`).test(tags)) s += 8;
|
||||||
|
else if (tags.includes(w)) s += 4;
|
||||||
|
if (style.includes(w)) s += 2;
|
||||||
|
}
|
||||||
|
// Prefer the current AWS icon generation (aws4) over the deprecated aws3
|
||||||
|
// stencils, which are the older visual style and often not what's wanted.
|
||||||
|
if (s > 0) {
|
||||||
|
if (style.includes("mxgraph.aws4")) s += 6;
|
||||||
|
else if (style.includes("mxgraph.aws3")) s -= 12;
|
||||||
|
}
|
||||||
|
return s;
|
||||||
|
}
|
||||||
|
|
||||||
|
function escapeRe(s: string): string {
|
||||||
|
return s.replace(/[.*+?^${}()|[\]\\]/g, "\\$&");
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface SearchShapesOptions {
|
||||||
|
category?: string;
|
||||||
|
limit?: number;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Search the catalog. Applies the curated overlay first (blocklist replacement,
|
||||||
|
* AWS rebrand, AWS group stencils, Azure image-style), then substring/tag/fuzzy
|
||||||
|
* search over the bundled ~10 446-shape index. Returns up to `limit` results
|
||||||
|
* (default 12) with exact style-strings and default sizes.
|
||||||
|
*/
|
||||||
|
export function searchShapes(
|
||||||
|
query: string,
|
||||||
|
opts: SearchShapesOptions = {},
|
||||||
|
): ShapeResult[] {
|
||||||
|
const limit = Math.max(1, Math.min(50, opts.limit ?? 12));
|
||||||
|
const q = query.trim().toLowerCase();
|
||||||
|
if (q === "") return [];
|
||||||
|
const idx = loadShapeIndex();
|
||||||
|
const out: ShapeResult[] = [];
|
||||||
|
const seen = new Set<string>();
|
||||||
|
const push = (r: ShapeResult) => {
|
||||||
|
if (seen.has(r.style)) return;
|
||||||
|
seen.add(r.style);
|
||||||
|
out.push(r);
|
||||||
|
};
|
||||||
|
|
||||||
|
// 1. BLOCKLIST: a query naming a broken stencil returns the replacement.
|
||||||
|
for (const b of AWS_BLOCKLIST) {
|
||||||
|
if (q.includes(b.bad) || b.bad.includes(q.replace(/\s+/g, "_"))) {
|
||||||
|
const rec = findByResIcon(idx, b.good);
|
||||||
|
if (rec) push({ ...toResult(rec), note: b.note });
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// 2. AWS rebrandings: surface the correct resIcon with the rename note.
|
||||||
|
for (const rb of AWS_REBRANDS) {
|
||||||
|
if (rb.aliases.some((a) => q === a || q.includes(a) || a.includes(q))) {
|
||||||
|
const rec = findByResIcon(idx, rb.resIcon);
|
||||||
|
if (rec) {
|
||||||
|
push({ ...toResult(rec), category: rec ? categoryOf(rec.style) ?? rb.category : rb.category, note: rb.note });
|
||||||
|
} else {
|
||||||
|
push({
|
||||||
|
style: awsServiceStyle(rb.resIcon, rb.category),
|
||||||
|
w: 78,
|
||||||
|
h: 78,
|
||||||
|
title: rb.resIcon,
|
||||||
|
type: "vertex",
|
||||||
|
category: rb.category,
|
||||||
|
note: rb.note,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// 3. Azure image-style icons.
|
||||||
|
for (const az of AZURE_ICONS) {
|
||||||
|
if (az.aliases.some((a) => q.includes(a) || a.includes(q))) {
|
||||||
|
push({
|
||||||
|
style: azureImageStyle(az.path),
|
||||||
|
w: 68,
|
||||||
|
h: 68,
|
||||||
|
title: az.title,
|
||||||
|
type: "vertex",
|
||||||
|
category: "Azure",
|
||||||
|
note: "Azure: portable image-style (shape=mxgraph.azure2.* does not render in every host).",
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// 4. AWS group/container stencils.
|
||||||
|
if (/\b(group|container|boundary|vpc|subnet|cloud|account)\b/.test(q)) {
|
||||||
|
for (const g of AWS_GROUP_STENCILS) {
|
||||||
|
if (g.title.toLowerCase().includes(q) || q.split(/\s+/).some((w) => g.title.toLowerCase().includes(w))) {
|
||||||
|
push(g);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// 5. General index search (substring + tags + loose fuzzy).
|
||||||
|
const catFilter = opts.category?.toLowerCase();
|
||||||
|
const scored: { r: IndexRecord; s: number }[] = [];
|
||||||
|
for (const r of idx) {
|
||||||
|
const s = score(r, q);
|
||||||
|
if (s <= 0) continue;
|
||||||
|
if (catFilter) {
|
||||||
|
const cat = categoryOf(r.style)?.toLowerCase();
|
||||||
|
const inStyle = r.style.toLowerCase().includes(catFilter);
|
||||||
|
if (cat !== catFilter && !inStyle) continue;
|
||||||
|
}
|
||||||
|
scored.push({ r, s });
|
||||||
|
}
|
||||||
|
scored.sort((a, b) => b.s - a.s || a.r.title.length - b.r.title.length);
|
||||||
|
for (const { r } of scored) {
|
||||||
|
if (out.length >= limit) break;
|
||||||
|
push(toResult(r));
|
||||||
|
}
|
||||||
|
|
||||||
|
return out.slice(0, limit);
|
||||||
|
}
|
||||||
@@ -461,6 +461,308 @@ export function absolutePos(
|
|||||||
return { x, y };
|
return { x, y };
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// --- quality warnings (geometry, non-blocking) -----------------------------
|
||||||
|
//
|
||||||
|
// These are computed purely from geometry — NO rendering — and are returned as
|
||||||
|
// WARNINGS (never errors): they do not block the write, they nudge the model to
|
||||||
|
// self-correct ("fix the warnings and retry, max 2 iterations"). They replace
|
||||||
|
// the vision-self-check a render backend would have done.
|
||||||
|
|
||||||
|
interface Rect {
|
||||||
|
x: number;
|
||||||
|
y: number;
|
||||||
|
w: number;
|
||||||
|
h: number;
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Absolute rect of a vertex (following the container chain), or null. */
|
||||||
|
function rectOf(cell: DrawioCell, byId: Map<string, DrawioCell>): Rect | null {
|
||||||
|
if (!cell.vertex || !cell.geometry.hasGeometry) return null;
|
||||||
|
const g = cell.geometry;
|
||||||
|
if (g.width == null || g.height == null) return null;
|
||||||
|
const { x, y } = absolutePos(cell, byId);
|
||||||
|
return { x, y, w: g.width, h: g.height };
|
||||||
|
}
|
||||||
|
|
||||||
|
/** True if `ancestorId` is somewhere up `cell`'s parent chain. */
|
||||||
|
function isAncestor(
|
||||||
|
ancestorId: string,
|
||||||
|
cell: DrawioCell,
|
||||||
|
byId: Map<string, DrawioCell>,
|
||||||
|
): boolean {
|
||||||
|
const seen = new Set<string>([cell.id]);
|
||||||
|
let p = cell.parent;
|
||||||
|
while (p && !seen.has(p)) {
|
||||||
|
if (p === ancestorId) return true;
|
||||||
|
seen.add(p);
|
||||||
|
p = byId.get(p)?.parent;
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Strict interior overlap of two rects (touching edges do NOT count). */
|
||||||
|
function rectsOverlap(a: Rect, b: Rect): boolean {
|
||||||
|
return a.x < b.x + b.w && b.x < a.x + a.w && a.y < b.y + b.h && b.y < a.y + a.h;
|
||||||
|
}
|
||||||
|
|
||||||
|
function center(r: Rect): { x: number; y: number } {
|
||||||
|
return { x: r.x + r.w / 2, y: r.y + r.h / 2 };
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Liang-Barsky: does segment p->q pass through the INTERIOR of rect r? Used to
|
||||||
|
* detect an edge crossing a shape that is not one of its endpoints.
|
||||||
|
*/
|
||||||
|
function segCrossesRect(
|
||||||
|
a: { x: number; y: number },
|
||||||
|
b: { x: number; y: number },
|
||||||
|
r: Rect,
|
||||||
|
): boolean {
|
||||||
|
const dx = b.x - a.x;
|
||||||
|
const dy = b.y - a.y;
|
||||||
|
// Canonical Liang-Barsky: for each of the 4 slabs, p*t <= q.
|
||||||
|
const p = [-dx, dx, -dy, dy];
|
||||||
|
const q = [a.x - r.x, r.x + r.w - a.x, a.y - r.y, r.y + r.h - a.y];
|
||||||
|
let t0 = 0;
|
||||||
|
let t1 = 1;
|
||||||
|
for (let i = 0; i < 4; i++) {
|
||||||
|
if (p[i] === 0) {
|
||||||
|
if (q[i] < 0) return false; // parallel to this slab AND outside it
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
const t = q[i] / p[i];
|
||||||
|
if (p[i] < 0) {
|
||||||
|
if (t > t1) return false;
|
||||||
|
if (t > t0) t0 = t;
|
||||||
|
} else {
|
||||||
|
if (t < t0) return false;
|
||||||
|
if (t < t1) t1 = t;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return t1 > t0; // strictly non-degenerate overlap with the rect interior
|
||||||
|
}
|
||||||
|
|
||||||
|
function cross(
|
||||||
|
ox: number,
|
||||||
|
oy: number,
|
||||||
|
ax: number,
|
||||||
|
ay: number,
|
||||||
|
bx: number,
|
||||||
|
by: number,
|
||||||
|
): number {
|
||||||
|
return (ax - ox) * (by - oy) - (ay - oy) * (bx - ox);
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Collinear + overlapping test for two straight segments (edge-on-edge). */
|
||||||
|
function segmentsOverlap(
|
||||||
|
a1: { x: number; y: number },
|
||||||
|
a2: { x: number; y: number },
|
||||||
|
b1: { x: number; y: number },
|
||||||
|
b2: { x: number; y: number },
|
||||||
|
): boolean {
|
||||||
|
const EPS = 1;
|
||||||
|
// b1 and b2 must be (near-)collinear with segment a.
|
||||||
|
if (
|
||||||
|
Math.abs(cross(a1.x, a1.y, a2.x, a2.y, b1.x, b1.y)) > EPS * dist(a1, a2) ||
|
||||||
|
Math.abs(cross(a1.x, a1.y, a2.x, a2.y, b2.x, b2.y)) > EPS * dist(a1, a2)
|
||||||
|
) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
// Project all four points onto the dominant axis and test 1-D overlap length.
|
||||||
|
const horizontal = Math.abs(a2.x - a1.x) >= Math.abs(a2.y - a1.y);
|
||||||
|
const pa = horizontal ? [a1.x, a2.x] : [a1.y, a2.y];
|
||||||
|
const pb = horizontal ? [b1.x, b2.x] : [b1.y, b2.y];
|
||||||
|
const loA = Math.min(pa[0], pa[1]);
|
||||||
|
const hiA = Math.max(pa[0], pa[1]);
|
||||||
|
const loB = Math.min(pb[0], pb[1]);
|
||||||
|
const hiB = Math.max(pb[0], pb[1]);
|
||||||
|
const overlap = Math.min(hiA, hiB) - Math.max(loA, loB);
|
||||||
|
return overlap > 5; // >5px of shared collinear run
|
||||||
|
}
|
||||||
|
|
||||||
|
function dist(
|
||||||
|
a: { x: number; y: number },
|
||||||
|
b: { x: number; y: number },
|
||||||
|
): number {
|
||||||
|
return Math.hypot(a.x - b.x, a.y - b.y) || 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Approximate rendered text width (px) of a cell value at a font size. */
|
||||||
|
function estimateLabelWidth(value: string, fontSize: number): number {
|
||||||
|
// Decode explicit line breaks, strip tags/entities, take the longest line.
|
||||||
|
const lines = value
|
||||||
|
.replace(/
/gi, "\n")
|
||||||
|
.replace(/<br\s*\/?>/gi, "\n")
|
||||||
|
.replace(/<[^>]+>/g, "")
|
||||||
|
.replace(/&[a-z]+;/gi, "x")
|
||||||
|
.split("\n");
|
||||||
|
let longest = 0;
|
||||||
|
for (const l of lines) longest = Math.max(longest, l.trim().length);
|
||||||
|
// ~0.6em per glyph is a decent average for proportional fonts.
|
||||||
|
return longest * fontSize * 0.6;
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Page size declared on the model root, defaulting to Letter (850x1100). */
|
||||||
|
function parsePageSize(modelXml: string): { w: number; h: number } {
|
||||||
|
const w = /pageWidth="(\d+)"/.exec(modelXml);
|
||||||
|
const h = /pageHeight="(\d+)"/.exec(modelXml);
|
||||||
|
return {
|
||||||
|
w: w ? Number(w[1]) : 850,
|
||||||
|
h: h ? Number(h[1]) : 1100,
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Minimum required gap between adjacent shapes (appendix heuristic). */
|
||||||
|
export const MIN_SHAPE_GAP = 150;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Compute the geometry-derived quality warnings for a parsed model. Each is a
|
||||||
|
* `[rule] message` string. Pure — no rendering, no I/O.
|
||||||
|
*/
|
||||||
|
export function computeQualityWarnings(
|
||||||
|
cells: DrawioCell[],
|
||||||
|
modelXml?: string,
|
||||||
|
): string[] {
|
||||||
|
const warnings: string[] = [];
|
||||||
|
const byId = new Map(cells.map((c) => [c.id, c]));
|
||||||
|
const verts = cells.filter((c) => c.vertex && c.id !== "0" && c.id !== "1");
|
||||||
|
const isContainer = (id: string) =>
|
||||||
|
verts.some((v) => v.parent === id);
|
||||||
|
const rects = new Map<string, Rect>();
|
||||||
|
for (const v of verts) {
|
||||||
|
const r = rectOf(v, byId);
|
||||||
|
if (r) rects.set(v.id, r);
|
||||||
|
}
|
||||||
|
|
||||||
|
// 1. Shape bbox overlap (excluding a container overlapping its own child).
|
||||||
|
for (let i = 0; i < verts.length; i++) {
|
||||||
|
for (let j = i + 1; j < verts.length; j++) {
|
||||||
|
const a = verts[i];
|
||||||
|
const b = verts[j];
|
||||||
|
const ra = rects.get(a.id);
|
||||||
|
const rb = rects.get(b.id);
|
||||||
|
if (!ra || !rb) continue;
|
||||||
|
if (isAncestor(a.id, b, byId) || isAncestor(b.id, a, byId)) continue;
|
||||||
|
if (rectsOverlap(ra, rb)) {
|
||||||
|
warnings.push(
|
||||||
|
`[shape-overlap] shapes "${a.id}" and "${b.id}" overlap; separate them (>=${MIN_SHAPE_GAP}px apart) or use layout:"elk"`,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// 2. Edge passing through a non-endpoint LEAF shape's bbox.
|
||||||
|
const edges = cells.filter((c) => c.edge);
|
||||||
|
for (const e of edges) {
|
||||||
|
if (!e.source || !e.target) continue;
|
||||||
|
const rs = rects.get(e.source);
|
||||||
|
const rt = rects.get(e.target);
|
||||||
|
if (!rs || !rt) continue;
|
||||||
|
const p = center(rs);
|
||||||
|
const q = center(rt);
|
||||||
|
for (const v of verts) {
|
||||||
|
if (v.id === e.source || v.id === e.target) continue;
|
||||||
|
if (isContainer(v.id)) continue; // an edge legitimately crosses container frames
|
||||||
|
const rv = rects.get(v.id);
|
||||||
|
if (!rv) continue;
|
||||||
|
// shrink to avoid flagging a graze at a shared layer boundary
|
||||||
|
const shrunk: Rect = { x: rv.x + 6, y: rv.y + 6, w: rv.w - 12, h: rv.h - 12 };
|
||||||
|
if (shrunk.w <= 0 || shrunk.h <= 0) continue;
|
||||||
|
if (segCrossesRect(p, q, shrunk)) {
|
||||||
|
warnings.push(
|
||||||
|
`[edge-through-shape] edge "${e.id}" passes through shape "${v.id}" (not its source/target); add exitX/exitY/entryX/entryY or a waypoint`,
|
||||||
|
);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// 3. Edge-on-edge overlap (parallel duplicates or collinear shared runs).
|
||||||
|
const edgeSegs: { id: string; a: any; b: any; key: string }[] = [];
|
||||||
|
for (const e of edges) {
|
||||||
|
if (!e.source || !e.target) continue;
|
||||||
|
const rs = rects.get(e.source);
|
||||||
|
const rt = rects.get(e.target);
|
||||||
|
if (!rs || !rt) continue;
|
||||||
|
const key = [e.source, e.target].sort().join("::");
|
||||||
|
edgeSegs.push({ id: e.id, a: center(rs), b: center(rt), key });
|
||||||
|
}
|
||||||
|
for (let i = 0; i < edgeSegs.length; i++) {
|
||||||
|
for (let j = i + 1; j < edgeSegs.length; j++) {
|
||||||
|
const ea = edgeSegs[i];
|
||||||
|
const eb = edgeSegs[j];
|
||||||
|
const dup = ea.key === eb.key;
|
||||||
|
if (dup || segmentsOverlap(ea.a, ea.b, eb.a, eb.b)) {
|
||||||
|
warnings.push(
|
||||||
|
`[edge-overlap] edges "${ea.id}" and "${eb.id}" lie on top of each other; offset one (distinct exit/entry points) or reroute`,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// 4. Adjacent SIBLING leaf shapes closer than MIN_SHAPE_GAP.
|
||||||
|
for (let i = 0; i < verts.length; i++) {
|
||||||
|
for (let j = i + 1; j < verts.length; j++) {
|
||||||
|
const a = verts[i];
|
||||||
|
const b = verts[j];
|
||||||
|
if ((a.parent ?? "") !== (b.parent ?? "")) continue;
|
||||||
|
if (isContainer(a.id) || isContainer(b.id)) continue;
|
||||||
|
const ra = rects.get(a.id);
|
||||||
|
const rb = rects.get(b.id);
|
||||||
|
if (!ra || !rb || rectsOverlap(ra, rb)) continue;
|
||||||
|
const yOverlap = ra.y < rb.y + rb.h && rb.y < ra.y + ra.h;
|
||||||
|
const xOverlap = ra.x < rb.x + rb.w && rb.x < ra.x + ra.w;
|
||||||
|
let gap = Infinity;
|
||||||
|
if (yOverlap) {
|
||||||
|
gap = Math.min(
|
||||||
|
gap,
|
||||||
|
ra.x >= rb.x ? ra.x - (rb.x + rb.w) : rb.x - (ra.x + ra.w),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
if (xOverlap) {
|
||||||
|
gap = Math.min(
|
||||||
|
gap,
|
||||||
|
ra.y >= rb.y ? ra.y - (rb.y + rb.h) : rb.y - (ra.y + ra.h),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
if (gap > 0 && gap < MIN_SHAPE_GAP) {
|
||||||
|
warnings.push(
|
||||||
|
`[gap-too-small] shapes "${a.id}" and "${b.id}" are ${Math.round(gap)}px apart (<${MIN_SHAPE_GAP}px); increase spacing`,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// 5. Label visibly wider than its shape (skip labels drawn OUTSIDE the shape).
|
||||||
|
for (const v of verts) {
|
||||||
|
if (!v.value || isContainer(v.id)) continue;
|
||||||
|
if (v.styleMap.verticalLabelPosition || v.styleMap.labelPosition) continue;
|
||||||
|
const r = rects.get(v.id);
|
||||||
|
if (!r) continue;
|
||||||
|
const fontSize = Number(v.styleMap.fontSize) || 12;
|
||||||
|
const est = estimateLabelWidth(v.value, fontSize);
|
||||||
|
if (est > r.w * 1.15) {
|
||||||
|
warnings.push(
|
||||||
|
`[label-overflow] label of "${v.id}" (~${Math.round(est)}px) is wider than its shape (${r.w}px); widen it, shorten the text, or wrap with 
`,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// 6. Negative / off-page (top-left) coordinates.
|
||||||
|
const page = parsePageSize(modelXml ?? "");
|
||||||
|
for (const v of verts) {
|
||||||
|
const r = rects.get(v.id);
|
||||||
|
if (!r) continue;
|
||||||
|
if (r.x < 0 || r.y < 0) {
|
||||||
|
warnings.push(
|
||||||
|
`[out-of-bounds] shape "${v.id}" has negative coordinates (${Math.round(r.x)},${Math.round(r.y)}); move it into the positive quadrant (page ${page.w}x${page.h})`,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return warnings;
|
||||||
|
}
|
||||||
|
|
||||||
// --- linter ----------------------------------------------------------------
|
// --- linter ----------------------------------------------------------------
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -755,12 +1057,15 @@ export function prepareModel(inputXml: string): PreparedModel {
|
|||||||
const modelXml = normalizeXml(rawModel);
|
const modelXml = normalizeXml(rawModel);
|
||||||
const bbox = computeBBox(cells);
|
const bbox = computeBBox(cells);
|
||||||
const cellCount = cells.filter((c) => c.id !== "0" && c.id !== "1").length;
|
const cellCount = cells.filter((c) => c.id !== "0" && c.id !== "1").length;
|
||||||
|
// Geometry quality warnings (non-blocking) are appended to any structural
|
||||||
|
// warnings from the linter. The model surfaces these and can self-correct.
|
||||||
|
const quality = computeQualityWarnings(cells, modelXml);
|
||||||
return {
|
return {
|
||||||
modelXml,
|
modelXml,
|
||||||
cells,
|
cells,
|
||||||
bbox,
|
bbox,
|
||||||
cellCount,
|
cellCount,
|
||||||
warnings,
|
warnings: [...warnings, ...quality],
|
||||||
hash: mxHash(modelXml),
|
hash: mxHash(modelXml),
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -56,6 +56,29 @@ export interface SharedToolSpec {
|
|||||||
buildShape?: (z: ZodLike) => Record<string, unknown>;
|
buildShape?: (z: ZodLike) => Record<string, unknown>;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Compact HARD-RULES block injected into the drawio_create / drawio_update
|
||||||
|
* descriptions (issue #424 — the jgraph/drawio-mcp pattern of putting the
|
||||||
|
* must-follow rules right where the model reads them at call time). Deliberately
|
||||||
|
* terse; the long-form authoring guidance lives in drawio_guide.
|
||||||
|
*/
|
||||||
|
export const DRAWIO_HARD_RULES =
|
||||||
|
' RULES: id="0" and id="1"(parent="0") sentinels are MANDATORY; each cell is ' +
|
||||||
|
'vertex="1" XOR edge="1" (a container/group is neither); every edge carries a ' +
|
||||||
|
'child <mxGeometry relative="1" as="geometry"/>; ids are unique; NO XML ' +
|
||||||
|
'comments; put html=1 in styles and XML-escape value (& -> &, < -> <); a ' +
|
||||||
|
"newline in a label is 
, never a literal \\n; containers are TRANSPARENT " +
|
||||||
|
"(fillColor=none;container=1;dropTarget=1;) with children set parent=<groupId> " +
|
||||||
|
'and RELATIVE coords, and an edge between different containers is parent="1"; set ' +
|
||||||
|
'adaptiveColors="auto" on <mxGraphModel> (free dark-theme adaptation for ' +
|
||||||
|
'strokeColor/fillColor/fontColor="default"); do NOT guess shape=mxgraph.* names ' +
|
||||||
|
"(a wrong name renders as an empty box) — call drawio_shapes first; call " +
|
||||||
|
"drawio_guide(section) for authoring help. Pass layout:\"elk\" to let the server " +
|
||||||
|
"compute coordinates from your rough placement. The result carries geometry " +
|
||||||
|
"WARNINGS (overlaps, an edge through a shape, edge-on-edge, gaps <150px, a label " +
|
||||||
|
"wider than its shape, negative coords) — they do NOT block the write; fix them " +
|
||||||
|
"and retry, max 2 iterations.";
|
||||||
|
|
||||||
export const SHARED_TOOL_SPECS = {
|
export const SHARED_TOOL_SPECS = {
|
||||||
// --- no-argument read tools ---
|
// --- no-argument read tools ---
|
||||||
|
|
||||||
@@ -1120,7 +1143,7 @@ export const SHARED_TOOL_SPECS = {
|
|||||||
}),
|
}),
|
||||||
},
|
},
|
||||||
|
|
||||||
// --- draw.io diagrams (issue #423, stage 1) ---
|
// --- draw.io diagrams (issue #423 stage 1, #424 stage 2) ---
|
||||||
|
|
||||||
drawioGet: {
|
drawioGet: {
|
||||||
mcpName: 'drawio_get',
|
mcpName: 'drawio_get',
|
||||||
@@ -1168,7 +1191,8 @@ export const SHARED_TOOL_SPECS = {
|
|||||||
'back into drawio_get / drawio_update for THIS document. It is positional, ' +
|
'back into drawio_get / drawio_update for THIS document. It is positional, ' +
|
||||||
'so if you add or remove blocks before it, re-resolve via get_outline. The ' +
|
'so if you add or remove blocks before it, re-resolve via get_outline. The ' +
|
||||||
'diagram is editable in the draw.io editor and can be re-read with ' +
|
'diagram is editable in the draw.io editor and can be re-read with ' +
|
||||||
'drawio_get.',
|
'drawio_get.' +
|
||||||
|
DRAWIO_HARD_RULES,
|
||||||
tier: 'deferred',
|
tier: 'deferred',
|
||||||
catalogLine:
|
catalogLine:
|
||||||
'drawioCreate — create a draw.io diagram from mxGraph XML and insert it.',
|
'drawioCreate — create a draw.io diagram from mxGraph XML and insert it.',
|
||||||
@@ -1192,6 +1216,14 @@ export const SHARED_TOOL_SPECS = {
|
|||||||
.optional()
|
.optional()
|
||||||
.describe('Anchor text fragment (for before/after).'),
|
.describe('Anchor text fragment (for before/after).'),
|
||||||
title: z.string().optional().describe('Optional diagram title.'),
|
title: z.string().optional().describe('Optional diagram title.'),
|
||||||
|
layout: z
|
||||||
|
.enum(['elk'])
|
||||||
|
.optional()
|
||||||
|
.describe(
|
||||||
|
'Optional: "elk" runs an ELK layered auto-layout (honouring nested ' +
|
||||||
|
'containers) and rewrites all coordinates — give rough placement and ' +
|
||||||
|
'let the server compute pixels.',
|
||||||
|
),
|
||||||
}),
|
}),
|
||||||
},
|
},
|
||||||
|
|
||||||
@@ -1205,7 +1237,8 @@ export const SHARED_TOOL_SPECS = {
|
|||||||
'(a human or another agent edited it) the hash mismatches and the update ' +
|
'(a human or another agent edited it) the hash mismatches and the update ' +
|
||||||
'is refused with a conflict error — re-read with drawio_get and retry. On ' +
|
'is refused with a conflict error — re-read with drawio_get and retry. On ' +
|
||||||
'success it overwrites the diagram attachment and updates the node ' +
|
'success it overwrites the diagram attachment and updates the node ' +
|
||||||
'width/height. `node` is the drawio node attrs.id or "#<index>".',
|
'width/height. `node` is the drawio node attrs.id or "#<index>".' +
|
||||||
|
DRAWIO_HARD_RULES,
|
||||||
tier: 'deferred',
|
tier: 'deferred',
|
||||||
catalogLine:
|
catalogLine:
|
||||||
'drawioUpdate — replace a draw.io diagram (optimistic-locked by baseHash).',
|
'drawioUpdate — replace a draw.io diagram (optimistic-locked by baseHash).',
|
||||||
@@ -1225,6 +1258,72 @@ export const SHARED_TOOL_SPECS = {
|
|||||||
.string()
|
.string()
|
||||||
.min(1)
|
.min(1)
|
||||||
.describe('The meta.hash from the drawio_get this edit is based on.'),
|
.describe('The meta.hash from the drawio_get this edit is based on.'),
|
||||||
|
layout: z
|
||||||
|
.enum(['elk'])
|
||||||
|
.optional()
|
||||||
|
.describe(
|
||||||
|
'Optional: "elk" runs an ELK layered auto-layout and rewrites all ' +
|
||||||
|
'coordinates before writing.',
|
||||||
|
),
|
||||||
|
}),
|
||||||
|
},
|
||||||
|
|
||||||
|
drawioShapes: {
|
||||||
|
mcpName: 'drawio_shapes',
|
||||||
|
inAppKey: 'drawioShapes',
|
||||||
|
description:
|
||||||
|
'Look up VERIFIED draw.io stencil style-strings so you never guess a ' +
|
||||||
|
'`shape=mxgraph.*` name (a wrong name renders as an EMPTY BOX). Searches a ' +
|
||||||
|
'bundled catalog of ~10 400 shapes (the jgraph/drawio-mcp index) by ' +
|
||||||
|
'substring, tags and loose fuzzy match, plus a curated overlay for AWS ' +
|
||||||
|
'icons: it returns the correct resIcon for rebranded services (OpenSearch ' +
|
||||||
|
'-> elasticsearch_service, MSK -> managed_streaming_for_kafka, VPC Peering ' +
|
||||||
|
'-> peering, IAM Identity Center -> single_sign_on) and maps known-broken ' +
|
||||||
|
'stencils to working replacements (e.g. dynamodb_table -> dynamodb) with a ' +
|
||||||
|
'note. Each hit is { style, w, h, title, type, category?, note? } — copy ' +
|
||||||
|
'`style` verbatim onto the cell and use w/h as the default size. Call this ' +
|
||||||
|
'BEFORE drawio_create/drawio_update whenever you need a specific icon ' +
|
||||||
|
'(AWS/Azure/GCP/network/UML/flowchart).',
|
||||||
|
tier: 'deferred',
|
||||||
|
catalogLine:
|
||||||
|
'drawioShapes — look up verified draw.io stencil style-strings (no empty boxes).',
|
||||||
|
buildShape: (z) => ({
|
||||||
|
query: z
|
||||||
|
.string()
|
||||||
|
.min(1)
|
||||||
|
.describe('What to find, e.g. "lambda", "s3", "azure cosmos", "vpc group".'),
|
||||||
|
category: z
|
||||||
|
.string()
|
||||||
|
.optional()
|
||||||
|
.describe('Optional filter, e.g. an AWS category name ("Compute").'),
|
||||||
|
limit: z
|
||||||
|
.number()
|
||||||
|
.optional()
|
||||||
|
.describe('Max results (default 12, capped at 50).'),
|
||||||
|
}),
|
||||||
|
},
|
||||||
|
|
||||||
|
drawioGuide: {
|
||||||
|
mcpName: 'drawio_guide',
|
||||||
|
inAppKey: 'drawioGuide',
|
||||||
|
description:
|
||||||
|
'Progressive-disclosure draw.io authoring reference. Call with a `section` ' +
|
||||||
|
'to pull one focused, <=4KB chapter instead of bloating context: ' +
|
||||||
|
'"skeleton" (canonical mxGraph XML, sentinels, the accepted inputs, hard ' +
|
||||||
|
'rules), "layout" (spacing heuristics, edge routing, the layout:"elk" ' +
|
||||||
|
'option, the quality warnings), "containers" (transparent groups, relative ' +
|
||||||
|
'child coords, cross-container edges, swimlanes), "icons-aws" (the ' +
|
||||||
|
'service/resource icon patterns, category colors, rebrandings, blocklist), ' +
|
||||||
|
'"icons-azure" (portable image-style paths). Omit `section` to get the ' +
|
||||||
|
'index of sections. Pair with drawio_shapes for exact stencil styles.',
|
||||||
|
tier: 'deferred',
|
||||||
|
catalogLine:
|
||||||
|
'drawioGuide — on-demand draw.io authoring reference (skeleton/layout/containers/icons).',
|
||||||
|
buildShape: (z) => ({
|
||||||
|
section: z
|
||||||
|
.enum(['skeleton', 'layout', 'containers', 'icons-aws', 'icons-azure'])
|
||||||
|
.optional()
|
||||||
|
.describe('Which section to read; omit for the section index.'),
|
||||||
}),
|
}),
|
||||||
},
|
},
|
||||||
} satisfies Record<string, SharedToolSpec>;
|
} satisfies Record<string, SharedToolSpec>;
|
||||||
|
|||||||
@@ -0,0 +1,51 @@
|
|||||||
|
// Unit tests for the drawio_guide progressive-disclosure reference (issue #424).
|
||||||
|
// Acceptance #2: every section is returned and each is <= ~4KB so pulling one
|
||||||
|
// does not bloat the model's context.
|
||||||
|
import { test } from "node:test";
|
||||||
|
import assert from "node:assert/strict";
|
||||||
|
import {
|
||||||
|
getGuideSection,
|
||||||
|
GUIDE_SECTIONS,
|
||||||
|
} from "../../build/lib/drawio-guide.js";
|
||||||
|
|
||||||
|
const MAX_BYTES = 4096; // "<= ~4KB" acceptance bound.
|
||||||
|
|
||||||
|
test("every section is returned and is under ~4KB", () => {
|
||||||
|
assert.deepEqual(GUIDE_SECTIONS, [
|
||||||
|
"skeleton",
|
||||||
|
"layout",
|
||||||
|
"containers",
|
||||||
|
"icons-aws",
|
||||||
|
"icons-azure",
|
||||||
|
]);
|
||||||
|
for (const s of GUIDE_SECTIONS) {
|
||||||
|
const { section, content } = getGuideSection(s);
|
||||||
|
assert.equal(section, s);
|
||||||
|
assert.ok(content.length > 200, `${s}: suspiciously short`);
|
||||||
|
const bytes = Buffer.byteLength(content, "utf8");
|
||||||
|
assert.ok(bytes <= MAX_BYTES, `${s}: ${bytes} bytes exceeds ${MAX_BYTES}`);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
test("each section's content matches its topic", () => {
|
||||||
|
assert.match(getGuideSection("skeleton").content, /mxGraphModel/);
|
||||||
|
assert.match(getGuideSection("skeleton").content, /adaptiveColors="auto"/);
|
||||||
|
assert.match(getGuideSection("layout").content, /elk/i);
|
||||||
|
assert.match(getGuideSection("layout").content, /150px|<150/);
|
||||||
|
assert.match(getGuideSection("containers").content, /fillColor=none/);
|
||||||
|
assert.match(getGuideSection("icons-aws").content, /resourceIcon/);
|
||||||
|
assert.match(getGuideSection("icons-aws").content, /elasticsearch_service/);
|
||||||
|
assert.match(getGuideSection("icons-azure").content, /img\/lib\/azure2/);
|
||||||
|
});
|
||||||
|
|
||||||
|
test("omitting the section returns the index of sections", () => {
|
||||||
|
const idx = getGuideSection();
|
||||||
|
assert.equal(idx.section, "index");
|
||||||
|
for (const s of GUIDE_SECTIONS) assert.ok(idx.content.includes(s));
|
||||||
|
assert.ok(Buffer.byteLength(idx.content, "utf8") <= MAX_BYTES);
|
||||||
|
});
|
||||||
|
|
||||||
|
test("an unknown section falls back to the index", () => {
|
||||||
|
const idx = getGuideSection("nonsense");
|
||||||
|
assert.equal(idx.section, "index");
|
||||||
|
});
|
||||||
@@ -0,0 +1,111 @@
|
|||||||
|
// Unit tests for the ELK auto-layout (issue #424, part 4). Acceptance #3: a
|
||||||
|
// 10+ node graph with rough/overlapping coordinates, laid out with ELK, has no
|
||||||
|
// bbox overlaps and produces no quality warnings.
|
||||||
|
import { test } from "node:test";
|
||||||
|
import assert from "node:assert/strict";
|
||||||
|
import { applyElkLayout } from "../../build/lib/drawio-layout.js";
|
||||||
|
import { prepareModel, parseCells } from "../../build/lib/drawio-xml.js";
|
||||||
|
|
||||||
|
/** Build a model where every vertex starts stacked at (10,10). */
|
||||||
|
function stackedGraph(n, edges) {
|
||||||
|
let cells = "";
|
||||||
|
for (let i = 2; i < 2 + n; i++) {
|
||||||
|
cells +=
|
||||||
|
`<mxCell id="${i}" value="N${i}" style="rounded=1;html=1;" vertex="1" parent="1">` +
|
||||||
|
`<mxGeometry x="10" y="10" width="120" height="60" as="geometry"/></mxCell>`;
|
||||||
|
}
|
||||||
|
let ei = 0;
|
||||||
|
for (const [s, t] of edges) {
|
||||||
|
cells +=
|
||||||
|
`<mxCell id="e${ei++}" edge="1" parent="1" source="${s}" target="${t}">` +
|
||||||
|
`<mxGeometry relative="1" as="geometry"/></mxCell>`;
|
||||||
|
}
|
||||||
|
return (
|
||||||
|
'<mxGraphModel><root><mxCell id="0"/><mxCell id="1" parent="0"/>' +
|
||||||
|
cells +
|
||||||
|
"</root></mxGraphModel>"
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
test("acceptance #3: a 10-node graph with rough coords lays out with no warnings", async () => {
|
||||||
|
const edges = [
|
||||||
|
[2, 3], [2, 4], [3, 5], [4, 5], [5, 6],
|
||||||
|
[6, 7], [6, 8], [7, 9], [8, 10], [9, 11], [10, 11],
|
||||||
|
];
|
||||||
|
const model = stackedGraph(10, edges);
|
||||||
|
|
||||||
|
// Before: everything is stacked at (10,10) -> lots of overlap warnings.
|
||||||
|
const before = prepareModel(model);
|
||||||
|
assert.ok(before.warnings.length > 0, "the stacked input should warn");
|
||||||
|
|
||||||
|
const laid = await applyElkLayout(model);
|
||||||
|
const after = prepareModel(laid);
|
||||||
|
assert.equal(
|
||||||
|
after.warnings.length,
|
||||||
|
0,
|
||||||
|
`ELK layout should clear all warnings, got: ${after.warnings.join(" | ")}`,
|
||||||
|
);
|
||||||
|
// Same number of user cells survived the layout.
|
||||||
|
assert.equal(after.cellCount, before.cellCount);
|
||||||
|
});
|
||||||
|
|
||||||
|
test("ELK honours nested containers as compound nodes (no warnings, children stay nested)", async () => {
|
||||||
|
const model =
|
||||||
|
'<mxGraphModel><root><mxCell id="0"/><mxCell id="1" parent="0"/>' +
|
||||||
|
'<mxCell id="g" value="VPC" style="container=1;dropTarget=1;fillColor=none;" vertex="1" parent="1"><mxGeometry x="0" y="0" width="100" height="100" as="geometry"/></mxCell>' +
|
||||||
|
'<mxCell id="a" value="A" style="rounded=1;" vertex="1" parent="g"><mxGeometry width="120" height="60" as="geometry"/></mxCell>' +
|
||||||
|
'<mxCell id="b" value="B" style="rounded=1;" vertex="1" parent="g"><mxGeometry width="120" height="60" as="geometry"/></mxCell>' +
|
||||||
|
'<mxCell id="c" value="C" style="rounded=1;" vertex="1" parent="1"><mxGeometry width="120" height="60" as="geometry"/></mxCell>' +
|
||||||
|
'<mxCell id="ab" edge="1" parent="g" source="a" target="b"><mxGeometry relative="1" as="geometry"/></mxCell>' +
|
||||||
|
'<mxCell id="bc" edge="1" parent="1" source="b" target="c"><mxGeometry relative="1" as="geometry"/></mxCell>' +
|
||||||
|
"</root></mxGraphModel>";
|
||||||
|
const laid = await applyElkLayout(model);
|
||||||
|
const cells = parseCells(laid);
|
||||||
|
const byId = Object.fromEntries(cells.map((c) => [c.id, c]));
|
||||||
|
// Children keep their container parent; the container was sized to hold them.
|
||||||
|
assert.equal(byId.a.parent, "g");
|
||||||
|
assert.equal(byId.b.parent, "g");
|
||||||
|
assert.ok((byId.g.geometry.width ?? 0) >= 260, "container widened to fit children");
|
||||||
|
const after = prepareModel(laid);
|
||||||
|
assert.equal(after.warnings.length, 0, after.warnings.join(" | "));
|
||||||
|
});
|
||||||
|
|
||||||
|
test("edges and cell count are preserved by layout", async () => {
|
||||||
|
const model = stackedGraph(4, [[2, 3], [3, 4], [4, 5]]);
|
||||||
|
const laid = await applyElkLayout(model);
|
||||||
|
const cells = parseCells(laid);
|
||||||
|
assert.equal(cells.filter((c) => c.edge).length, 3);
|
||||||
|
assert.equal(cells.filter((c) => c.vertex).length, 4);
|
||||||
|
});
|
||||||
|
|
||||||
|
test("DoS guard: a graph over the node cap is returned unchanged, quickly", async () => {
|
||||||
|
// 600 vertices > ELK_MAX_NODES (500): the layout must be SKIPPED and the
|
||||||
|
// input returned verbatim, without ever handing the graph to elkjs. This
|
||||||
|
// exercises the cap path that bounds the in-process, event-loop-blocking
|
||||||
|
// layout on LLM-supplied XML.
|
||||||
|
const model = stackedGraph(600, []);
|
||||||
|
const t0 = Date.now();
|
||||||
|
const laid = await applyElkLayout(model);
|
||||||
|
const dt = Date.now() - t0;
|
||||||
|
// normalizeInput may reserialize, but geometry must be untouched: every
|
||||||
|
// vertex is still stacked at (10,10), i.e. no ELK coordinates were applied.
|
||||||
|
const cells = parseCells(laid);
|
||||||
|
const verts = cells.filter((c) => c.vertex);
|
||||||
|
assert.equal(verts.length, 600, "all vertices survived");
|
||||||
|
for (const v of verts) {
|
||||||
|
assert.equal(v.geometry.x, 10, "x untouched -> layout was skipped");
|
||||||
|
assert.equal(v.geometry.y, 10, "y untouched -> layout was skipped");
|
||||||
|
}
|
||||||
|
// Returning the input without an ELK pass is essentially instant; assert it
|
||||||
|
// did not hang. Generous bound to stay non-flaky on a loaded CI box.
|
||||||
|
assert.ok(dt < 2000, `cap path should be fast, took ${dt}ms`);
|
||||||
|
});
|
||||||
|
|
||||||
|
test("layout is best-effort: an empty/degenerate model is returned intact", async () => {
|
||||||
|
const model =
|
||||||
|
'<mxGraphModel><root><mxCell id="0"/><mxCell id="1" parent="0"/></root></mxGraphModel>';
|
||||||
|
const laid = await applyElkLayout(model);
|
||||||
|
// No vertices -> unchanged, still lints clean.
|
||||||
|
const after = prepareModel(laid);
|
||||||
|
assert.equal(after.cellCount, 0);
|
||||||
|
});
|
||||||
@@ -0,0 +1,101 @@
|
|||||||
|
// Unit tests for the geometry quality-warnings (issue #424, part 5). Acceptance
|
||||||
|
// #4: every warning has a positive AND a negative case, and warnings NEVER block
|
||||||
|
// the write (prepareModel returns them, it does not throw).
|
||||||
|
import { test } from "node:test";
|
||||||
|
import assert from "node:assert/strict";
|
||||||
|
import { prepareModel } from "../../build/lib/drawio-xml.js";
|
||||||
|
|
||||||
|
function model(cells) {
|
||||||
|
return (
|
||||||
|
'<mxGraphModel><root><mxCell id="0"/><mxCell id="1" parent="0"/>' +
|
||||||
|
cells +
|
||||||
|
"</root></mxGraphModel>"
|
||||||
|
);
|
||||||
|
}
|
||||||
|
function warnings(cells) {
|
||||||
|
return prepareModel(model(cells)).warnings;
|
||||||
|
}
|
||||||
|
function has(ws, rule) {
|
||||||
|
return ws.some((w) => w.startsWith(`[${rule}]`));
|
||||||
|
}
|
||||||
|
function v(id, x, y, w = 120, h = 60, value = "", style = "rounded=1;html=1;", parent = "1") {
|
||||||
|
return (
|
||||||
|
`<mxCell id="${id}" value="${value}" style="${style}" vertex="1" parent="${parent}">` +
|
||||||
|
`<mxGeometry x="${x}" y="${y}" width="${w}" height="${h}" as="geometry"/></mxCell>`
|
||||||
|
);
|
||||||
|
}
|
||||||
|
function edge(id, s, t, parent = "1") {
|
||||||
|
return (
|
||||||
|
`<mxCell id="${id}" edge="1" parent="${parent}" source="${s}" target="${t}">` +
|
||||||
|
`<mxGeometry relative="1" as="geometry"/></mxCell>`
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
test("shape-overlap: positive and negative", () => {
|
||||||
|
assert.ok(has(warnings(v("a", 0, 0) + v("b", 50, 20)), "shape-overlap"));
|
||||||
|
assert.ok(!has(warnings(v("a", 0, 0) + v("b", 300, 0)), "shape-overlap"));
|
||||||
|
});
|
||||||
|
|
||||||
|
test("shape-overlap: a container over its own child does NOT warn", () => {
|
||||||
|
const cells =
|
||||||
|
'<mxCell id="g" value="G" style="container=1;fillColor=none;" vertex="1" parent="1"><mxGeometry x="0" y="0" width="400" height="200" as="geometry"/></mxCell>' +
|
||||||
|
v("a", 30, 40, 120, 60, "", "rounded=1;", "g");
|
||||||
|
assert.ok(!has(warnings(cells), "shape-overlap"));
|
||||||
|
});
|
||||||
|
|
||||||
|
test("edge-through-shape: positive and negative", () => {
|
||||||
|
// A -> B passes straight through C sitting on the line.
|
||||||
|
const pos =
|
||||||
|
v("a", 0, 0, 60, 60) + v("c", 200, 0, 60, 60) + v("b", 400, 0, 60, 60) + edge("e", "a", "b");
|
||||||
|
assert.ok(has(warnings(pos), "edge-through-shape"));
|
||||||
|
// C moved off the line -> no crossing.
|
||||||
|
const neg =
|
||||||
|
v("a", 0, 0, 60, 60) + v("c", 200, 300, 60, 60) + v("b", 400, 0, 60, 60) + edge("e", "a", "b");
|
||||||
|
assert.ok(!has(warnings(neg), "edge-through-shape"));
|
||||||
|
});
|
||||||
|
|
||||||
|
test("edge-overlap: positive (duplicate) and negative", () => {
|
||||||
|
const pos = v("a", 0, 0) + v("b", 300, 0) + edge("e1", "a", "b") + edge("e2", "a", "b");
|
||||||
|
assert.ok(has(warnings(pos), "edge-overlap"));
|
||||||
|
const neg =
|
||||||
|
v("a", 0, 0) + v("b", 300, 0) + v("c", 300, 300) + edge("e1", "a", "b") + edge("e2", "a", "c");
|
||||||
|
assert.ok(!has(warnings(neg), "edge-overlap"));
|
||||||
|
});
|
||||||
|
|
||||||
|
test("gap-too-small: positive and negative", () => {
|
||||||
|
assert.ok(has(warnings(v("a", 0, 0) + v("b", 220, 0)), "gap-too-small")); // 100px gap
|
||||||
|
assert.ok(!has(warnings(v("a", 0, 0) + v("b", 300, 0)), "gap-too-small")); // 180px gap
|
||||||
|
});
|
||||||
|
|
||||||
|
test("label-overflow: positive and negative", () => {
|
||||||
|
const pos = v("a", 0, 0, 40, 60, "A very long label that does not fit");
|
||||||
|
assert.ok(has(warnings(pos), "label-overflow"));
|
||||||
|
const neg = v("a", 0, 0, 300, 60, "Short");
|
||||||
|
assert.ok(!has(warnings(neg), "label-overflow"));
|
||||||
|
});
|
||||||
|
|
||||||
|
test("label-overflow: a label drawn OUTSIDE the shape (AWS icon) does NOT warn", () => {
|
||||||
|
const cells = v(
|
||||||
|
"a",
|
||||||
|
0,
|
||||||
|
0,
|
||||||
|
60,
|
||||||
|
60,
|
||||||
|
"A very long service label below the icon",
|
||||||
|
"shape=mxgraph.aws4.resourceIcon;verticalLabelPosition=bottom;verticalAlign=top;html=1;",
|
||||||
|
);
|
||||||
|
assert.ok(!has(warnings(cells), "label-overflow"));
|
||||||
|
});
|
||||||
|
|
||||||
|
test("out-of-bounds: positive (negative coords) and negative", () => {
|
||||||
|
assert.ok(has(warnings(v("a", -50, 10)), "out-of-bounds"));
|
||||||
|
assert.ok(!has(warnings(v("a", 10, 10)), "out-of-bounds"));
|
||||||
|
});
|
||||||
|
|
||||||
|
test("warnings never block the write (prepareModel returns, does not throw)", () => {
|
||||||
|
const messy = v("a", 0, 0) + v("b", 30, 20) + v("c", 40, 40); // heavy overlap
|
||||||
|
const prepared = prepareModel(model(messy));
|
||||||
|
assert.ok(prepared.warnings.length > 0, "expected warnings");
|
||||||
|
assert.ok(prepared.modelXml.includes("mxGraphModel"), "still produced a model");
|
||||||
|
assert.equal(prepared.cellCount, 3);
|
||||||
|
});
|
||||||
@@ -0,0 +1,97 @@
|
|||||||
|
// Unit tests for the drawio_shapes verified-stencil catalog (issue #424).
|
||||||
|
// Covers acceptance #1: a "lambda" query returns a valid mxgraph.aws4 icon with
|
||||||
|
// the right service/resource pattern + sizes; a blocklisted stencil query
|
||||||
|
// returns its working replacement.
|
||||||
|
import { test } from "node:test";
|
||||||
|
import assert from "node:assert/strict";
|
||||||
|
import {
|
||||||
|
searchShapes,
|
||||||
|
awsServiceStyle,
|
||||||
|
azureImageStyle,
|
||||||
|
loadShapeIndex,
|
||||||
|
AWS_CATEGORY_FILL,
|
||||||
|
} from "../../build/lib/drawio-shapes.js";
|
||||||
|
|
||||||
|
test("the bundled index loads and is the real ~10k-shape catalog", () => {
|
||||||
|
const idx = loadShapeIndex();
|
||||||
|
assert.ok(Array.isArray(idx));
|
||||||
|
assert.ok(idx.length > 10000, `expected >10000 shapes, got ${idx.length}`);
|
||||||
|
// Record shape { style, w, h, title, tags, type }.
|
||||||
|
for (const k of ["style", "w", "h", "title", "tags", "type"]) {
|
||||||
|
assert.ok(k in idx[0], `record missing key ${k}`);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
test('drawio_shapes("lambda") returns a valid mxgraph.aws4 service icon', () => {
|
||||||
|
const results = searchShapes("lambda", { limit: 5 });
|
||||||
|
assert.ok(results.length > 0);
|
||||||
|
// Acceptance #1: a valid aws4 service-level icon (resourceIcon + resIcon)
|
||||||
|
// for lambda, with sensible default sizes, is present.
|
||||||
|
const svc = results.find(
|
||||||
|
(r) =>
|
||||||
|
/shape=mxgraph\.aws4\.resourceIcon/.test(r.style) &&
|
||||||
|
/resIcon=mxgraph\.aws4\.lambda(_function)?\b/.test(r.style),
|
||||||
|
);
|
||||||
|
assert.ok(svc, `no aws4 lambda service icon in ${JSON.stringify(results.map((r) => r.style.slice(-40)))}`);
|
||||||
|
assert.ok(svc.w > 0 && svc.h > 0, "icon must carry default w/h");
|
||||||
|
// The current-generation aws4 icon must outrank the deprecated aws3 one.
|
||||||
|
assert.match(results[0].style, /mxgraph\.aws4/);
|
||||||
|
});
|
||||||
|
|
||||||
|
test("a blocklisted stencil query returns its replacement + a note", () => {
|
||||||
|
const results = searchShapes("dynamodb_table", { limit: 3 });
|
||||||
|
assert.ok(results.length > 0);
|
||||||
|
const rep = results[0];
|
||||||
|
// dynamodb_table (empty box) -> dynamodb.
|
||||||
|
assert.match(rep.style, /resIcon=mxgraph\.aws4\.dynamodb\b/);
|
||||||
|
assert.ok(rep.note && /dynamodb_table/.test(rep.note), "note must explain the replacement");
|
||||||
|
// The broken stencil name must NOT be returned as a usable style.
|
||||||
|
assert.ok(
|
||||||
|
!results.some((r) => /resIcon=mxgraph\.aws4\.dynamodb_table\b/.test(r.style)),
|
||||||
|
"the broken dynamodb_table stencil must not be returned",
|
||||||
|
);
|
||||||
|
});
|
||||||
|
|
||||||
|
test("an AWS rebranding query returns the real (renamed) resIcon", () => {
|
||||||
|
const os = searchShapes("opensearch", { limit: 3 });
|
||||||
|
assert.ok(
|
||||||
|
os.some((r) => /resIcon=mxgraph\.aws4\.elasticsearch_service\b/.test(r.style) && r.note),
|
||||||
|
"OpenSearch must map to elasticsearch_service with a note",
|
||||||
|
);
|
||||||
|
const msk = searchShapes("msk", { limit: 3 });
|
||||||
|
assert.ok(
|
||||||
|
msk.some((r) => /managed_streaming_for_kafka/.test(r.style)),
|
||||||
|
"MSK must map to managed_streaming_for_kafka",
|
||||||
|
);
|
||||||
|
});
|
||||||
|
|
||||||
|
test("category filter narrows results", () => {
|
||||||
|
const all = searchShapes("database", { limit: 20 });
|
||||||
|
const dbOnly = searchShapes("database", { category: "Database", limit: 20 });
|
||||||
|
assert.ok(dbOnly.length <= all.length);
|
||||||
|
});
|
||||||
|
|
||||||
|
test("limit is honoured and capped", () => {
|
||||||
|
assert.equal(searchShapes("aws", { limit: 3 }).length, 3);
|
||||||
|
assert.ok(searchShapes("aws", { limit: 999 }).length <= 50);
|
||||||
|
});
|
||||||
|
|
||||||
|
test("empty query returns nothing", () => {
|
||||||
|
assert.deepEqual(searchShapes(" "), []);
|
||||||
|
});
|
||||||
|
|
||||||
|
test("style builders match the appendix templates", () => {
|
||||||
|
const s = awsServiceStyle("lambda", "Compute");
|
||||||
|
assert.match(s, /strokeColor=#ffffff/); // mandatory for service-level
|
||||||
|
assert.match(s, new RegExp(`fillColor=${AWS_CATEGORY_FILL.Compute}`));
|
||||||
|
assert.match(s, /shape=mxgraph\.aws4\.resourceIcon;resIcon=mxgraph\.aws4\.lambda$/);
|
||||||
|
const az = azureImageStyle("databases/Azure_Cosmos_DB.svg");
|
||||||
|
assert.match(az, /image=img\/lib\/azure2\/databases\/Azure_Cosmos_DB\.svg/);
|
||||||
|
});
|
||||||
|
|
||||||
|
test("azure and group queries surface the curated overlay", () => {
|
||||||
|
const cosmos = searchShapes("cosmos", { limit: 5 });
|
||||||
|
assert.ok(cosmos.some((r) => /azure2\/databases\/Azure_Cosmos_DB\.svg/.test(r.style)));
|
||||||
|
const vpc = searchShapes("vpc group", { limit: 5 });
|
||||||
|
assert.ok(vpc.some((r) => /grIcon=mxgraph\.aws4\.group_vpc2/.test(r.style)));
|
||||||
|
});
|
||||||
@@ -0,0 +1,62 @@
|
|||||||
|
// Drift guards for the stage-2 drawio tools (issue #424): the new tools must be
|
||||||
|
// wired into the shared registry AND routed in SERVER_INSTRUCTIONS, and the
|
||||||
|
// hard-rules block must be injected into the create/update descriptions. These
|
||||||
|
// complement the generic server-instructions.test.mjs / tool-specs.test.mjs.
|
||||||
|
import { test } from "node:test";
|
||||||
|
import assert from "node:assert/strict";
|
||||||
|
import { SERVER_INSTRUCTIONS } from "../../build/index.js";
|
||||||
|
import { SHARED_TOOL_SPECS } from "../../build/tool-specs.js";
|
||||||
|
|
||||||
|
test("drawio_shapes and drawio_guide are in the shared registry", () => {
|
||||||
|
assert.equal(SHARED_TOOL_SPECS.drawioShapes.mcpName, "drawio_shapes");
|
||||||
|
assert.equal(SHARED_TOOL_SPECS.drawioGuide.mcpName, "drawio_guide");
|
||||||
|
// Deferred tier, matching the stage-1 drawio tools.
|
||||||
|
assert.equal(SHARED_TOOL_SPECS.drawioShapes.tier, "deferred");
|
||||||
|
assert.equal(SHARED_TOOL_SPECS.drawioGuide.tier, "deferred");
|
||||||
|
});
|
||||||
|
|
||||||
|
test("the new tools are routed in SERVER_INSTRUCTIONS", () => {
|
||||||
|
for (const name of ["drawio_shapes", "drawio_guide"]) {
|
||||||
|
assert.match(SERVER_INSTRUCTIONS, new RegExp(`\\b${name}\\b`), `${name} missing from guide`);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
test("the hard-rules block is injected into create/update descriptions", () => {
|
||||||
|
for (const key of ["drawioCreate", "drawioUpdate"]) {
|
||||||
|
const d = SHARED_TOOL_SPECS[key].description;
|
||||||
|
assert.match(d, /sentinels are MANDATORY/);
|
||||||
|
assert.match(d, /vertex="1" XOR edge="1"/);
|
||||||
|
assert.match(d, /call drawio_shapes first/);
|
||||||
|
assert.match(d, /adaptiveColors="auto"/);
|
||||||
|
assert.match(d, /
/);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
test("create/update expose the layout:\"elk\" parameter", () => {
|
||||||
|
const { z } = { z: makeZodStub() };
|
||||||
|
for (const key of ["drawioCreate", "drawioUpdate"]) {
|
||||||
|
const shape = SHARED_TOOL_SPECS[key].buildShape(z);
|
||||||
|
assert.ok("layout" in shape, `${key} missing layout param`);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
// Tiny zod stub: buildShape only calls z.string/enum/number + chained
|
||||||
|
// .min/.optional/.describe, all of which return `this`.
|
||||||
|
function makeZodStub() {
|
||||||
|
const chain = new Proxy(
|
||||||
|
{},
|
||||||
|
{
|
||||||
|
get: (_t, prop) => {
|
||||||
|
if (prop === "parse") return () => ({});
|
||||||
|
return () => chain;
|
||||||
|
},
|
||||||
|
},
|
||||||
|
);
|
||||||
|
return {
|
||||||
|
string: () => chain,
|
||||||
|
number: () => chain,
|
||||||
|
enum: () => chain,
|
||||||
|
array: () => chain,
|
||||||
|
object: () => chain,
|
||||||
|
};
|
||||||
|
}
|
||||||
Generated
+8
@@ -1044,6 +1044,9 @@ importers:
|
|||||||
axios:
|
axios:
|
||||||
specifier: 1.16.0
|
specifier: 1.16.0
|
||||||
version: 1.16.0
|
version: 1.16.0
|
||||||
|
elkjs:
|
||||||
|
specifier: ^0.11.1
|
||||||
|
version: 0.11.1
|
||||||
form-data:
|
form-data:
|
||||||
specifier: ^4.0.0
|
specifier: ^4.0.0
|
||||||
version: 4.0.5
|
version: 4.0.5
|
||||||
@@ -6876,6 +6879,9 @@ packages:
|
|||||||
electron-to-chromium@1.5.286:
|
electron-to-chromium@1.5.286:
|
||||||
resolution: {integrity: sha512-9tfDXhJ4RKFNerfjdCcZfufu49vg620741MNs26a9+bhLThdB+plgMeou98CAaHu/WATj2iHOOHTp1hWtABj2A==}
|
resolution: {integrity: sha512-9tfDXhJ4RKFNerfjdCcZfufu49vg620741MNs26a9+bhLThdB+plgMeou98CAaHu/WATj2iHOOHTp1hWtABj2A==}
|
||||||
|
|
||||||
|
elkjs@0.11.1:
|
||||||
|
resolution: {integrity: sha512-zxxR9k+rx5ktMwT/FwyLdPCrq7xN6e4VGGHH8hA01vVYKjTFik7nHOxBnAYtrgYUB1RpAiLvA1/U2YraWxyKKg==}
|
||||||
|
|
||||||
emittery@0.13.1:
|
emittery@0.13.1:
|
||||||
resolution: {integrity: sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==}
|
resolution: {integrity: sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==}
|
||||||
engines: {node: '>=12'}
|
engines: {node: '>=12'}
|
||||||
@@ -17642,6 +17648,8 @@ snapshots:
|
|||||||
|
|
||||||
electron-to-chromium@1.5.286: {}
|
electron-to-chromium@1.5.286: {}
|
||||||
|
|
||||||
|
elkjs@0.11.1: {}
|
||||||
|
|
||||||
emittery@0.13.1: {}
|
emittery@0.13.1: {}
|
||||||
|
|
||||||
emoji-regex@8.0.0: {}
|
emoji-regex@8.0.0: {}
|
||||||
|
|||||||
Reference in New Issue
Block a user