skills: add portable continue and status session-discipline skills#25
Conversation
|
You have reached your Codex usage limits for code reviews. You can see your limits in the Codex usage dashboard. |
|
Warning Review limit reached
Next review available in: 59 minutes Enable usage-based reviews in Billing to review now. Otherwise, wait until the next included review is available. How can I continue?After more reviews become available, a review can be triggered using the To avoid repeated limits, reduce automatic review volume by pausing incremental auto-reviews earlier, using label-based review opt-in, excluding WIP or generated PR titles, or requesting reviews manually when the PR is ready. If your team needs uninterrupted high-volume reviews, an organization admin can enable usage-based reviews. How do review limits work?CodeRabbit enforces per-developer PR review limits for each organization. Most developers receive the normal plan review availability. For paid Pro and Pro+ PR reviews, CodeRabbit uses adaptive limits for sustained high-volume activity. When a developer's recent PR review activity reaches the 95th percentile or higher among CodeRabbit users, additional reviews become available more gradually as earlier reviews age out of the rolling window. Please refer docs for additional details. Review details⚙️ Run configurationConfiguration used: Organization UI Review profile: CHILL Plan: Pro Run ID: 📒 Files selected for processing (3)
✨ Finishing Touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
|
@claude review this PR |
|
Claude finished @justin808's task in 2s —— View job I'll analyze this and get back to you. |
Add two small, portable skills that carry the same finish-cleanly discipline the PR workflows already use, but for any task: - continue: resume with a checkpoint (where we are / what is next / definition of done) instead of a bare "continue", so resumed work does not drift or repeat. - status: report done / in progress / blocked / next without starting new work. Both are repo-agnostic (no consumer-repo commands) and honor AGENTS.md boundaries. Listed in the README skill inventory. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
8f11650 to
23e9466
Compare
Code ReviewThis PR adds two portable session-discipline skills ( Finding 1 — README The table entry reads Finding 2 — Hard-coded The closing bullet says "Use Both issues are minor and easy to fix before merge. |
ReviewThis PR adds two portable session-discipline skills — `/continue` and `/status` — that give agents a structured checkpoint for resuming work and reporting progress respectively. The skills are concise, contain no consumer-repo–specific commands or hardcoded paths, and comply with the AGENTS.md portability rules. Three issues are worth addressing before merge. 1.
|
Review: skills/continue + skills/statusThis PR adds two portable meta-skills — Three findings survived verification, ranked below. 1. CONFIRMED —
|
Review: skills/continue and skills/statusThis PR adds two portable session-discipline skills — Finding 1 — Cross-skill reference uses internal file path instead of
The established convention in this repo is to reference sibling skills by their invocation name with a Functional impact is low because the four labels are spelled out inline in the same sentence. But the path reference is a portability issue and inconsistent with the codebase convention. Suggested fix: replace with Finding 2 —
|
Address-review summaryScan scope: unresolved review threads observed on 2026-06-30 after head aaf206c. Mattered
Optional
Skipped
Next default scan starts after this comment. Say |
Review: skills — continue and statusThis PR adds two portable meta-skills ( Findings (most severe first) 1. Step 4 work scope is unbounded —
|
Address-review summaryScan scope: unresolved Claude review threads observed on 2026-06-30 after head 12116f9. Mattered
Optional
Skipped
Next default scan starts after this comment. Say |
ReviewThis PR adds two portable session-discipline skills — Three issues on 1. Missing "Read Every other action-taking skill in this repo ( Fix: prepend a step 0: "Read 2. Empty-state detection too narrow; inference fallback lacks a confidence guard (low) — lines 13–16 The "no task in progress" check covers only three git/conversation-visible signals. Prior work in an open PR, a linked issue, or a planning doc is invisible to it. The second branch ("state your best inference and proceed") is uncapped — a single cryptic WIP commit satisfies "prior work exists" and the agent proceeds confidently in possibly the wrong direction. Fix: extend the first branch to mention checking open PRs/issues, and add a low-confidence qualifier to the second branch so the agent flags uncertain inferences before acting. 3. Closing status format duplicates The Done / In progress / Blocked / Next labels and the Fix: replace the inline format definition with "run Overall the skills are well-scoped and portable — the issues above are all confined to 🤖 Generated with Claude Code |
Address-review summaryScan scope: unresolved review threads observed on 2026-06-30 after head c805ad7. Mattered
Optional
Skipped
Next default scan starts after this comment. Say |
Review: skills: add portable continue and status skillsThis PR adds two well-scoped, portable skills — `/continue` and `/status` — that complement the existing handoff guidance. The skills are concise, reference `AGENTS.md` seam keys correctly, and contain no consumer-repo hardcoding. Two issues in the pairing between the two files are worth addressing before merge. Finding 1 — CONFIRMED · `skills/continue/SKILL.md` lines 32–33 The closing bullet instructs the agent to end with a "short status line using the companion status format," but the `Done` field in `status/SKILL.md` carries an extra requirement not mentioned here: note whether the item was verified, cite the check result, or mark it as awaiting verification. Since `continue` only names the four section headings (`Done / In progress / Blocked / Next`) without repeating the verification sub-rule, an agent following `/continue` will silently produce a `Done` entry that omits the verification status that `/status` mandates — the very alignment the file promises. Fix: add one phrase to the Done part of the closing instruction, e.g. "for Done items, note whether verified or awaiting verification." Finding 2 — PLAUSIBLE · `skills/continue/SKILL.md` line 32 The instruction says "End with a short status line" (singular). A model reading this literally may compress the entire Done/In-progress/Blocked/Next report into one inline sentence rather than the four-bullet block `status/SKILL.md` defines. The follow-on phrase "using the companion status format" softens this, but the tension between "line" and a four-bullet block is real and a source of inconsistency between `/continue` outputs and `/status` outputs. Fix: change "status line" → "status block" or "status summary" to match the multi-bullet structure. 🤖 Generated with Claude Code |
Address-review summaryScan scope: unresolved review threads observed on 2026-06-30 after head d67a76b. Mattered
Optional
Skipped
Next default scan starts after this comment. Say |
Review:
|
Review: skills: add portable continue and status session-discipline skillsThis PR adds two well-scoped, portable skills — Two PLAUSIBLE concerns are noted via inline comments below:
Neither is a blocker, but the first is worth a deliberate decision before merge. |
Code ReviewThis PR adds two portable session-discipline skills — Two findings:
No portability violations, no hardcoded consumer-repo specifics, and no binary or script files to audit. 🤖 Generated with Claude Code |
What
Add two portable skills —
continueandstatus— that embody the "state where you are, verify, then report" discipline for any task, not just PR batches.Why
continuereplaces the common bare "continue from where you left off" with a checkpoint (what is done, what is next, definition of done + verification) so resumed work does not drift or repeat.statusgives a tight done / in-progress / blocked / next report without kicking off new work.These complement rather than duplicate the existing "portable closeout handoffs" guidance that lives inside the PR-processing workflows: those cover agent-to-agent handoff within a batch; these cover single-task resume and status.
Changes
skills/continue/SKILL.mdandskills/status/SKILL.md— concise, portable (no consumer-repo commands), honorAGENTS.mdboundaries.Validation
bin/validatepasses (skill frontmatter + helper suites + RuboCop clean).🤖 Generated with Claude Code