Agent skill

lucidchart-hello-world

Create a minimal working Lucidchart example. '

intentsolutions.io2,596★ · 1 repos on radarProfile →
claude-codecan modify filesMIT
Install
npx skills add jeremylongshore/claude-code-plugins-plus-skills --skill lucidchart-hello-world --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 2 KB
Bundled scripts: none
Version: 1.7.0
Declared author: Jeremy Longshore <jeremy@intentsolutions.io>
Allowed tools: ReadWriteEditBash(npm:*)Grep
Requires: Designed for Claude Code
Path: plugins/saas-packs/lucidchart-pack/skills/lucidchart-hello-world/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 2,630
Language: Python
Read our review of the source →

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Lucidchart Hello World ## Overview Minimal working examples demonstrating core Lucidchart API functionality. ## 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 via Standard Import ```typescript // Lucid Standard Import uses .lucid file format 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' } } ], lines: [ { id: 'l1', endpoint1: { shapeId: 's1' }, endpoint2: { shapeId: 's2' }, stroke: { color: '#333', width: 2 } } ] }] }; await client.documents.import(doc.documentId, importData); ``` ### Step 3: Export Document ```typescript const png = await client.documents.export(doc.documentId, { format: 'png', pageIndex: 0, scale: 2 }); fs.writeFileSync('diagram.png', png); ``` ## Err

What's inside
Steps it walks through
  1. Overview
  2. Instructions
  3. Step 1: Create a Document
  4. Step 2: Add Shapes via Standard Import
  5. Step 3: Export Document
  6. Error Handling
  7. Resources
  8. Next Steps
More from claude-code-plugins-plus-skills
All skills →
About this skill
What does the lucidchart-hello-world skill do?

Create a minimal working Lucidchart example. '

How do I install it?

Run `npx skills add jeremylongshore/claude-code-plugins-plus-skills --skill lucidchart-hello-world --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From jeremylongshore/claude-code-plugins-plus-skills, a repository with 2,630 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going