From lucidchart-pack
Imports JSON/CSV data into Lucidchart diagrams to link shapes dynamically by text/color, shares docs for team review. For live-updating architecture diagrams.
npx claudepluginhub jeremylongshore/claude-code-plugins-plus-skills --plugin lucidchart-packThis skill is limited to using the following tools:
Secondary workflow complementing the primary workflow.
Creates Lucidchart documents, imports shapes and lines in .lucid format, and exports diagrams as PNG using API client.
Creates, edits, replicates, and converts Draw.io diagrams from text, Mermaid, CSV, YAML using YAML design system with 6 themes. Supports architecture, flowcharts, UML, ER diagrams, academic figures, math/LaTeX.
Generates and edits draw.io diagrams (flowcharts, architecture, sequence, ER, UML, network) with mxGraph XML for VS Code hediet.vscode-drawio extension.
Share bugs, ideas, or general feedback.
Secondary workflow complementing the primary workflow.
// Create data-linked diagram from CSV
const data = [
{ name: 'Service A', status: 'healthy', latency: '45ms' },
{ name: 'Service B', status: 'degraded', latency: '200ms' },
{ name: 'Service C', status: 'healthy', latency: '30ms' }
];
await client.dataSources.import(doc.documentId, {
format: 'json',
data: data,
mapping: {
shapeText: 'name',
shapeColor: { field: 'status', values: { healthy: '#4CAF50', degraded: '#FF9800' } }
}
});
await client.documents.share(doc.documentId, {
email: 'team@example.com',
role: 'editor', // viewer, commenter, editor
message: 'Please review this architecture diagram'
});
See lucidchart-common-errors.