원클릭으로
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