From lucidchart-pack
Prod Checklist for Lucidchart. Trigger: "lucidchart prod checklist".
How this skill is triggered — by the user, by Claude, or both
Slash command
/lucidchart-pack:lucidchart-prod-checklistThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
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 e...
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.
lucidchart.document.read, lucidchart.document.export)https://api.lucid.co/v1 (production endpoint)Lucid-Api-Version header set explicitly on every request (pin to tested version)X-RateLimit-* headers)pageToken)Accept header matching desired format (image/png, application/pdf)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',
};
// 1. Connectivity and auth check
const me = await fetch(`${base}/users/me`, { headers, signal: AbortSignal.timeout(5000) });
console.assert(me.ok, `Auth failed: ${me.status}`);
// 2. Token expiry headroom
const tokenData = await me.json();
console.assert(tokenData.id, 'User profile missing — token may be scoped incorrectly');
// 3. Rate limit headroom
const remaining = parseInt(me.headers.get('X-RateLimit-Remaining') ?? '0');
console.assert(remaining > 10, `Rate limit headroom low: ${remaining} remaining`);
// 4. Document listing works
const docs = await fetch(`${base}/documents?limit=1`, { headers });
console.assert(docs.ok, `Document listing failed: ${docs.status}`);
// 5. API version accepted
const apiVersion = me.headers.get('Lucid-Api-Version');
console.assert(apiVersion, 'API version header missing from response — check version pinning');
console.log('All Lucidchart production checks passed');
}
| 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 |
See lucidchart-security-basics.
npx claudepluginhub luxdevnet/claude-plus-lux --plugin lucidchart-packGuides completion of development work by verifying tests, detecting environment, and presenting structured options for merge, PR, or cleanup.
Guides creation and editing of skills using test-driven development with pressure scenarios and subagents to verify agent compliance.
Dispatches multiple subagents concurrently for independent tasks without shared state. Use when facing 2+ unrelated failures or subsystems that can be investigated in parallel.
3plugins reuse this skill
First indexed Jul 10, 2026