Agent skill

lucidchart-core-workflow-b

Execute Lucidchart secondary workflow: Data-Linked Diagrams. Trigger: "lucidchart data-linked diagrams", "secondary lucidchart workflow".

Stars 1,803
Forks 241

Install this agent skill to your Project

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

SKILL.md

Lucidchart — Data-Linked Diagrams

Overview

Secondary workflow complementing the primary workflow.

Instructions

Step 1: Import CSV Data

typescript
// 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

typescript
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.

Expand your agent's capabilities with these related and highly-rated skills.

Didn't find tool you were looking for?

Be as detailed as possible for better results