coderabbit-hello-world

Featured

Create a minimal working CodeRabbit configuration and trigger your first AI review. Use when starting with CodeRabbit, testing your setup, or learning basic .coderabbit.yaml patterns. Trigger with phrases like "coderabbit hello world", "coderabbit example", "coderabbit quick start", "first coderabbit review".

AI & Automation 2,266 stars 315 forks Updated today MIT

Install

View on GitHub

Quality Score: 99/100

Stars 20%
100
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# CodeRabbit Hello World ## Overview Minimal working example demonstrating CodeRabbit AI code review. CodeRabbit reviews PRs automatically via a GitHub/GitLab App -- no SDK or API calls needed. You configure behavior through a `.coderabbit.yaml` file and interact via PR comments. ## Prerequisites - CodeRabbit GitHub App installed (see `coderabbit-install-auth`) - A repository with at least one branch ## Instructions ### Step 1: Create Minimal Configuration ```yaml # .coderabbit.yaml (repository root) language: "en-US" reviews: profile: "assertive" high_level_summary: true auto_review: enabled: true drafts: false chat: auto_reply: true ``` ### Step 2: Add Path-Specific Instructions ```yaml # .coderabbit.yaml - add review context for better feedback reviews: profile: "assertive" high_level_summary: true auto_review: enabled: true drafts: false path_instructions: - path: "src/**/*.ts" instructions: "Check for proper TypeScript types. Flag any use of `any`." - path: "**/*.test.*" instructions: "Verify edge cases are covered. Check async handling." chat: auto_reply: true ``` ### Step 3: Create a PR to Trigger Review ```bash set -euo pipefail git checkout -b feat/hello-coderabbit # Add the configuration file cat > .coderabbit.yaml << 'YAML' language: "en-US" reviews: profile: "assertive" high_level_summary: true auto_review: enabled: true drafts: false path_instructions: - path: "src/**" instruct...

Details

Author
jeremylongshore
Repository
jeremylongshore/claude-code-plugins-plus-skills
Created
7 months ago
Last Updated
today
Language
Python
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category

AI & Automation Featured

coderabbit-install-auth

Install and configure CodeRabbit AI code review on GitHub or GitLab repositories. Use when setting up CodeRabbit for the first time, installing the GitHub App, configuring the CLI, or connecting CodeRabbit to your repositories. Trigger with phrases like "install coderabbit", "setup coderabbit", "coderabbit auth", "configure coderabbit", "add coderabbit to repo".

2,266 Updated today
jeremylongshore
AI & Automation Featured

coderabbit-core-workflow-a

Execute CodeRabbit primary workflow: automated PR code review with configuration. Use when setting up automated code reviews on pull requests, configuring review behavior, or establishing the core CodeRabbit review loop. Trigger with phrases like "coderabbit review workflow", "coderabbit PR review", "coderabbit auto review", "configure coderabbit reviews".

2,266 Updated today
jeremylongshore
AI & Automation Featured

coderabbit-reference-architecture

Implement CodeRabbit reference architecture with production-grade .coderabbit.yaml configuration. Use when designing review configuration for a new project, establishing team standards, or building a comprehensive review setup from scratch. Trigger with phrases like "coderabbit architecture", "coderabbit best practices", "coderabbit project structure", "coderabbit reference config", "coderabbit full setup".

2,266 Updated today
jeremylongshore
AI & Automation Featured

coderabbit-sdk-patterns

Apply production-ready CodeRabbit automation patterns using GitHub API and PR comments. Use when building automation around CodeRabbit reviews, processing review feedback programmatically, or integrating CodeRabbit into custom workflows. Trigger with phrases like "coderabbit automation", "coderabbit API patterns", "automate coderabbit", "coderabbit github api", "process coderabbit reviews".

2,266 Updated today
jeremylongshore
AI & Automation Featured

coderabbit-local-dev-loop

Configure CodeRabbit CLI for local pre-commit code reviews and fast iteration. Use when setting up local development with CodeRabbit CLI reviews, integrating AI review into your commit workflow, or testing config changes. Trigger with phrases like "coderabbit dev setup", "coderabbit local development", "coderabbit CLI workflow", "coderabbit pre-commit review".

2,266 Updated today
jeremylongshore