agentsclimarketplace

Serpapi prod checklist

Skill jeremylongshore/claude-code-plugins-plus-skills/plugins/saas-packs/serpapi-pack/skills/serpapi-prod-checklist

'Production readiness checklist for SerpApi integrations.From its SKILL.md

Install
npx -y skills add jeremylongshore/claude-code-plugins-plus-skills --skill serpapi-prod-checklist

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

What its file declares

Copied from the file, not written here

The file declares its own license as MIT. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.

SKILL.md

2.5 KB, 532 tokens by cl100k_base, as published. Nobody here has run it

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

AlertConditionSeverity
Credits Lowremaining < 10%P2
Credits Exhaustedremaining = 0P1
API UnreachableAccount check failsP1
High Error Rate> 5% searches failP2

Resources

Next Steps

For version upgrades, see serpapi-upgrade-migration.

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Keep looking

Skills are one crate of 326,144. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.