Dev handoff
Skill ainova-systems/intelligence-dev-packs/packs/core/skills/dev-handoff
Compact the session into a self-contained continuation prompt for a fresh agent sessionFrom its SKILL.md
npx -y skills add ainova-systems/intelligence-dev-packs --skill dev-handoffAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- 2 stars2 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
- runs commandsInstructs the agent to run 3 commands, including `git branch --show-current` and 2 more.
SKILL.md
2.0 KB, 399 tokens by cl100k_base, as published. Nobody here has run it
Handoff
Produce a portable prompt a fresh session (any tool, any machine) pastes to continue exactly where this one stands. The output is a prompt, not a summary. An argument describing the next session's focus tailors the content.
Steps
- Verify state with commands, never from memory:
git branch --show-current,git log --oneline -5,git status --porcelain, gate results actually observed this session. - Capture: the task in the owner's framing plus agreed scope; the spec path and current task position; done-and-verified vs in-progress, with the exact next action.
- Capture decisions with one-line rationale, including rejected approaches so they are not retried.
- Reference, don't duplicate: content already in artifacts (spec, ADRs, commits, PR description) is cited by path or URL, never copied in.
- Add a suggested skills section: the skills the next session should invoke (usually
spec-continue, plus whatever the stated focus needs). - Redact secrets and personal data - the handoff may travel between machines and tools.
- Write the prompt: repo-relative paths only, no "as we discussed"; ordered next steps starting with the immediate action; the verification commands the next session runs FIRST to confirm state.
- Output in full; save a copy outside version control (OS temp dir or the project's ignored scratch dir).
Verify
- A cold reader could run the verification commands and continue without asking anything this session already answered.
Scope / hand-off
- Resuming spec execution -
spec-continue(the handoff names it in suggested skills).
CRITICAL
- Unverified facts (did it commit? did tests pass?) are checked with a command now, never handed off as guesses.
- Trim to what the repo cannot re-derive: decisions and intent first, mechanics last.
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.