Production readiness checklist for Lindy AI deployments. Use when preparing for production, reviewing deployment, or auditing production setup. Trigger with phrases like "lindy production", "lindy prod ready", "lindy go live", "lindy deployment checklist".
/plugin marketplace add jeremylongshore/claude-code-plugins-plus-skills/plugin install lindy-pack@claude-code-plugins-plusThis skill is limited to using the following tools:
Comprehensive production readiness checklist for Lindy AI deployments.
[ ] Production API key generated
[ ] API key stored in secret manager (not env file)
[ ] Key rotation process documented
[ ] Different keys for each environment
[ ] Keys have appropriate scopes/permissions
[ ] Service accounts configured (not personal keys)
[ ] All agents tested with production-like data
[ ] Agent instructions reviewed and finalized
[ ] Tool permissions minimized (least privilege)
[ ] Timeout values appropriate for workloads
[ ] Error handling tested for all failure modes
[ ] Fallback behaviors defined
[ ] Logging configured and tested
[ ] Error alerting set up (PagerDuty/Slack/etc)
[ ] Usage metrics dashboards created
[ ] Rate limit alerts configured
[ ] Latency monitoring enabled
[ ] Cost tracking implemented
[ ] Load testing completed
[ ] Rate limit handling implemented
[ ] Retry logic with exponential backoff
[ ] Circuit breaker pattern for failures
[ ] Graceful degradation defined
[ ] SLA targets documented
[ ] Data handling documented
[ ] Privacy review completed
[ ] Security review completed
[ ] Runbooks created for incidents
[ ] Escalation paths defined
[ ] On-call schedule set up
// health/lindy.ts
import { Lindy } from '@lindy-ai/sdk';
export async function checkLindyHealth(): Promise<HealthStatus> {
const lindy = new Lindy({ apiKey: process.env.LINDY_API_KEY });
const start = Date.now();
try {
await lindy.users.me();
const latency = Date.now() - start;
return {
status: latency < 1000 ? 'healthy' : 'degraded',
latency,
timestamp: new Date().toISOString(),
};
} catch (error: any) {
return {
status: 'unhealthy',
error: error.message,
timestamp: new Date().toISOString(),
};
}
}
async function preDeploymentCheck(): Promise<boolean> {
const checks = {
apiKey: !!process.env.LINDY_API_KEY,
environment: process.env.LINDY_ENVIRONMENT === 'production',
connectivity: false,
agents: false,
};
const lindy = new Lindy({ apiKey: process.env.LINDY_API_KEY });
try {
await lindy.users.me();
checks.connectivity = true;
const agents = await lindy.agents.list();
checks.agents = agents.length > 0;
} catch (e) {
// Failed checks
}
const passed = Object.values(checks).every(Boolean);
console.log('Pre-deployment checks:', checks);
console.log(`Status: ${passed ? 'PASSED' : 'FAILED'}`);
return passed;
}
| Check | Failure Action | Severity |
|---|---|---|
| API Key | Block deploy | Critical |
| Connectivity | Retry/alert | High |
| Agents exist | Warning | Medium |
| Monitoring | Document gap | Medium |
#!/bin/bash
# deploy-gate.sh
echo "Running Lindy pre-deployment checks..."
npx ts-node scripts/pre-deployment-check.ts
if [ $? -ne 0 ]; then
echo "Pre-deployment checks FAILED"
exit 1
fi
echo "All checks passed. Proceeding with deployment."
Proceed to lindy-upgrade-migration for version upgrades.
Creating algorithmic art using p5.js with seeded randomness and interactive parameter exploration. Use this when users request creating art using code, generative art, algorithmic art, flow fields, or particle systems. Create original algorithmic art rather than copying existing artists' work to avoid copyright violations.
Applies Anthropic's official brand colors and typography to any sort of artifact that may benefit from having Anthropic's look-and-feel. Use it when brand colors or style guidelines, visual formatting, or company design standards apply.
Create beautiful visual art in .png and .pdf documents using design philosophy. You should use this skill when the user asks to create a poster, piece of art, design, or other static piece. Create original visual designs, never copying existing artists' work to avoid copyright violations.