Task register
Skill postmelee/hyper-waterfall/templates/locales/en/mydocs/skills/task-register
A human-governed AI coding workflow that distills ephemeral session context into persistent project memory—making work traceable, reviewable, and resumable.
npx -y skills add postmelee/hyper-waterfall --skill task-registerAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
What its author says it does
Copied from the file, not written here
Register a new task that does not yet have a GitHub Issue in the Hyper-Waterfall workflow. Query open milestones and existing labels, choose candidates, confirm with the task requester before creating the Issue, then create the GitHub Issue number. After Issue creation, hand off branch, daily task board, and task plan work to task-start.
SKILL.md
5.9 KB, as published. Nobody here has run it
Hyper-Waterfall Issue Registration
Trigger
- The task requester explicitly asks to register an Issue, create a new task, or start from an Issue.
- The task requester invokes this SKILL directly.
Preconditions
- The work does not yet have an Issue number.
- Purpose, background, and scope are at least drafted.
ghCLI is authenticated for the current user.- When possible,
.github/ISSUE_TEMPLATE/task.ymlor framework sourcetemplates/.github/ISSUE_TEMPLATE/task.ymlcan be read. - Before creating the Issue, the title, body, milestone, and label draft can be confirmed with the task requester.
Procedure
- Check for duplicate Issues.
gh issue list --repo {REPO_SLUG} --state all \ --search "{work keywords}" \ --limit 20 \ --json number,title,state,milestone,labels,url- If a substantially identical open Issue exists, do not create a new one. Ask whether to use the existing Issue.
- If a closed Issue covered the same topic, link it in the new Issue references.
- Check open milestones.
gh api repos/{REPO_SLUG}/milestones \ --jq '.[] | {number,title,state,description,open_issues,closed_issues}'- Judge from the live
title,state, anddescription. - Do not rely on remembered old milestone lists or version mappings.
- Judge from the live
- Check existing labels.
gh api repos/{REPO_SLUG}/labels --paginate \ --jq '.[] | {name,description,color}'- Judge from live
nameanddescription. - Do not rely on remembered old label lists.
- Judge from live
- Choose milestone candidates.
- Use only open milestones.
- Compare work purpose, scope, component, and release phase with the milestone
titleanddescription. - If one candidate is clear, record its title and reason.
- If 2-3 candidates are possible, present them with reasons and ask the task requester.
- If no open milestone fits or descriptions are insufficient, ask the task requester instead of guessing.
- Choose label candidates.
- Use only existing labels from the live lookup.
- Select a label only when the work clearly matches the label
nameanddescription. - Prefer 1 type label, 1-2 area labels, and 0-1 kind/status label.
- Type labels include
bug,documentation,enhancement,duplicate, orquestion. - Area labels are selected by primary work ownership, not every affected area.
- Kind labels such as
kind:architecture,kind:automation,kind:regression,kind:verification, orkind:follow-upare used only when they meaningfully distinguish handling. - General Issues should usually have 2-4 labels.
- If 5 or more labels are needed, write the exception reason in the draft and confirm it with the task requester.
- If candidates are clear, record label names and reasons.
- If no label fits or the fit is ambiguous, create without labels or ask the task requester.
- Do not create new labels.
- Draft the Issue.
- Title: one sentence that reveals the work unit.
- Body: prefer GitHub Issue Form
.github/ISSUE_TEMPLATE/task.yml.- In a framework repository, use
templates/.github/ISSUE_TEMPLATE/task.ymlwhen checking the source template for applied repositories. - Since
gh issue createdoes not run Issue Form UI, convert form fields to Markdown sections.
- In a framework repository, use
- Issue Form sections:
- Background
- Goals
- Scope - Included
- Scope - Excluded
- Acceptance Criteria
- Verification Criteria
- References
- Milestone and label candidates
- If the Issue Form cannot be read, use the same section list as fallback.
- Milestone: one open milestone chosen from live lookup and the selection reason.
- Labels: approved existing labels and reasons, or none.
- Split label reasons by type/area/kind, and include the exception reason if using 5 or more labels.
- Request approval before creating the Issue.
- Show the task requester the title, body, milestone, labels, and selection reasons.
- Do not run
gh issue createuntil the task requester explicitly approves creation in the same thread.
- After approval, create the Issue.
gh issue create --repo {REPO_SLUG} \ --title "{title}" \ --body "{body}" \ --milestone "{milestone}" \ --label "{label}"- Repeat
--labelfor multiple labels, such as--label documentation --label enhancement. - Omit
--labelwhen creating without labels.
- Repeat
- Confirm the created Issue.
gh issue view {N} --repo {REPO_SLUG} \ --json number,title,state,milestone,labels,url - Report the created Issue number and URL, then request approval to enter
task-start.
Verification
- The created Issue is
OPEN. - The milestone is not empty and was an open milestone from live lookup.
- Labels are only approved existing labels.
- General Issue labels are usually in the recommended 2-4 range.
- If 5 or more labels were used, the approved exception reason is included in the report.
area:*labels are selected by primary work ownership.- The Issue body fills the required inputs corresponding to
.github/ISSUE_TEMPLATE/task.yml. - The creation report includes Issue number, URL, milestone, labels, and selection reasons.
Never Do
- Run
gh issue createwithout task requester approval. - Create a new milestone or label.
- Arbitrarily use a closed milestone.
- Continue to
task-startafter Issue creation without approval. - Create branches, update the daily task board, or write the task plan inside this Skill.
Invocation
- Codex:
$task-registeror selecttask-registerfrom the/skillsmenu - Claude Code:
/task-register