From lucidchart-pack
Installs and configures Lucidchart SDK authentication for Node.js/TypeScript or Python, with verification scripts and error handling for API integrations.
How this skill is triggered — by the user, by Claude, or both
Slash command
/lucidchart-pack:lucidchart-install-authThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Set up Lucid REST API for programmatic diagram creation and document management.
Set up Lucid REST API for programmatic diagram creation and document management.
npm install @lucid-co/sdk
# OAuth2 app credentials from developer.lucid.co
export LUCID_API_KEY="your-api-key-here"
echo 'LUCID_API_KEY=your-api-key' >> .env
import { LucidClient } from '@lucid-co/sdk';
const client = new LucidClient({
clientId: process.env.LUCID_CLIENT_ID,
clientSecret: process.env.LUCID_CLIENT_SECRET
});
const docs = await client.documents.list();
console.log(`Found ${docs.length} documents`);
import lucid
client = lucid.Client(client_id=os.environ['LUCID_CLIENT_ID'],
client_secret=os.environ['LUCID_CLIENT_SECRET'])
docs = client.documents.list()
print(f'Found {len(docs)} documents')
| Error | Code | Solution |
|---|---|---|
| Invalid API key | 401 | Verify credentials in dashboard |
| Permission denied | 403 | Check API scopes/permissions |
| Rate limited | 429 | Implement backoff |
After auth, proceed to lucidchart-hello-world.
npx claudepluginhub jeremylongshore/claude-code-plugins-plus-skills --plugin lucidchart-packCreates minimal Lucidchart diagram via API: new document, import shapes/lines in .lucid format, export PNG. For testing Lucidchart integrations in TypeScript/Node apps.
Generates and edits diagrams in draw.io using built-in AI with Gemini, Claude, or OpenAI from natural language prompts. Covers API configuration, custom LLM endpoints, and mxGraph XML best practices.