fix(#272): remove signing from convention discovery lists - #296
Conversation
The fix and code agents non-deterministically add Signed-off-by trailers because both skills instruct agents to discover "signing" conventions from target repos. When a target repo requires DCO signing, the agent sometimes follows the discovered convention instead of the later "NEVER use git commit -s" prohibition. Remove "signing" from the convention discovery bullet in both skills/fix-review/SKILL.md and skills/code-implementation/SKILL.md. The existing prohibitions and post-script hard gates remain as defense-in-depth. Closes #272
|
/fs-review |
|
🤖 Finished Review · ✅ Success · Started 6:39 AM UTC · Completed 6:47 AM UTC |
ReviewFindingsMedium
Labels: PR modifies skills used by code-agent and fix-agent |
|
🤖 Finished Retro · ✅ Success · Started 7:10 AM UTC · Completed 7:20 AM UTC |
Retro: PR #296 — remove signing from convention discovery listsTimeline
AssessmentWhat went well:
What was wasted:
Root causes and existing coverageBoth root causes that led to the wasted work are already tracked by existing open issues:
No new proposalsAll identified improvement opportunities are covered by existing issues. The label failure (agents#274/#199/#351) is the highest-impact fix — resolving it would have prevented the entire cascade of erroneous closure, wasted code run, and multi-day delay on this PR. |
Summary
The fix agent non-deterministically adds
Signed-off-bytrailers because two skill files contain contradictory instructions. The convention-discovery steps tell agents to learn "signing" conventions from target repos, while later prohibitions forbidgit commit -s. When a target repo requires DCO signing, the agent sometimes follows the discovered convention instead of the prohibition, wasting the entire run.This PR removes "signing" from the convention discovery lists in both affected skills:
skills/fix-review/SKILL.md:(message format, signing)→(message format)skills/code-implementation/SKILL.md:signing requirements, message format→message formatThe existing "NEVER use
git commit -s" prohibitions and post-script hard gates remain as defense-in-depth.Testing
make testpasses (one pre-existing failure inpost-triage-test.shunrelated to this change)make check-bundlepassesgit commit -s" prohibitions still exist in both filesCloses #272
Post-script verification
agent/272-remove-signing-discovery)fc7b83e1e64b3d786b2d500189c142759fa06451..HEAD)