| name | lucidchart-prod-checklist |
| description | Prod Checklist for Lucidchart.
Trigger: "lucidchart prod checklist".
|
| allowed-tools | Read, Write, Edit |
| version | 1.7.0 |
| license | MIT |
| author | Jeremy Longshore <jeremy@intentsolutions.io> |
| tags | ["saas","lucidchart","diagramming"] |
| compatibility | Designed for Claude Code |
Lucidchart Production Checklist
Overview
Lucidchart integrations interact with collaborative diagrams that may be actively edited by multiple users simultaneously. A production deployment must handle OAuth2 token lifecycle management, respect document-level collaboration locks, and account for export throttling on large diagrams. Failing to version API headers correctly causes silent schema drift, while unbounded export requests can exhaust memory on complex documents. This checklist ensures your Lucidchart integration is resilient to these collaboration and export edge cases.
Prerequisites
- OAuth2 client credentials registered in Lucid developer portal (production app)
- Secrets manager configured (Vault, AWS Secrets Manager, or GCP Secret Manager)
- Monitoring stack operational (Datadog, Grafana, or CloudWatch)
- Test workspace with sample diagrams covering all export formats (PNG, PDF, SVG)
Authentication & Secrets
API Integration
Error Handling & Resilience
Monitoring & Alerting
Security
Validation Script
async function validateLucidchartProduction(accessToken: string): Promise<void> {
const base = 'https://api.lucid.co/v1';
const headers = {
Authorization: `Bearer ${accessToken}`,
'Lucid-Api-Version': '2024-10-01',
'Content-Type': 'application/json',
};
const me = await fetch(`${base}/users/me`, { headers, signal: AbortSignal.timeout(5000) });
console.assert(me.ok, `Auth failed: ${me.status}`);
const tokenData = await me.json();
console.assert(tokenData.id, 'User profile missing — token may be scoped incorrectly');
const remaining = parseInt(me.headers.get('X-RateLimit-Remaining') ?? '0');
console.(remaining > , );
docs = (, { headers });
.(docs., );
apiVersion = me..();
.(apiVersion, );
.();
}
Risk Matrix
| Check | Risk if Skipped | Priority |
|---|
| OAuth2 token refresh mutex | Duplicate refresh calls invalidate tokens, cascading 401s | Critical |
| API version header pinning | Silent schema drift breaks document parsing | Critical |
| Collaboration lock detection | Overwrites concurrent user edits, data corruption | Critical |
| Export async polling | Timeout on large diagrams, missing deliverables | High |
| Export memory cap | OOM crash on complex diagrams (500+ objects) | High |
Resources
Next Steps
See lucidchart-security-basics.