jetbrains/context · Archived

context-review

Use this skill to review code changes using semantic search to understand context and impact

First seen Jul 2, 2026

Installation

$ npx skills add jetbrains/context --skill context-review

Stronger alternatives

This repository is archived — consider an actively maintained alternative.

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from jetbrains/context.

npx skills add jetbrains/context

Browse all from jetbrains/context

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 26
Default branch main
Open issues 1
Status Archived

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,891 B
  • docs SUMMARY.md 114 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 9 installs

SKILL.md

When to Use

  • Before committing changes to understand what you're about to commit
  • Reviewing pull requests or branches
  • Understanding the impact of changes on the rest of the codebase

Review Workflow

1. Check Current Changes

First, see what's changed:

git status
git diff                    # Unstaged changes
git diff --staged           # Staged changes
git diff main...HEAD        # All changes on current branch

2. Understand Changed Code Context

For each significantly changed file, use semantic search to understand:

  • Similar patterns: Find similar code elsewhere that might need the same change
  • Callers: Find code that calls the modified functions
  • Dependencies: Find code that the modified code depends on
# Find similar patterns
jbcontext search "<code chunk that was changed>"

# Find callers of a modified function
jbcontext search "calls to <function name> to understand impact"

# Find related test files in the "test/" directory (path must be relative to the project root)
jbcontext search -p test "tests for <feature being modified>"

3. Review Checklist

For each change, verify:

  • The change is consistent with similar patterns in the codebase
  • All callers of modified functions will still work correctly
  • Related tests exist and cover the changes
  • The change doesn't reintroduce previously fixed bugs

Example Session

# See what's changed
git diff --staged

# For a change to auth middleware, find similar patterns
jbcontext search "authentication middleware pattern"

# Find what calls this middleware
jbcontext search "uses auth middleware to protect routes"

# Find related tests
jbcontext search -p test "auth middleware test"