agentsclimarketplace

Github ci agents

Skill m00kk/agent-skills-playbook/skills/github-ci-agents

Wires AI agents into GitHub Actions: PR review bots, eval gates, Cursor SDK jobs, and MCP-powered checks. Use for CI/CD with agents, GitHub Actions LLM, or automated code review on pull requests.From its SKILL.md

Install
npx -y skills add m00kk/agent-skills-playbook --skill github-ci-agents

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

One thing to look at

  • 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

SKILL.md

1.8 KB, 386 tokens by cl100k_base, as published. Nobody here has run it

GitHub CI Agents

Common patterns

PatternTriggerAgent role
PR reviewpull_requestComment risks + suggestions
Eval gatepush / scheduleRun golden evals; fail on regression
Fix botissue_comment / labelOpen PR with patch
Docs syncpush to mainUpdate derived docs

Workflow skeleton

name: Agent eval
on:
  pull_request:
    branches: [main]
permissions:
  contents: read
jobs:
  eval:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4
      - name: Run eval suite
        env:
          OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
        run: python -m evals.run --smoke

Secrets

  • Store keys in GitHub Actions secrets or OIDC — never in workflow YAML values
  • Separate staging vs production keys
  • Minimum permissions on GITHUB_TOKEN

PR review agents

  • Post summary comment + inline suggestions only on changed files
  • Block merge only on objective checks (tests, eval pass) — not subjective tone
  • Rate-limit comments to avoid noise

Cursor SDK in Actions

- name: Run Cursor agent
  env:
    CURSOR_API_KEY: ${{ secrets.CURSOR_API_KEY }}
  run: npx tsx scripts/run-agent.ts

Script should: create agent → prompt → wait → export diff artifact.

Safety

  • pull_request_target only when you understand fork secret exposure
  • Do not run untrusted code from fork PRs with secrets
  • Require human approval for write operations to repo

Pair with evaluate-agent-quality and cursor-sdk-automation.

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.