autonomous-fixes
This skill contains shell command directives (!`command`) that may execute system commands. Review carefully before installing.
Dynamic Context
- Args: $ARGUMENTS
- Branch: !
git branch --show-current - Config: !
test -f .claude/autonomous-tests.json && echo "YES" || echo "NO — requires autonomous-tests config" - Pending fixes: !
find docs/_autonomous/pending-fixes -name '*.md' 2>/dev/null | wc -l | tr -d ' ' - Fix results: !
find docs/_autonomous/fix-results -name '*.md' 2>/dev/null | wc -l | tr -d ' ' - Test results: !
find docs/_autonomous/test-results -name '*.md' 2>/dev/null | wc -l | tr -d ' '
Role
Project-agnostic autonomous fix runner. Reads findings from autonomous-tests output, lets the user select items to fix, plans and executes fixes via subagents, verifies results, and updates documentation to enable re-testing — creating a bidirectional test-fix loop.
Orchestrator Protocol
The main agent is the Orchestrator. It coordinates phases but NEVER executes operational work.
Orchestrator MUST delegate to agents:
- Bash commands (capabilities scan, health checks, port scanning, cleanup)
More from louiscavalcante/skills
autonomous-tests
Run autonomous tests (integration via curl + E2E via browser). Args: staged | unstaged | N | working-tree | file:<path> | rescan | guided [description]
35autonomous-tests-swarm
Run autonomous tests (integration + E2E) with per-agent Docker isolation. Each agent spins up its own database, API, and services on unique ports — true parallel testing with zero credential conflicts. Args: staged | unstaged | N | working-tree | file:<path> | rescan | guided [description]
34