com um clique
ci-status
Summarize recent GitHub Actions run statuses per workflow
Instalar com Codex ou Claude Copie este prompt, cole no Codex, Claude ou outro assistente e deixe que ele revise a página da skill e instale para você.
Menu
Summarize recent GitHub Actions run statuses per workflow
Instalar com Codex ou Claude Copie este prompt, cole no Codex, Claude ou outro assistente e deixe que ele revise a página da skill e instale para você.
Baseado na classificação ocupacional SOC
Write Bash commands that don't trigger unnecessary permission prompts. Use Read/Edit/Grep instead of head/tail/sed/awk/cat/echo; split chained commands (&&, ;, ||) into separate Bash calls; drop diagnostic suffixes like `; echo "EXIT=$?"`. The allowlist matches whole command strings — every mismatch costs the user attention.
Commit user-named files atomically via scripts/commit-pathspec.sh (which wraps `git commit -m "..." -- <files>` and writes the provenance token the pre-commit hook validates). Applies the CLAUDE.md "Pre-commit hook failures on unrelated changes" protocol when the hook fails. Never adds --no-verify silently — explicit user approval is required.
Scaffold a new epic file in docs/developers/tasks/open/ and run housekeep
Scaffold a new idea file in docs/developers/ideas/open/ and regenerate the ideas OVERVIEW.md
Set a task to active — updates status, moves to active/, runs housekeep. Also resumes paused tasks (paused/ → active/ or active/ with closed prerequisites).
Mark a task as closed — writes effort_actual, moves the file to closed/, runs housekeep, and commits
| name | ci-status |
| description | Summarize recent GitHub Actions run statuses per workflow |
Fetch the most recent GitHub Actions runs and print a per-workflow status summary.
Steps:
Run:
gh run list --limit 40 --json workflowName,status,conclusion,createdAt,headBranch,headCommit,url
Group by workflowName. For each workflow show only the most recent run.
Print a table:
Workflow Branch Status Conclusion Age URL
test.yml main completed success 2h ago https://...
static-analysis.yml main completed failure 2h ago https://...
codeql-analysis.yml main in_progress — 5m ago https://...
docs.yml main completed success 3d ago https://...
Below the table, list any workflows with conclusion == "failure" and print their
URL for quick access.
If gh is not authenticated or the repo has no runs yet, report the error and stop.
Do not open URLs — just print them.