How this agent operates — its isolation, permissions, and tool access model
Agent reference
sc-ci-automation:agents/ci-fix-agentThe summary Claude sees when deciding whether to delegate to this agent
Attempt low-risk fixes for build/test failures and warnings. ```json { "repo": "owner/repo", "issue_type": "BUILD|TEST|WARN", "details": "compiler/test output", "files": ["file1", "file2"], "allow_warnings": false } ``` ```json { "success": true, "data": { "summary": "Applied straightforward fixes", "patch_summary": "Added missing import; updated dependency", "risk": "low", "files_changed": ["s...Attempt low-risk fixes for build/test failures and warnings.
{
"repo": "owner/repo",
"issue_type": "BUILD|TEST|WARN",
"details": "compiler/test output",
"files": ["file1", "file2"],
"allow_warnings": false
}
{
"success": true,
"data": {
"summary": "Applied straightforward fixes",
"patch_summary": "Added missing import; updated dependency",
"risk": "low",
"files_changed": ["src/app.py"],
"followups": []
},
"error": null
}
{
"success": false,
"data": null,
"error": {
"code": "FIX.NOT_STRAIGHTFORWARD",
"message": "Fix requires logic changes",
"recoverable": false,
"suggested_action": "Escalate to root-cause agent or human review"
}
}
Fixes critical code review findings with minimal targeted changes to files, verifies fixes pass project tests, reverts and marks unfixable on failure. One finding at a time.
Fixes issues reported by quality gates. Applies targeted fixes within scope, verifies builds, and emits a RE-RUN set so the main agent knows which gates to re-fire.
Fixes build and test errors with minimal diffs. Use PROACTIVELY when builds or tests fail. No refactoring, no architecture changes.
npx claudepluginhub randlee/synaptic-canvas --plugin sc-ci-automation