skills/amia-ci-failure-patterns/SKILL.md
Use when diagnosing CI/CD failures. Trigger with CI failure logs or pipeline errors. Loaded by ai-maestro-integrator-agent-main-agent.
npx skillsauth add emasoft/ai-maestro-integrator-agent amia-ci-failure-patternsInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Diagnose and fix CI/CD failures by recognizing common failure patterns and applying proven fixes.
python3 available in PATHpython scripts/amia_diagnose_ci_failure.py --log-file ci.logCopy this checklist and track your progress:
| Output Type | Description |
|-------------|-------------|
| Diagnostic report | JSON/text from amia_diagnose_ci_failure.py with patterns and fixes |
| Platform scan | JSON/text from amia_detect_platform_issue.py with platform issues |
| Fix recommendations | Step-by-step instructions from reference documents |
Output discipline: All scripts support
--output-file <path>.
Script failures return non-zero exit codes. Check stderr for details. See the detailed guide in Resources for common error scenarios.
# CI log shows: FileNotFoundError: /tmp/build/output.txt
python scripts/amia_diagnose_ci_failure.py --log-file ci.log
# Output: cross-platform temp path issue
# Fix: Use tempfile.gettempdir() instead of hardcoded /tmp
See references/ directory — 27 documents. Full guide: detailed-guide:
development
Use when enforcing TDD via RED-GREEN-REFACTOR. No production code without a failing test first. Trigger with /enforce-tdd. Loaded by ai-maestro-integrator-agent-main-agent.
data-ai
Use when resuming sessions. Trigger with session resumption. Loaded by ai-maestro-integrator-agent-main-agent.
devops
Software release management and coordination. Use when creating releases, bumping versions, or rolling back deployments. Trigger with release tasks or /amia-create-release. Loaded by ai-maestro-integrator-agent-main-agent.
testing
Use when enforcing quality gates. Trigger with /amia-enforce-gates. Loaded by ai-maestro-integrator-agent-main-agent.