Agent Skills: Lucidchart — Data-Linked Diagrams

|

UncategorizedID: jeremylongshore/claude-code-plugins-plus-skills/lucidchart-core-workflow-b

Install this agent skill to your local

pnpm dlx add-skill https://github.com/jeremylongshore/claude-code-plugins-plus-skills/tree/HEAD/plugins/saas-packs/lucidchart-pack/skills/lucidchart-core-workflow-b

Skill Files

Browse the full folder contents for lucidchart-core-workflow-b.

Download Skill

Loading file tree…

plugins/saas-packs/lucidchart-pack/skills/lucidchart-core-workflow-b/SKILL.md

Skill Metadata

Name
lucidchart-core-workflow-b
Description
|

Lucidchart — Data-Linked Diagrams

Overview

Secondary workflow complementing the primary workflow.

Instructions

Step 1: Import CSV Data

// 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' } }
  }
});

Step 2: Share and Collaborate

await client.documents.share(doc.documentId, {
  email: 'team@example.com',
  role: 'editor',  // viewer, commenter, editor
  message: 'Please review this architecture diagram'
});

Resources

Next Steps

See lucidchart-common-errors.