Agent skill

serpapi-ci-integration

Set up CI/CD for SerpApi integrations with fixture-based testing. Use when automating SerpApi tests without consuming credits, or validating search result parsing in CI. '

intentsolutions.io2,596★ · 1 repos on radarProfile →
claude-codecan modify filesMIT
Install
npx skills add jeremylongshore/claude-code-plugins-plus-skills --skill serpapi-ci-integration --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: ReadWriteEditBash(gh:*)
Requires: Designed for Claude Code
Path: plugins/saas-packs/serpapi-pack/skills/serpapi-ci-integration/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 2,630
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 CI Integration ## Overview CI for SerpApi should use fixture-based tests (no API credits consumed) for PRs, with optional live integration tests on main branch only. ## Instructions ### Step 1: GitHub Actions Workflow ```yaml name: SerpApi Tests on: [push, pull_request] jobs: unit-tests: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - uses: actions/setup-python@v5 with: { python-version: '3.12' } - run: pip install serpapi pytest - run: pytest tests/ -v # Uses fixtures, no API key needed integration: runs-on: ubuntu-latest if: github.ref == 'refs/heads/main' env: SERPAPI_API_KEY: ${{ secrets.SERPAPI_API_KEY }} steps: - uses: actions/checkout@v4 - uses: actions/setup-python@v5 with: { python-version: '3.12' } - run: pip install serpapi pytest - run: pytest tests/integration/ -v --timeout=30 ``` ### Step 2: Fixture-Based Unit Tests ```python # tests/test_search_parser.py import json, pytest def load_fixture(name): with open(f"tests/fixtures/{name}.json") as f: return json.load(f) def test_parse_organic_results(): result = load_fixture("google_python_tutorial") assert "organic_results" in result assert len(result["organic_results"]) > 0 assert result["organic_res

What's inside
Steps it walks through
  1. Overview
  2. Instructions
  3. Step 1: GitHub Actions Workflow
  4. Step 2: Fixture-Based Unit Tests
  5. Step 3: Live Integration Test (Controlled)
  6. Error Handling
  7. Resources
  8. Next Steps
More from claude-code-plugins-plus-skills
All skills →
About this skill
What does the serpapi-ci-integration skill do?

Set up CI/CD for SerpApi integrations with fixture-based testing. Use when automating SerpApi tests without consuming credits, or validating search result parsing in CI. '

How do I install it?

Run `npx skills add jeremylongshore/claude-code-plugins-plus-skills --skill serpapi-ci-integration --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,630 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