agentsclimarketplace

Fathom ci integration

Skill ComeOnOliver/skillshub/skills/jeremylongshore/claude-code-plugins-plus-skills/fathom-ci-integration

Test Fathom integrations in CI/CD pipelines. Trigger with phrases like "fathom CI", "fathom github actions", "test fathom pipeline".From its SKILL.md

Install
npx -y skills add ComeOnOliver/skillshub --skill fathom-ci-integration

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

1.2 KB, 220 tokens by cl100k_base, as published. Nobody here has run it

Fathom CI Integration

name: Fathom Integration Tests
on:
  push:
    paths: ["src/fathom/**"]
jobs:
  test:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4
      - uses: actions/setup-python@v5
        with: { python-version: "3.11" }
      - run: pip install -r requirements.txt
      - run: pytest tests/ -v -k "not integration"
      - name: API connectivity check
        if: github.ref == 'refs/heads/main'
        env:
          FATHOM_API_KEY: ${{ secrets.FATHOM_API_KEY }}
        run: |
          python -c "
          from fathom_client import FathomClient
          client = FathomClient()
          meetings = client.list_meetings(limit=1)
          print(f'API connected: {len(meetings)} meetings')
          "

Next Steps

For deployment, see fathom-deploy-integration.

What ships with it

Read from the repository

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

Keep looking

Skills are one crate of 325,949. 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.