Add a labs skill for multi-agent integrated feature review #1
Loading…
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Problem
Turn the "full integrated review" pattern into a reusable labs skill (plus supporting
review agents), so a completed feature can be reviewed by an army of parallel agents
without hand-crafting the dispatch each time.
The pattern, as run by hand against the Kirria Slack integration:
Scope the feature. Identify the set of files that make up the completed work
(already-merged is fine — the review target is the current on-disk state, not a diff).
Write a single shared context brief: file list, working directory, architecture
pointers, and a strict findings-output format.
Fan out one agent per review lens, each cold-started against the shared brief,
read-only, told to load the relevant project skills first. The lenses used:
deep modules.
and negative cases, tests that don't actually verify behavior.
excessive comments.
scenario.
logging, failure-mode coverage.
replay verification, input validation at trust boundaries, dependency risk.
ponytail:markers, stale comments,deprecated patterns, deferred work, and drift between code and its docs/wiki.
Consolidate. The dispatcher collects each agent's findings, de-dupes overlap
between lenses, and produces one prioritized report.
Design notes worth capturing for whoever builds it:
added mid-run on request.
de-duped at consolidation, not prevented up front.
briefs stay lean and consistent.
edit.
This lived as an ad-hoc parallel dispatch; make it a skill so it's repeatable.