agentsclimarketplace

Lucidchart install auth

Skill jeremylongshore/claude-code-plugins-plus-skills/plugins/saas-packs/lucidchart-pack/skills/lucidchart-install-auth

'Install and configure Lucidchart SDK/API authentication.From its SKILL.md

Install
npx -y skills add jeremylongshore/claude-code-plugins-plus-skills --skill lucidchart-install-auth

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

What its file declares

Copied from the file, not written here

The file declares its own license as MIT. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.

SKILL.md

1.9 KB, 374 tokens by cl100k_base, as published. Nobody here has run it

Lucidchart Install & Auth

Overview

Set up Lucid REST API for programmatic diagram creation and document management.

Prerequisites

  • Lucidchart account and API access
  • API key/credentials from Lucidchart dashboard
  • Node.js 18+ or Python 3.8+

Instructions

Step 1: Install SDK

npm install @lucid-co/sdk
# OAuth2 app credentials from developer.lucid.co

Step 2: Configure Authentication

export LUCID_API_KEY="your-api-key-here"
echo 'LUCID_API_KEY=your-api-key' >> .env

Step 3: Verify Connection (TypeScript)

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`);

Step 4: Verify Connection (Python)

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 Handling

ErrorCodeSolution
Invalid API key401Verify credentials in dashboard
Permission denied403Check API scopes/permissions
Rate limited429Implement backoff

Resources

Next Steps

After auth, proceed to lucidchart-hello-world.

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Keep looking

Skills are one crate of 326,144. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.