Agent skill · Code Review & Quality

pr-review-ci-fix

Automated PR review and CI auto-fix for GitHub and GitLab using the Composio CLI. Pulls diffs, fetches failing job logs, posts review comments, and loops fix commits until checks go green.

composio-communitygithub.com/composio-communityGitHub ↗
codex
Install
npx skills add composio-community/awesome-codex-skills --skill pr-review-ci-fix --agent codex

Same command for any agent — swap --agent for claude-code, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 4 KB
Bundled scripts: none
Path: pr-review-ci-fix/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 15,591
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

# PR Review + CI Auto-Fix Drive GitHub/GitLab PR reviews and CI triage from the shell using the [Composio CLI](https://docs.composio.dev/docs/cli). No tab-switching between browser, terminal, and chat. ## When to Use - A PR needs a structured review (correctness, style, risks) with inline comments. - CI is red and you want the agent to read the logs, patch the code, and recheck. - You want a single command that cycles: **fetch diff → critique → fix → push → rerun**. ## Prereqs ```bash curl -fsSL https://composio.dev/install | bash composio login composio link github # or: composio link gitlab ``` Optional env for non-interactive runs: `COMPOSIO_API_KEY`. ## Core Toolkits Discover slugs with search, then pin them for reuse: ```bash composio search "list pull request files" --toolkits github composio search "download workflow logs" --toolkits github composio search "create pr comment" --toolkits gitlab ``` Common slugs you'll reuse: - `GITHUB_GET_A_PULL_REQUEST` - `GITHUB_LIST_PULL_REQUESTS_FILES` - `GITHUB_CREATE_A_REVIEW_FOR_A_PULL_REQUEST` - `GITHUB_LIST_WORKFLOW_RUNS_FOR_A_REPOSITORY` - `GITHUB_DOWNLOAD_WORKFLOW_RUN_LOGS` - `GITLAB_GET_SINGLE_MERGE_REQUEST` - `GITLAB_LIST_MERGE_R

What's inside
Steps it walks through
  1. When to Use
  2. Prereqs
  3. Core Toolkits
  4. Review Workflow
  5. CI Auto-Fix Loop
  6. One-Shot Workflow File
  7. GitLab Variant
  8. Troubleshooting
Commands it runs
curl -fsSL https://composio.dev/install | bash
composio login
composio link github        # or: composio link gitlab
composio search "list pull request files" --toolkits github
composio search "download workflow logs" --toolkits github
composio search "create pr comment" --toolkits gitlab
composio execute GITHUB_GET_A_PULL_REQUEST \
composio execute GITHUB_LIST_PULL_REQUESTS_FILES \
composio execute GITHUB_CREATE_A_REVIEW_FOR_A_PULL_REQUEST -d '{
composio execute GITHUB_LIST_WORKFLOW_RUNS_FOR_A_REPOSITORY \
More from awesome-codex-skills
All skills →
About this skill
What does the pr-review-ci-fix skill do?

Automated PR review and CI auto-fix for GitHub and GitLab using the Composio CLI. Pulls diffs, fetches failing job logs, posts review comments, and loops fix commits until checks go green.

How do I install it?

Run `npx skills add composio-community/awesome-codex-skills --skill pr-review-ci-fix --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 composio-community/awesome-codex-skills, a repository with 15,591 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