What problem does it solve?
Making code changes to a real repository by hand in a chat session leaves no proof the change actually works. This Skill clones the target repo into a disposable working directory, runs an OpenSquilla agent to implement the fix or feature on a task branch, and independently verifies the result with a red-green-regression test loop before reporting a structured outcome.
Core Features & Use Cases
- Repository issue fixing: Resolve a GitHub issue by number (via the
gh CLI) or a free-text task description against any repo named by path or git URL.
- Independent verification: Acceptance tests are proven red on the base commit and green on the change, plus a regression run against the existing suite, with internal retries on failure.
- Multiple verification modes:
red-green for existing repos, scratch for self-contained testable code written from scratch, and build for packaging a new app into an installer (.dmg, .exe, .AppImage).
- Use Case: A user says "fix issue 412 in github.com/acme/widgets" — the Skill clones the repo, implements the fix on a task branch, proves the acceptance test flips from fail to pass, and reports the branch, diffstat, assumptions, and cost.
Quick Start
Ask the agent to fix issue 412 in github.com/acme/widgets using the code-task solve command and wait for the verified result report.