name: sentinel-github-issue-flow
description: Manage Sentinel issue lifecycle transitions (triage/planned/working/testing/blocked/done) with release-milestone alignment and warn-only working-limit policy.
Sentinel GitHub Issue Flow
Use This Skill When
- A user asks to triage/reprioritize/release-align/update issue status.
- A user asks to move an issue to planned, working, testing, blocked, or done.
- A user asks to repair milestone/release mismatch.
Required Behavior
- Read current issue + project state.
- Compute transition plan and output preview first.
- Apply status label hygiene (remove conflicting
status:* labels).
- Keep milestone and Release aligned.
- For
working:
- check open
status:working load
- warn when one already exists (warn-only policy)
- Mutate only on explicit confirmation (
confirm=true or --confirm).
Script Workflow
# Ensure local temp payload directory exists
mkdir -p .codex/tmp
# 1) Preview transition
.codex/skills/sentinel-github-issue-flow/scripts/transition-issue.sh \
--payload-file .codex/tmp/transition.json
# 2) Execute transition on confirmation
.codex/skills/sentinel-github-issue-flow/scripts/transition-issue.sh \
--payload-file .codex/tmp/transition.json \
--confirm
Payload Contract
{
"repo": "DeadshotOMEGA/sentinel",
"issueNumber": 123,
"targetState": "triage|planned|working|testing|blocked|done",
"warnOnlyWorkingLimit": true,
"blockedLabel": "blocked:external|blocked:dependency|blocked:decision|null",
"blockerNote": "string|null",
"milestone": "vX.Y.Z|null",
"release": "vX.Y.Z|null",
"confirm": false
}
References
references/workflow-rules.md
references/status-transition-matrix.md