From lucidchart-pack
Provides reusable patterns for the Lucidchart SDK including a singleton client and automatic retry on rate limits.
How this skill is triggered — by the user, by Claude, or both
Slash command
/lucidchart-pack:lucidchart-sdk-patternsThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
```typescript
let instance: any = null;
export function getClient() {
if (!instance) instance = createLucidchartClient({ apiKey: process.env.LUCID_API_KEY });
return instance;
}
async function safe<T>(fn: () => Promise<T>): Promise<T | null> {
try { return await fn(); }
catch (e: any) {
if (e.status === 429) { await new Promise(r => setTimeout(r, 5000)); return fn(); }
console.error('Lucidchart error:', e.message);
return null;
}
}
Apply in lucidchart-core-workflow-a.
npx claudepluginhub kriptoburak/jeremylongshore-claude-code-plugins-plus-skills --plugin lucidchart-pack2plugins reuse this skill
First indexed Jul 17, 2026
SDK patterns for Lucidchart REST API: singleton client, OAuth token management, error handling, and shape query building. Useful when building integrations with Lucidchart diagramming.
Guides 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.