Agent skill · Workflow & Productivity

serpapi-prod-checklist

Production readiness checklist for SerpApi integrations. Use when deploying search features, validating credit budgets, or preparing SerpApi-powered apps for launch. '

intentsolutions.io2,596★ · 1 repos on radarProfile →
claude-coderead-onlyMIT
Install
npx skills add jeremylongshore/claude-code-plugins-plus-skills --skill serpapi-prod-checklist --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 3 KB
Bundled scripts: none
Version: 1.4.0
Declared author: Jeremy Longshore <jeremy@intentsolutions.io>
Allowed tools: ReadBash(curl:*)Grep
Requires: Designed for Claude Code
Path: plugins/saas-packs/serpapi-pack/skills/serpapi-prod-checklist/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 2,596
Language: Python
Read our review of the source →

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# SerpApi Production Checklist ## Checklist ### API Key & Authentication - [ ] API key stored in secret manager (not env files) - [ ] Backend proxy for all client-side search requests - [ ] Key not exposed in frontend bundles or logs - [ ] Usage monitoring configured ### Credit Budget - [ ] Monthly search volume estimated - [ ] Plan tier matches expected volume - [ ] Response caching implemented (LRU or Redis) - [ ] Archive API used for result retrieval (free) - [ ] Budget alerts set (e.g., 80% threshold) ### Error Handling - [ ] Check `search_metadata.status` before using results - [ ] Handle `error` field in responses - [ ] Retry on 500/timeout (max 2 retries) - [ ] Graceful fallback when credits exhausted - [ ] Log search IDs for debugging (`search_metadata.id`) ### Performance - [ ] Response caching with appropriate TTL - [ ] Rate limiting per plan tier (see `serpapi-rate-limits`) - [ ] Async search for non-critical queries - [ ] Proxy endpoint rate-limited to prevent abuse ### Health Check ```typescript app.get('/health', async (req, res) => { try { const account = await fetch( `https://serpapi.com/account.json?api_key=${process.env.SERPAPI_API_KEY}` ).then(r => r.json()); res

What's inside
Steps it walks through
  1. Checklist
  2. API Key & Authentication
  3. Credit Budget
  4. Error Handling
  5. Performance
  6. Health Check
  7. Resources
  8. Next Steps
More from claude-code-plugins-plus-skills
All skills →
About this skill
What does the serpapi-prod-checklist skill do?

Production readiness checklist for SerpApi integrations. Use when deploying search features, validating credit budgets, or preparing SerpApi-powered apps for launch. '

How do I install it?

Run `npx skills add jeremylongshore/claude-code-plugins-plus-skills --skill serpapi-prod-checklist --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From jeremylongshore/claude-code-plugins-plus-skills, a repository with 2,596 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going