Release 2.1.5 (2026-06-08)¶
Features¶
- add issue-implement and issue-audit oracle-loop skills (#464)
- feat(skills): rewrite implement and audit skills to drive the vrg-pr-workflow oracle
Both skills collapse to the dumb oracle loop: call vrg-pr-workflow next, do exactly what the one directive says, report through the named verb, repeat until DONE. implement (USER): next -> implement -> report-ready; next -> fix findings -> report-fixes; next -> approved -> tell the human to run vrg-submit-pr; supports --no-audit for fast CI-backstopped work. audit (AUDIT): next -> one check (prompt inlined) -> run it against the delta -> submit-check; repeat per check; next -> DONE when approved. Role is resolved from vrg-whoami (no --as). Replaces the hand-rolled pr-template.yml + audit-feedback.yml handshake. Depends on vergil-project/vergil-tooling#1544.
- feat(skills): add issue-implement/issue-audit; keep legacy implement/audit for rollback
Move the oracle-loop rewrite into two new skills, issue-implement and issue-audit (the issue/pre-PR phase, mirroring the pr-* post-PR skills), and restore the legacy implement and audit skills to their original content. The legacy implement writes .vergil/pr-template.yml, so a published plugin works across the patch-level boundary: if the new vrg-submit-pr state-file path breaks, roll vergil-tooling back a patch and keep working with /vergil:implement, then roll forward. pr-watch is unchanged (identity-sensitive).