From linktree-pack
Provides production checklist for Linktree apps: pre-launch tasks, rate limiting, error handling, TypeScript health check example, monitoring, and rollback docs.
npx claudepluginhub jeremylongshore/claude-code-plugins-plus-skills --plugin linktree-packThis skill is limited to using the following tools:
- [ ] Production credentials in secret manager
Runs MindTickle production checklist: verifies credentials, rate limits, error handling, TypeScript health checks, monitoring, alerting, and rollback procedures.
Provides TypeScript examples for Linktree API: get profiles, create/update/list links. Useful for testing Linktree SaaS integration.
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 Linktree API call */ return { status: 'healthy' }; }
catch { return { status: 'degraded' }; }
}
See linktree-upgrade-migration.