* feat: enhance Excalidraw MCP with advanced canvas toolkit features - Rename skill to `excalidraw-skill` with expanded playbook and cheatsheet. - Add new MCP tools for iterative refinement: `describe_scene` and `get_canvas_screenshot`. - Implement layout tools (`align_elements`, `distribute_elements`) and `duplicate_elements`. - Add file I/O support for `.excalidraw` JSON and image export (PNG/SVG). - Introduce named snapshots for canvas state management. - Add server-side element CRUD and WebSocket handlers for real-time sync. - Normalize `points` format for arrows and lines. * docs: update README with v2.0 features and official MCP comparison * feat: implement arrow binding and edge-to-edge routing * fix: enhance security with path sanitization and improve export error handling * feat: add viewport control, design guide, and excalidraw.com URL export * feat: enhance excalidraw.com export with proper scene formatting and labels
54 lines
1.4 KiB
JavaScript
54 lines
1.4 KiB
JavaScript
#!/usr/bin/env node
|
|
/* eslint-disable no-console */
|
|
|
|
const fs = require("node:fs");
|
|
const path = require("node:path");
|
|
|
|
const DEFAULT_URL = process.env.EXPRESS_SERVER_URL || "http://localhost:3000";
|
|
|
|
function parseArgs(argv) {
|
|
const out = { url: DEFAULT_URL, outFile: null };
|
|
for (let i = 0; i < argv.length; i++) {
|
|
const a = argv[i];
|
|
if (a === "--url") out.url = argv[++i];
|
|
else if (a === "--out") out.outFile = argv[++i];
|
|
else if (a === "-o") out.outFile = argv[++i];
|
|
}
|
|
return out;
|
|
}
|
|
|
|
async function main() {
|
|
if (typeof fetch !== "function") {
|
|
throw new Error("This script requires Node 18+ (global fetch).");
|
|
}
|
|
|
|
const { url, outFile } = parseArgs(process.argv.slice(2));
|
|
const res = await fetch(`${url.replace(/\/$/, "")}/api/elements`);
|
|
const json = await res.json();
|
|
|
|
if (!res.ok || !json || json.success !== true) {
|
|
throw new Error(`Failed to export elements: ${res.status} ${res.statusText}`);
|
|
}
|
|
|
|
const payload = {
|
|
exportedAt: new Date().toISOString(),
|
|
expressServerUrl: url,
|
|
elements: json.elements || [],
|
|
};
|
|
|
|
const text = JSON.stringify(payload, null, 2);
|
|
if (!outFile) {
|
|
process.stdout.write(text + "\n");
|
|
return;
|
|
}
|
|
|
|
fs.mkdirSync(path.dirname(outFile), { recursive: true });
|
|
fs.writeFileSync(outFile, text + "\n");
|
|
console.log(`Wrote ${payload.elements.length} elements to ${outFile}`);
|
|
}
|
|
|
|
main().catch((err) => {
|
|
console.error(err?.stack || String(err));
|
|
process.exit(1);
|
|
});
|