feat(skills): add agentation-fixer skill for watch & auto-fix loop#153
Open
armatrix wants to merge 1 commit intobenjitaylor:mainfrom
Open
feat(skills): add agentation-fixer skill for watch & auto-fix loop#153armatrix wants to merge 1 commit intobenjitaylor:mainfrom
armatrix wants to merge 1 commit intobenjitaylor:mainfrom
Conversation
The two-session workflow (Critic + Fixer) currently requires the Fixer to be set up with a manual prompt. This adds a proper skill that encapsulates the watch loop, fix cycle, intent routing, and severity ordering. Supports two modes: - `/agentation-fixer check` — one-shot: drain pending, fix, done - `/agentation-fixer watch` — continuous loop until stopped Also updates two-session-workflow.md to reference the new skill while keeping the manual prompt as a fallback.
|
@armatrix is attempting to deploy a commit to the Benji Taylor's Projects Team on Vercel. A member of the Team first needs to authorize it. |
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.
Summary
The two-session workflow currently requires the Fixer (Terminal 2) to be set up with a manual prompt pasted into Claude Code. This PR adds a proper skill that encapsulates the full watch-and-fix loop.
What's included:
skills/agentation-fixer/SKILL.md— new skill with:/agentation-fixer check): drain pending annotations, fix each, report summary/agentation-fixer watch): continuousagentation_watch_annotationsloop that auto-fixes annotations as they arrivefix/change/question/approveannotations differentlyblockingbeforeimportantbeforesuggestionagentation_replywhen annotation is ambiguous instead of guessingallowed-toolsdeclaration for all required MCP toolsargument-hintfor CLI discoverabilityUpdated
two-session-workflow.mdto reference the new skill (with manual prompt kept as fallback)Motivation
The Critic (
/agentation-self-driving) has a full skill with detailed instructions for browser automation. The Fixer side is equally important but was left as a raw prompt — which means every user has to figure out the watch loop, intent routing, and error handling on their own. This skill fills that gap.Test plan
ln -s "$(pwd)/skills/agentation-fixer" ~/.claude/skills/agentation-fixer/agentation-fixer checkwith pending annotations → should fix and resolve each/agentation-fixer watch→ should block and process annotations as they arriveagentation-self-drivingin a two-session setup → Critic creates, Fixer fixesagentation_replyis used for ambiguous annotations instead of bad fixes