Agent skill
task-debugger
Debug and fix Taskcluster task failures
Stars
163
Forks
31
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/development/task-debugger
SKILL.md
Setup
Taskcluster CLI:
bash
taskcluster version # check if installed
export TASKCLUSTER_ROOT_URL=https://firefox-ci-tc.services.mozilla.com
If not installed: https://github.com/taskcluster/taskcluster/releases/latest/
Commands:
taskcluster task log <task-id>- Get logstaskcluster task def <task-id>- Get definition (optional)
Debug Process
- Extract task ID from message or URL
- Fetch logs:
taskcluster task log <task-id> - Analyze errors (tracebacks, test failures, build errors)
- If fix is obvious → apply it. Otherwise → reproduce locally:
- Docker-worker tasks:
taskgraph load-task --develop <task-id>(Firefox:./mach taskgraph, others: check virtualenv oruv run taskgraph) - Flags:
--interactive,--volume,--root,--image,--keep - Non-docker: extract command from task def and run locally
- Docker-worker tasks:
- For non-obvious issues: add debug statements → iterate → fix
- Verify fix using same reproduction method
- Clean up debug artifacts (don't re-verify after cleanup)
- Report: root cause, fix, verification, files changed
Didn't find tool you were looking for?