一键导入
context-review
Use this skill to review code changes using semantic search to understand context and impact
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Use this skill to review code changes using semantic search to understand context and impact
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Explore and understand unfamiliar codebases using semantic code search
Experimental jbcontext org-wide blast-radius analysis across multiple repositories. Use when Codex needs to estimate the impact of changing an API, endpoint, schema, event, shared library, config, feature flag, data model, behavior, or dependency by finding producers, consumers, owners, tests, and related repos.
Install jbcontext and complete first-time setup — login and configure agent integration. Use when `jbcontext` is not found or the user asks to install jbcontext.
Research and understand unfamiliar codebases using semantic search with `jbcontext search`
Experimental jbcontext org-wide dependency search across multiple repositories. Use when need to find APIs in other repositories, or dependency configuration are used across repos for upgrades, removals, CVEs, migrations, or ownership discovery.
Experimental jbcontext org-wide semantic search across multiple repositories
| name | context-review |
| description | Use this skill to review code changes using semantic search to understand context and impact |
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
For each significantly changed file, use semantic search to understand:
# 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>"
For each change, verify:
# 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"