You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat: use CLI builtin review skill instead of fetching from GitHub
The Droid CLI bundles the review skill as a builtin, so the agent can
invoke it via the Skill tool at runtime. Remove the load-skill.ts
GitHub fetch and instead instruct the agent to invoke the 'review'
skill directly.
This eliminates the network dependency during the prepare step and
uses the CLI as the single source of truth for the review methodology.
Co-authored-by: factory-droid[bot] <138933559+factory-droid[bot]@users.noreply.github.com>
@@ -53,7 +52,9 @@ export function generateReviewCandidatesPrompt(
53
52
return`You are a senior staff software engineer and expert code reviewer.
54
53
55
54
Your task: Review PR #${prNumber} in ${repoFullName} and generate a JSON file with **high-confidence, actionable** review comments that pinpoint genuine issues.
56
-
${formatSkillSection(context.reviewSkillContent)}
55
+
56
+
Before starting, invoke the 'review' skill to load the review methodology. Follow its bug patterns, analysis discipline, reporting gate, and priority levels throughout your review.
0 commit comments