ワンクリックで
ci-status
Check GitHub Actions CI status. Shows recent runs, and if there are failures, reads the logs and suggests fixes.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Check GitHub Actions CI status. Shows recent runs, and if there are failures, reads the logs and suggests fixes.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Deep analysis of current changes before committing. Goes beyond lint — catches logic bugs, architectural violations, security, and performance issues.
Create a pull request from the current branch, matching the repo's PR conventions (What/Why/Testing for features, Summary/Test-plan for small PRs).
Review staged or unstaged changes before committing. Catches bugs, style drift, and missing coverage.
Cut a release — promote Unreleased → versioned in CHANGELOG, bump version, commit. CI auto-tags and publishes from the version-bump commit.
Create a release-tracking issue that organizes open issues into a phased roadmap. Pass a target version (e.g., `0.5.0`) to scope the plan.
Run the full quality gate — format, lint, tests, types. Use after changes to verify nothing is broken.
| name | ci-status |
| description | Check GitHub Actions CI status. Shows recent runs, and if there are failures, reads the logs and suggests fixes. |
Check CI status for AgentLoom.
List recent runs
gh run list --limit 12If there are failures
gh run list --status failure --limit 1 --json databaseId -q '.[0].databaseId'gh run view <id>gh run view <id> --log-failedIf all green
If $ARGUMENTS is a run ID
gh run view $ARGUMENTS --log