ワンクリックで
get-checks-status
Fetch the status of the Checks workflow for the current branch and report with optional system notification
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Fetch the status of the Checks workflow for the current branch and report with optional system notification
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Create or finalize a pull request — three modes: placeholder draft PR at spec time, finalize a draft into ready-for-review, or a regular PR right away for work done outside the task workflow.
Grill a product task (GitHub issue) into an implementable spec — research first, then a one-question-at-a-time interview; also elaborates sub-specs for deferred subtasks of large tasks.
Execute a product-task spec one leaf subtask per run — [agent] subtasks via the project skills, [human] subtasks handed off to the developer.
Convert the current conversation into a product-task spec in .agents/tasks/, or update an existing spec — folding in new decisions, harvesting colleague replies from Slack threads, and sending open questions to their owners. Use at the end of a grilling session, when the user wants to capture any conversation as a spec, or to sync a spec's open questions with Slack.
Declare new API resource(s) in an existing API service. Use whenever the app needs to call an endpoint that has no `service:name` resource yet.
Scaffold a new page (index / detail / general) and optionally wire it to API data. Use when adding any new route to the app, or when wiring API data into an already-scaffolded page (one with `TODO (api-data):` markers).
| name | get-checks-status |
| description | Fetch the status of the Checks workflow for the current branch and report with optional system notification |
| disable-model-invocation | true |
Before running any steps, ensure the GitHub CLI is available and authenticated. Follow the check-github-cli skill (ensure gh auth status succeeds; if not, guide the user to install/configure gh and do not proceed). For this workflow, the account needs read access to the repository.
Fetch the status of the "Checks" workflow run (workflow file .github/workflows/checks.yml) for current branch.
Note in the command output, format all URLs as clickable Markdown links: [Link Text](URL)
Determine the current branch
git branch --show-current (or equivalent) to get the branch name. Use this in subsequent gh commands.Fetch the status of the most recent workflow run
gh run list --workflow=checks.yml --branch <BRANCH> --limit 1gh run watch <RUN_ID> to subscribe to completion (or poll with gh run view <RUN_ID> until status is completed).gh run view <RUN_ID> for summary and job list.gh run view <RUN_ID> --log-failed for failed step logs (optional, for details).gh run view <RUN_ID> --web gives the URL; or use: https://github.com/<OWNER>/<REPO>/actions/runs/<RUN_ID>.Report the status with a system notification