From backend-factory
Export the current factory architecture as JSON, HTML snapshot, or Mermaid diagram
How this skill is triggered — by the user, by Claude, or both
Slash command
/backend-factory:exportThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Export the current architecture data or a standalone visualization snapshot.
Export the current architecture data or a standalone visualization snapshot.
If $ARGUMENTS is empty or "json":
curl -s http://localhost:7777/api/architecture | jq '.' > ./factory-architecture.json
Tell the user: "Architecture exported to ./factory-architecture.json"
If $ARGUMENTS contains "html":
${CLAUDE_PLUGIN_ROOT}/visualization/ (index.html, factory.js, characters.js, styles.css)./factory-snapshot.htmlTell the user: "Standalone factory snapshot exported to ./factory-snapshot.html — open it in any browser."
If $ARGUMENTS contains "mermaid":
curl -s http://localhost:7777/api/export/mermaid > ./factory-architecture.mmd
Tell the user: "Mermaid diagram exported to ./factory-architecture.mmd — paste into any Mermaid renderer or GitHub markdown."
Note: You can also use the "EXPORT MERMAID" button in the visualization UI to copy the diagram to clipboard.
npx claudepluginhub randyquaye/backend-come-alive --plugin backend-factoryGenerates .excalidraw architecture diagrams from codebase analysis, identifying components, services, databases, and data flows, with optional PNG/SVG export via Playwright.
Generates .drawio architecture diagrams with consistent styles for containers, capabilities, external services, processes, and outcomes. Includes legend and exports to PNG/SVG/PDF/HTML.
Generates a self-contained HTML file with a high-quality SVG system architecture diagram, optionally interactive with animated request paths. Use when visualizing architecture or stack relationships, not prose.