Back to Skills

lindy-prod-checklist

verified
View on GitHub

Marketplace

claude-code-plugins-plus

jeremylongshore/claude-code-plugins-plus-skills

Plugin

lindy-pack

ai-ml

Repository

jeremylongshore/claude-code-plugins-plus-skills
1.1kstars

plugins/saas-packs/lindy-pack/skills/lindy-prod-checklist/SKILL.md

Last Verified

January 22, 2026

Install Skill

Select agents to install to:

Scope:
npx add-skill https://github.com/jeremylongshore/claude-code-plugins-plus-skills/blob/main/plugins/saas-packs/lindy-pack/skills/lindy-prod-checklist/SKILL.md -a claude-code --skill lindy-prod-checklist

Installation paths:

Claude
.claude/skills/lindy-prod-checklist/
Powered by add-skill CLI

Instructions

# Lindy Prod Checklist

## Overview
Comprehensive production readiness checklist for Lindy AI deployments.

## Prerequisites
- Completed development and testing
- Production Lindy account
- Deployment infrastructure ready

## Production Checklist

### Authentication & Security
```markdown
[ ] 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)
```

### Agent Configuration
```markdown
[ ] 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
```

### Monitoring & Observability
```markdown
[ ] 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
```

### Performance & Reliability
```markdown
[ ] Load testing completed
[ ] Rate limit handling implemented
[ ] Retry logic with exponential backoff
[ ] Circuit breaker pattern for failures
[ ] Graceful degradation defined
[ ] SLA targets documented
```

### Compliance & Documentation
```markdown
[ ] Data handling documented
[ ] Privacy review completed
[ ] Security review completed
[ ] Runbooks created for incidents
[ ] Escalation paths defined
[ ] On-call schedule set up
```

## Implementation

### Health Check Endpoint
```typescript
// 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 

Validation Details

Front Matter
Required Fields
Valid Name Format
Valid Description
Has Sections
Allowed Tools
Instruction Length:
3722 chars