Skip to content
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,7 @@ ongoing host installs and upgrades.
| `address-review` | Fetch and triage GitHub PR review comments. |
| `adversarial-pr-review` | Run a skeptical pre-merge or post-merge PR review. |
| `autoreview` | Run a structured second-model local diff review. |
| `continue` | Resume an in-progress task with a structured checkpoint. |
| `evaluate-issue` | Decide whether an issue or proposed fix is worth doing. |
| `plan-issue-triage` | Produce a ready prompt for review-only issue triage. |
| `plan-pr-batch` | Shape candidate issues or PRs before launching a batch. |
Expand All @@ -121,6 +122,7 @@ ongoing host installs and upgrades.
| `replicate-ci` | Reproduce hosted-CI/local parity gaps. |
| `run-ci` | Choose and run repo-local CI checks. |
| `spec` | Turn vague implementation intent into requirements, design, and tasks. |
| `status` | Report tight progress (done/in-progress/blocked/next) without starting new work. |
Comment thread
justin808 marked this conversation as resolved.
| `tdd` | Drive test-first red-green-refactor loops for features and bug fixes. |
| `triage` | Build a whole-surface issue/PR inventory and batch split. |
| `update-changelog` | Classify merged PRs and update a repo changelog. |
Expand Down
31 changes: 31 additions & 0 deletions skills/continue/SKILL.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
---
name: continue
description: Resume an in-progress task with a structured checkpoint instead of a bare "continue", re-establishing what is done, what is next, and how done is verified. Use when resuming work after an interruption, handoff, or a vague "keep going".
argument-hint: '[focus text or scope]'
---
Comment thread
justin808 marked this conversation as resolved.

# Continue

Resume the current task. Before doing any new work, re-establish context so work does not drift or
repeat:

1. **Where we are** - Summarize in 2-4 lines what is already done (cite files, commits, or PRs) and
the current goal. If there is no task currently in progress (no prior conversation, no staged
work, and no recent commits on this branch), say so and ask the user what to continue instead of
inferring a goal. If the goal is unclear but prior work exists, state your best inference and
proceed; do not stop to ask unless you are genuinely blocked.
Comment thread
justin808 marked this conversation as resolved.
Outdated
2. **What is next** - List the remaining steps to reach done, then pick the next concrete one.
3. **Definition of done** - Restate the overall success criteria in one line, plus the command or
test that will verify it.
Comment thread
justin808 marked this conversation as resolved.
Outdated
4. Continue working on the next step.
Comment thread
justin808 marked this conversation as resolved.
Outdated

If the user supplied focus text or arguments, treat it as additional direction or a narrowed scope
for what to continue.

- Do not re-do completed work, and do not ask the user to repeat context you can reconstruct from
the conversation, open files, or git state.
- Honor `AGENTS.md` boundaries and safety rules while resuming; never push or take irreversible
Comment thread
justin808 marked this conversation as resolved.
actions unless the task already authorized them.
- End with a short status line using the same labels as `$status`: Done, In progress,
Blocked / needs input, and Next. Treat this closing summary as a report of the resumed work, not as
a separate trigger to start additional work beyond step 4.
Comment thread
justin808 marked this conversation as resolved.
Outdated
21 changes: 21 additions & 0 deletions skills/status/SKILL.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
---
name: status
description: Report tight progress on the current work - done, in progress, blocked, and next - without starting new work. Use when asked for a status update or "where are we / anything needed from me".
---

# Status

Give a tight status update on the current work. **Do not start new work.**

Report:

- **Done** - what is complete and verified. Cite files, commits, or test results, and only claim
Comment thread
justin808 marked this conversation as resolved.
Outdated
"verified" if the check was actually run.
- **In progress** - what is mid-way through.
- **Blocked / needs input** - anything that genuinely needs a decision, credentials, or an external
Comment thread
justin808 marked this conversation as resolved.
unblock. If nothing, say "nothing blocked".
- **Next** - the next one to three concrete steps, without starting them.

Keep it to roughly ten lines. If you are waiting on a long-running command or a background agent,
Comment thread
justin808 marked this conversation as resolved.
Outdated
Comment thread
justin808 marked this conversation as resolved.
Outdated
name it and the signal you are waiting for. Do not start new long-running work solely to produce a
richer status report.
Loading