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.
How this skill is triggered — by the user, by Claude, or both
Slash command
/lucidchart-pack:lucidchart-core-workflow-bThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Secondary workflow complementing the primary workflow.
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: '[email protected]',
role: 'editor', // viewer, commenter, editor
message: 'Please review this architecture diagram'
});
See lucidchart-common-errors.
npx claudepluginhub jeremylongshore/claude-code-plugins-plus-skills --plugin lucidchart-packCreates Lucidchart documents, imports shapes and lines in .lucid format, and exports diagrams as PNG using API client.
Enables data-driven conditional formatting, live data binding, and dynamic diagram updates in draw.io via custom XML object properties, %placeholders%, and file-level variables. For status dashboards with metrics like status, latency, and uptime.
Creates and exports editable draw.io / diagrams.net technical diagrams — architecture, ERD, UML, sequence, flowcharts, ML models, brand symbols, Graphviz auto-layout, codebase structure maps — with .drawio validation and CLI export fallback.