lucidchart-core-workflow-a

Featured

Execute Lucidchart primary workflow: Document & Shape Creation. Trigger: "lucidchart document & shape creation", "primary lucidchart workflow".

AI & Automation 2,266 stars 315 forks Updated today MIT

Install

View on GitHub

Quality Score: 99/100

Stars 20%
100
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Lucidchart — Document & Diagram Management ## Overview Primary workflow for Lucidchart document and diagram management. Covers the complete lifecycle: creating documents, adding shapes and connectors via Standard Import, editing diagram content programmatically, and exporting to PNG, PDF, or SVG. Uses the Lucid REST API v1 with OAuth 2.0 authorization. The Standard Import format (.lucid) supports pages, shapes, lines, groups, and styling in a single declarative payload. ## Instructions ### Step 1: Create a Document ```typescript const doc = await client.documents.create({ title: 'API Architecture Diagram', product: 'lucidchart', // or 'lucidspark' }); console.log(`Document: ${doc.documentId}`); console.log(`Edit URL: ${doc.editUrl}`); ``` ### Step 2: Add Shapes and Connectors via Standard Import ```typescript const importData = { pages: [{ id: 'page1', title: 'Main', shapes: [ { id: 's1', type: 'rectangle', boundingBox: { x: 100, y: 100, w: 200, h: 80 }, text: 'API Gateway', style: { fill: '#4A90D9' } }, { id: 's2', type: 'rectangle', boundingBox: { x: 100, y: 300, w: 200, h: 80 }, text: 'Database', style: { fill: '#7B68EE' } }, { id: 's3', type: 'rectangle', boundingBox: { x: 400, y: 200, w: 200, h: 80 }, text: 'Auth Service', style: { fill: '#50C878' } }, ], lines: [ { id: 'l1', endpoint1: { shapeId: 's1' }, endpoint2: { shapeId: 's2' }, stroke: { color: '#333', width: 2 } }, {...

Details

Author
jeremylongshore
Repository
jeremylongshore/claude-code-plugins-plus-skills
Created
7 months ago
Last Updated
today
Language
Python
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category