From lucidchart-pack
Provides Lucidchart production checklist with pre-launch steps, rate limiting, error handling, TypeScript health check example, monitoring, alerting, and rollback procedures.
npx claudepluginhub jeremylongshore/claude-code-plugins-plus-skills --plugin lucidchart-packThis skill is limited to using the following tools:
- [ ] Production credentials in secret manager
Outlines Lucidchart API security basics: key storage in .env with .gitignore, rotation checklists, audit logging, and developer resources.
Runs MindTickle production checklist: verifies credentials, rate limits, error handling, TypeScript health checks, monitoring, alerting, and rollback procedures.
Provides production readiness checklist for Linear integrations, covering authentication, error handling, rate limits, monitoring, observability, and data handling for deployments.
Share bugs, ideas, or general feedback.
async function health() {
try { /* test Lucidchart API call */ return { status: 'healthy' }; }
catch { return { status: 'degraded' }; }
}
See lucidchart-upgrade-migration.