From org-management
Quick scan of CI status across all repos in an org, flagging failures and stale workflows
How this skill is triggered — by the user, by Claude, or both
Slash command
/org-management:org-ci-healthThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Scan CI status across repos in an org.
Scan CI status across repos in an org.
Run from ~/code/{org}/ or pass the org name as an argument.
A pre-built script at ~/.claude/scripts/org-ci-health.sh collects all CI data in one pass.
Run it first to avoid spending tokens on individual gh calls.
~/.claude/scripts/org-ci-health.sh <org-name> > /tmp/org-ci-health.json
If the script is missing or not executable, flag this to the user and stop.
The script outputs a JSON array with per-repo entries containing:
repo, gh_org, has_workflowsrecent_runs (last 5 CI runs on main with status/conclusion)actions_used (list of uses: action references from workflows)Parse the JSON and flag:
has_workflows is falseFrom actions_used, flag:
actions/checkout@v3 when v4 exists)actions/setup-r or julia-actions/setup-juliaset-output or save-state commandspermissions: blockspush to all branches (should be limited)R-CMD-check workflowPresent a dashboard:
| Repo | Main CI | Last run | Actions up to date | Issues |
|---|
Then list specific issues grouped by repo.
For fixable issues (action version bumps, workflow updates):
Use a team if more than 3 repos need fixes.
IMPORTANT: If this command is being run as a standalone request, automatically exit after completing all phases successfully.
npx claudepluginhub seabbs/skills --plugin org-managementChecks and configures GitHub Actions CI/CD workflows for container builds, tests, and releases. Updates action versions, adds caching, multi-platform builds, and audits missing workflows.
Creates, audits, and optimizes GitHub Actions workflows for CI/CD, matrix builds, reusable workflows, composite actions, caching, and security hardening like pinning and permissions.
Generates reusable GitHub Actions workflow_call for automated CI failure detection and fixing with Claude Code. Use for multi-repo setups or caller workflows with custom inputs.