Add inki review agents and rewrite review skill as parallel dispatcher#3234
Draft
pwizla wants to merge 4 commits into
Draft
Add inki review agents and rewrite review skill as parallel dispatcher#3234pwizla wants to merge 4 commits into
pwizla wants to merge 4 commits into
Conversation
Each check (style, outline, UX, code, coherence, pitfalls) becomes a dedicated subagent with a tool allowlist that excludes writes and a model tier matched to its task: opus for the high-stakes factual checks (code-verifier, coherence-checker), sonnet for scoped judgment, haiku for style (the deterministic style-lint.sh script carries the bulk of that check).
Step 2 now dispatches the six checks as concurrent subagents instead of inline sub-skill calls, keeping their file reads out of the main context. Since the agents are read-only, fix application moves into the skill (new Step 3b).
STYLE_GUIDE.pdf is the authoritative Strapi style guide (Rule 12 of the 12 Rules points to it). Copy it into references/ so the plugin stays self-contained, and make the style-checker agent read it for formatting and capitalization judgment.
Outline UX analysis is open-ended pedagogical judgment (progression, signposting, reading flow), which warrants the top model tier rather than sonnet. outline-checker stays on sonnet (template-bound structural check).
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR introduces six read-only review subagents to the inki plugin and rewrites the review skill to dispatch them in parallel instead of running sub-skills inline. Each agent (style, outline, UX, code, coherence, pitfalls) carries a tool allowlist that excludes writes and a model tier matched to its task: opus for code-verifier, coherence-checker, and ux-analyzer; sonnet for outline-checker and pitfalls-checker; haiku for style-checker, since the deterministic style-lint.sh script carries the bulk of that check. It also syncs the authoritative STYLE_GUIDE.pdf into the plugin references and wires the style-checker agent to it.