一键导入
analyze-ci-failure-logs
Parse and analyze CI failure logs to identify root causes and error patterns. Use when CI builds fail to understand what broke.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Parse and analyze CI failure logs to identify root causes and error patterns. Use when CI builds fail to understand what broke.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Run section orchestrators to coordinate multi-component workflows. Use when starting work on a section.
Validate agent YAML frontmatter and configuration. Use before committing agent changes or in CI.
Reply to PR review comments using the correct GitHub API endpoint. Use when responding to inline code review feedback (not gh pr comment).
Run Mojo tests using mojo test command. Use when executing tests or verifying test coverage.
Track implementation progress against plan. Use to monitor component delivery and identify blockers.
Check agent configuration coverage across hierarchy levels and phases. Use to ensure complete agent system coverage.
| name | analyze-ci-failure-logs |
| description | Parse and analyze CI failure logs to identify root causes and error patterns. Use when CI builds fail to understand what broke. |
| category | ci |
Parse CI failure logs to identify root causes and categorize errors.
# Download CI logs from artifact
gh run download <run-id> -D /tmp/ci-logs
# Extract from workflow run
gh run view <run-id> --log > /tmp/ci-output.log
# Grep for error patterns
grep -i "error\|failed\|panic\|exception" /tmp/ci-output.log
# Get summary of failures
tail -100 /tmp/ci-output.log | grep -A 5 "FAILED\|ERROR"
Compilation Errors:
error:, undefined, type mismatchTest Failures:
FAILED, AssertionError, ValueErrorTimeout Issues:
timeout, timed out, hangingDependency Issues:
not found, import failed, version conflictEnvironmental Issues:
permission denied, out of memory, disk fullProvide analysis with:
| Problem | Solution |
|---|---|
| Logs not accessible | Use gh run view to check permissions |
| Truncated logs | Download full artifact instead of view |
| Large log files | Use grep to extract relevant sections |
| Encoded artifacts | Unzip and decompress before analysis |