Skip to content
Skillv1.0.0

lucidchart-install-auth

Install and configure Lucidchart SDK/API authentication. Use when setting up a new Lucidchart integration. Trigger: "install lucidchart", "setup lucidchart", "lucidchart auth".

by jeremylongshore(0) 0 installs
Free
Sign in to install

Free account. Installing gives you the manifest plus copy-paste snippets.

See reviews

About

Imported from jeremylongshore/tons-of-skills-marketplace (plugins/saas-packs/lucidchart-pack/skills/lucidchart-install-auth/SKILL.md). Install upstream with npx skills add jeremylongshore/tons-of-skills-marketplace --skill lucidchart-install-auth. Copyright stays with the author (MIT).

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

Error Code Solution
Invalid API key 401 Verify credentials in dashboard
Permission denied 403 Check API scopes/permissions
Rate limited 429 Implement backoff

Resources

Next Steps

After auth, proceed to lucidchart-hello-world.

Use it

Copy one of these into your project. Installing also returns the manifest and these snippets.

yaml
targets:
  - https://api.opensmartroute.ai/api/v1/registry/jeremylongshore-tons-of-skills-marketplace-lucidchart-in-eb7bae/manifest   # or paste the manifest below

Manifest

An Open Capability Manifest: the router reads it to know what this does, what it costs and when to pick it.

jeremylongshore-tons-of-skills-marketplace-lucidchart-in-eb7bae.ocm.jsonjson
{
  "ocm": "1",
  "id": "jeremylongshore-tons-of-skills-marketplace-lucidchart-in-eb7bae",
  "kind": "skill",
  "name": "lucidchart-install-auth",
  "description": "Install and configure Lucidchart SDK/API authentication. Use when setting up a new Lucidchart integration. Trigger: \"install lucidchart\", \"setup lucidchart\", \"lucidchart auth\".",
  "publisher": "jeremylongshore",
  "version": "1.0.0",
  "capabilities": {
    "domains": [
      "coding"
    ],
    "tags": [
      "skill-md",
      "saas",
      "lucidchart",
      "diagramming",
      "skills-sh"
    ],
    "languages": [
      "en"
    ]
  },
  "quality_prior": 0.6,
  "examples": [
    "Install and configure Lucidchart SDK/API authentication. Use when setting up a new Lucidchart integration. Trigger: \"install lucidchart\", \"setup lucidchart\", \"lucidchart auth\"."
  ],
  "primary": false,
  "metadata": {
    "source": {
      "provider": "skills.sh",
      "repository": "https://github.com/jeremylongshore/tons-of-skills-marketplace",
      "path": "plugins/saas-packs/lucidchart-pack/skills/lucidchart-install-auth/SKILL.md",
      "ref": "HEAD",
      "url": "https://github.com/jeremylongshore/tons-of-skills-marketplace/blob/HEAD/plugins/saas-packs/lucidchart-pack/skills/lucidchart-install-auth/SKILL.md",
      "key": "jeremylongshore/tons-of-skills-marketplace/plugins/saas-packs/lucidchart-pack/skills/lucidchart-install-auth/SKILL.md"
    },
    "compatibility": "Designed for Claude Code",
    "allowed_tools": [
      "Read,",
      "Write,",
      "Edit,",
      "Bash(npm:*),",
      "Bash(pip:*),",
      "Grep"
    ],
    "license": "MIT"
  },
  "instructions": "# Lucidchart Install & Auth\n\n## Overview\n\nSet up Lucid REST API for programmatic diagram creation and document management.\n\n## Prerequisites\n\n- Lucidchart account and API access\n- API key/credentials from Lucidchart dashboard\n- Node.js 18+ or Python 3.8+\n\n## Instructions\n\n### Step 1: Install SDK\n\n```bash\nnpm install @lucid-co/sdk\n# OAuth2 app credentials from developer.lucid.co\n```\n\n### Step 2: Configure Authentication\n\n```bash\nexport LUCID_API_KEY=\"your-api-key-here\"\necho 'LUCID_API_KEY=your-api-key' >> .env\n```\n\n### Step 3: Verify Connection (TypeScript)\n\n```typescript\nimport { LucidClient }",
  "cost": {
    "context_tokens": 377
  }
}

Fetch it by URL: GET /api/v1/registry/jeremylongshore-tons-of-skills-marketplace-lucidchart-in-eb7bae/manifest?version=1.0.0

Reviews

Star ratings from people who tried it. One review per account; edit yours any time.

No reviews yet. Install it, try it, and be the first to rate it.