<< All versions
Skill v1.0.1
currentAutomated scan96/100cybersemics/em/ci-monitor
+2 new
──Details
PublishedJuly 1, 2026 at 12:18 PM
Content Hashsha256:0803d0657332d46d...
Git SHA296f625f2133
Bump Typepatch
──Files
Files (1 file, 2.2 KB)
SKILL.md2.2 KBactive
SKILL.md · 45 lines · 2.2 KB
version: "1.0.1" name: ci-monitor description: Use this skill after pushing commits or when asked about CI status or to fix failing tests. It monitors GitHub Actions workflow runs for the current branch, waits for completion, returns which checks passed or failed with error details, and provides a methodology for iterating until all checks pass. allowed-tools:
- bash
Checking CI Status
- List workflow runs with the GitHub MCP actions tool: call
github-mcp-server-actions_listwithmethod: "list_workflow_runs". The standalonelist_workflow_runstool no longer exists. - Target the repository you are working in (
owner/repo— derive them fromgit remote get-url origin; do not hardcodecybersemics) and filter by your current branch, which you get fromgit rev-parse --abbrev-ref HEAD. Do not restrict bystatus— you need in-progress runs to stay visible so you can wait for them, and you want every run on the branch, not justmain.
``json { "method": "list_workflow_runs", "owner": "<repo owner>", "repo": "<repo name>", "workflow_runs_filter": { "branch": "<your current branch>" } } ``
- Wait for ALL in-progress runs to complete before reporting status. Never claim tests pass without actually checking.
- For each workflow, report: passed, failed, or still running.
- For failed workflows, pull the relevant log section showing the error.
Iteration Loop
When CI checks fail, follow this loop:
- Use the Test Failure Diagnosis skill to identify and categorize the failure.
- Fix the issue based on the diagnosis.
- Push the fix to the branch.
- Wait for all CI runs to complete again using this skill.
- If all checks pass, you're done. Summarize what you did.
- If checks still fail, return to step 1.
IMPORTANT:
- Never skip this loop. Always verify checks pass before claiming success.
- Never assume tests pass without checking. Hallucinating test results is the worst failure mode.
- If CI still fails after 5 fix-push cycles, stop and escalate to the user with a summary of what you tried and what you observed.
- If a failure is ambiguous, ask the user rather than guessing.
- Default to autonomous action. Escalate only when the correct path is genuinely unclear.