在 Manus 中运行任何 Skill
一键导入
一键导入
一键在 Manus 中运行任何 Skill
开始使用$pwd:
embark-review
// Use this skill to review code changes using semantic search to understand context and impact
$ git log --oneline --stat
stars:2
forks:0
updated:2026年4月17日 13:14
SKILL.md
// Use this skill to review code changes using semantic search to understand context and impact
Install Embark and complete first-time setup — login and configure agent integration. Use when `embark` is not found or the user asks to install Embark.
Experimental Embark org-wide semantic search across multiple repositories
Explore and understand unfamiliar codebases using semantic code search
Research and understand unfamiliar codebases using semantic search with `embark search`
| name | embark-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
embark search "<code chunk that was changed>"
# Find callers of a modified function
embark search "calls to <function name> to understand impact"
# Find related test files in the "test/" directory (path must be relative to the project root)
embark 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
embark search "authentication middleware pattern"
# Find what calls this middleware
embark search "uses auth middleware to protect routes"
# Find related tests
embark search -p test "auth middleware test"