Fathom ci integration
Skill ComeOnOliver/skillshub/skills/jeremylongshore/claude-code-plugins-plus-skills/fathom-ci-integration
🧠The right skill, one API call. AI agent skills registry with token-efficient skill resolution. 5,000+ skills from 500+ top repos.
npx -y skills add ComeOnOliver/skillshub --skill fathom-ci-integrationAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
What its author says it does
Copied from the file, not written here
Test Fathom integrations in CI/CD pipelines. Trigger with phrases like "fathom CI", "fathom github actions", "test fathom pipeline".
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, 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.