Agent skill
lucidchart-core-workflow-b
Execute Lucidchart secondary workflow: Data-Linked Diagrams. Trigger: "lucidchart data-linked diagrams", "secondary lucidchart workflow".
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
// 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.
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
dockerfile-generator
Dockerfile Generator - Auto-activating skill for DevOps Basics. Triggers on: dockerfile generator, dockerfile generator Part of the DevOps Basics skill category.
branch-naming-helper
Branch Naming Helper - Auto-activating skill for DevOps Basics. Triggers on: branch naming helper, branch naming helper Part of the DevOps Basics skill category.
readme-generator
Readme Generator - Auto-activating skill for DevOps Basics. Triggers on: readme generator, readme generator Part of the DevOps Basics skill category.
makefile-generator
Makefile Generator - Auto-activating skill for DevOps Basics. Triggers on: makefile generator, makefile generator Part of the DevOps Basics skill category.
gitignore-generator
Gitignore Generator - Auto-activating skill for DevOps Basics. Triggers on: gitignore generator, gitignore generator Part of the DevOps Basics skill category.
pre-commit-hook-setup
Pre Commit Hook Setup - Auto-activating skill for DevOps Basics. Triggers on: pre commit hook setup, pre commit hook setup Part of the DevOps Basics skill category.
Didn't find tool you were looking for?