plugins/handoff/skills/start/SKILL.md
Hydrate session context from last handoff. Triggers: resume, pick up where I left off, continue from last session, what was I working on, session status, what's the state. Use for deep hydration beyond the auto-injected summary.
npx skillsauth add ramonclaudio/skills startInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
!cat .handoff/state.json 2>/dev/null || echo "No state. Run /handoff:end first."
Branch: !git branch --show-current 2>/dev/null
!git log -10 --format='%h %s' 2>/dev/null
!gh pr list --limit 5 2>/dev/null || echo ""
hostname from state.json. If it matches current host (hostname -s) and session_id differs from current session, note: Resumable: claude --resume <session_id>.resume.files still exist. Report missing or renamed files.blocker: true, handoff: true)resume: true, handoff: true)Ready. What would you like to work on?.handoff/state.json doesn't exist, the pre-loaded state outputs a raw string, not JSON. Don't try to parse it. Tell the user to run /handoff:end first.resume.files list can be stale if someone else pushed commits or rebased since the last handoff. Always verify files exist before referencing them.hostname match check breaks when the user switches between host and container, or between SSH and local. Don't block resume on hostname mismatch, just note it.gh pr list fails without GitHub CLI auth. Swallow the error and skip the PR section rather than erroring out.tools
Search indexed reference codebases (Convex, Expo, Next.js, Better Auth, Remotion, etc) via the qmd MCP query tool. Use when looking up framework APIs, finding code examples in third-party repos, or answering questions about external libraries that aren't in the current working directory.
development
Adds a reference collection to qmd. Accepts a GitHub URL, owner/repo shorthand, or a local directory path. Auto-detects file types, sets ignore globs, indexes with AST chunking, embeds, and verifies. Use when adding a new reference codebase or local notes folder for search.
tools
--- name: techdebt description: Lightweight end-of-session tech debt sweep. Finds duplicated code, dead exports, unused deps, stale TODOs, and bloated files. Use when user asks for "tech debt", "cleanup", "dead code", "unused exports", "code sweep", or end-of-session hygiene. Do NOT use for full codebase audits (use /audit instead). argument-hint: [--dry-run] [path/to/scope] context: fork agent: general-purpose allowed-tools: - Read - Edit - Glob - Grep - Bash(git *) - Bash(wc *) -
development
Use this skill when the user asks to orchestrate a team, use multiple agents, or parallelize work across Claude Code sessions. Decomposes tasks, spawns teammates, and coordinates execution.