Skip to content
Skillv1.0.0

serpapi-prod-checklist

Production readiness checklist for SerpApi integrations. Use when deploying search features, validating credit budgets, or preparing SerpApi-powered apps for launch. Trigger: "serpapi production", "de

by jeremylongshore(0) 0 installs
Free
Sign in to install

Free account. Installing gives you the manifest plus copy-paste snippets.

See reviews

About

Imported from jeremylongshore/tons-of-skills-marketplace (plugins/saas-packs/serpapi-pack/skills/serpapi-prod-checklist/SKILL.md). Install upstream with npx skills add jeremylongshore/tons-of-skills-marketplace --skill serpapi-prod-checklist. Copyright stays with the author (MIT).

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

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.json({
      status: account.plan_searches_left > 0 ? 'healthy' : 'degraded',
      serpapi: {
        plan: account.plan_name,
        remaining: account.plan_searches_left,
        used: account.this_month_usage,
      },
    });
  } catch {
    res.status(503).json({ status: 'unhealthy', serpapi: { error: 'unreachable' } });
  }
});

Error Handling

Alert Condition Severity
Credits Low remaining < 10% P2
Credits Exhausted remaining = 0 P1
API Unreachable Account check fails P1
High Error Rate > 5% searches fail P2

Resources

Next Steps

For version upgrades, see serpapi-upgrade-migration.

Use it

Copy one of these into your project. Installing also returns the manifest and these snippets.

yaml
targets:
  - https://api.opensmartroute.ai/api/v1/registry/jeremylongshore-tons-of-skills-marketplace-serpapi-prod-63f194/manifest   # or paste the manifest below

Manifest

An Open Capability Manifest: the router reads it to know what this does, what it costs and when to pick it.

jeremylongshore-tons-of-skills-marketplace-serpapi-prod-63f194.ocm.jsonjson
{
  "ocm": "1",
  "id": "jeremylongshore-tons-of-skills-marketplace-serpapi-prod-63f194",
  "kind": "skill",
  "name": "serpapi-prod-checklist",
  "description": "Production readiness checklist for SerpApi integrations. Use when deploying search features, validating credit budgets, or preparing SerpApi-powered apps for launch. Trigger: \"serpapi production\", \"deploy serpapi\", \"serpapi go-live\".",
  "publisher": "jeremylongshore",
  "version": "1.0.0",
  "capabilities": {
    "domains": [
      "coding",
      "finance"
    ],
    "tags": [
      "skill-md",
      "saas",
      "search",
      "seo",
      "serpapi",
      "skills-sh"
    ],
    "languages": [
      "en"
    ]
  },
  "quality_prior": 0.6,
  "examples": [
    "Production readiness checklist for SerpApi integrations. Use when deploying search features, validating credit budgets, or preparing SerpApi-powered apps for launch. Trigger: \"serpapi production\", \"deploy serpapi\", \"serpapi go-live\"."
  ],
  "primary": false,
  "metadata": {
    "source": {
      "provider": "skills.sh",
      "repository": "https://github.com/jeremylongshore/tons-of-skills-marketplace",
      "path": "plugins/saas-packs/serpapi-pack/skills/serpapi-prod-checklist/SKILL.md",
      "ref": "HEAD",
      "url": "https://github.com/jeremylongshore/tons-of-skills-marketplace/blob/HEAD/plugins/saas-packs/serpapi-pack/skills/serpapi-prod-checklist/SKILL.md",
      "key": "jeremylongshore/tons-of-skills-marketplace/plugins/saas-packs/serpapi-pack/skills/serpapi-prod-checklist/SKILL.md"
    },
    "compatibility": "Designed for Claude Code",
    "allowed_tools": [
      "Read,",
      "Bash(curl:*),",
      "Grep"
    ],
    "license": "MIT"
  },
  "instructions": "# SerpApi Production Checklist\n\n## Checklist\n\n### API Key & Authentication\n\n- [ ] API key stored in secret manager (not env files)\n- [ ] Backend proxy for all client-side search requests\n- [ ] Key not exposed in frontend bundles or logs\n- [ ] Usage monitoring configured\n\n### Credit Budget\n\n- [ ] Monthly search volume estimated\n- [ ] Plan tier matches expected volume\n- [ ] Response caching implemented (LRU or Redis)\n- [ ] Archive API used for result retrieval (free)\n- [ ] Budget alerts set (e.g., 80% threshold)\n\n### Error Handling\n\n- [ ] Check `search_metadata.status` before using results\n- [ ]",
  "cost": {
    "context_tokens": 516
  }
}

Fetch it by URL: GET /api/v1/registry/jeremylongshore-tons-of-skills-marketplace-serpapi-prod-63f194/manifest?version=1.0.0

Reviews

Star ratings from people who tried it. One review per account; edit yours any time.

No reviews yet. Install it, try it, and be the first to rate it.