Loading...
Loading...
Generate a handoff document after implementation work is complete — summarizes changes, risks, and review focus areas for the review pipeline. Use when done coding and ready to hand off for review.
npx skill4agent add generaljerel/chalk-skills create-handoff$ARGUMENTSfeature/issue-24-authenticationissue-24-authenticationmainmasterSESSION_DIR=".chalk/reviews/${session_name}"
HANDOFF_PATH="$SESSION_DIR/handoff.md"
mkdir -p "$SESSION_DIR"maingit merge-base main HEADorigin/mainmasterorigin/master{base}git log --oneline {base}..HEAD
git diff --stat {base}..HEAD
git diff {base}..HEADpackage.jsonyarn.lockpnpm-lock.yaml{pm} run build 2>&1 | tail -5{pm} run typecheck 2>&1 | tail -5npx tsc --noEmit 2>&1 | tail -5{pm} run lint 2>&1 | tail -5{pm} run test 2>&1 | tail -5Cargo.tomlcargo check 2>&1 | tail -5cargo test --no-run 2>&1 | tail -5cargo clippy 2>&1 | tail -5go.modgo build ./... 2>&1 | tail -5go vet ./... 2>&1 | tail -5go test ./... -short 2>&1 | tail -5pyproject.tomlrequirements.txtpython -m py_compile.pypython -m pytest --co -q 2>&1 | tail -5Makefilebuildchecktestmake build 2>&1 | tail -5make check 2>&1 | tail -5make test 2>&1 | tail -5HANDOFF_PATH# Handoff
## Scope
- Item: {item reference — e.g. "#24 — Add authentication" or "Refactor IPC layer"}
- Goal: {1-sentence summary of what was accomplished}
## What Changed
{bullet list of logical changes — describe WHAT each change does, not just file names}
## Files Changed
{bullet list of every file modified/created, from git diff --stat}
## Risk Areas
{bullet list of things that could break, have edge cases, or need careful review}
## Commands Run
{bullet list of every command run and its pass/fail status}
## Known Gaps
{bullet list of things NOT done — e.g. "no tests written", "error handling incomplete", "hardcoded values"}
## Suggested Focus For Reviewers
{bullet list of what reviewers should look at most carefully — prioritize by risk}/create-reviewgit diff --stat