Optimize Lucidchart API integration performance with caching, batch shape operations, and pagination strategies.
Use when diagram exports are slow, shape updates hit rate limits, or document list queries time out.
Trigger with "lucidchart performance tuning".
Standardmäßig ist der Prompt ausgewählt, der zuerst die Quelle prüft. Sie können zu einem direkten Befehl wechseln oder eine lokale Kopie herunterladen.
Quelldateien prüfen
Lesen Sie SKILL.md und alle von SkillsMP angezeigten Begleitdateien, bevor Sie sich für eine Installation entscheiden.
Mit Codex oder Claude installieren Kopieren Sie diesen Prompt, fügen Sie ihn in Codex, Claude oder einen anderen Assistant ein und lassen Sie die Skill-Seite prüfen und installieren.
Ein direkter Befehl überspringt den Prüf-Prompt. Prüfen Sie die Quelle, bevor Sie ihn ausführen.
Optimize Lucidchart API integration performance with caching, batch shape operations, and pagination strategies.
Use when diagram exports are slow, shape updates hit rate limits, or document list queries time out.
Trigger with "lucidchart performance tuning".
allowed-tools
Read, Write, Edit, Grep
version
1.7.0
license
MIT
author
Jeremy Longshore <jeremy@intentsolutions.io>
tags
["saas","lucidchart","diagramming"]
compatibility
Designed for Claude Code
Lucidchart Performance Tuning
Overview
Lucidchart documents can contain thousands of shapes and connectors — a single enterprise diagram may hold 500+ elements across multiple pages, making bulk reads and exports the primary API bottleneck. This skill covers caching document metadata, batching shape operations, and managing Lucid's rate limits to keep integrations responsive.
Instructions
Implement Redis caching (or in-memory Map for development) with document-appropriate TTLs
Use cursor-based pagination for all document list operations to avoid incomplete results
Wrap API calls with the rate limit handler, especially for bulk shape updates and exports
Configure connection pooling with extended timeouts for export endpoints
Prerequisites
Lucid OAuth2 client credentials with lucidchart.document scope
Redis instance for document/shape metadata caching
Node.js 18+ with native fetch
Understanding of Lucid document structure (documents, pages, shapes, lines)