handoff
Auto-fill HANDOFF.md with current session state from git, then suggest /clear for a fresh start
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Auto-fill HANDOFF.md with current session state from git, then suggest /clear for a fresh start
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Run the full code quality pipeline — ruff format, ruff check, mypy, bandit
Prepare and execute a selectools release — version bump, changelog, docs, git, PyPI
Autonomous hunt-and-fix loop for a single selectools module. Finds bugs, auto-applies fixes, writes regression tests, verifies with pytest. Outputs RALPH_RESULT sentinel on the last line so the orchestration script can detect convergence.
End-to-end feature implementation — source, exports, tests, docs, examples, and notebook
Deploy parallel QA agents to hunt for bugs across selectools. Each agent audits a different subsystem. Use for pre-release quality gates or periodic sweeps.
Cross-reference audit for stale counts, broken links, and doc drift across all files
| name | handoff |
| description | Auto-fill HANDOFF.md with current session state from git, then suggest /clear for a fresh start |
Auto-fill HANDOFF.md with the current session state so the next session can resume.
Run git status --short to find modified/untracked files
Run git log --oneline -5 to get recent commits
Run git branch --show-current to get current branch
Run python3 -m pytest tests/ -x -q --tb=no 2>&1 | tail -1 to check test status
Write HANDOFF.md with:
# Session Handoff
## What I Was Doing
[Summarize from conversation context - what was the user working on?]
## Current State
- Branch: [from git branch]
- Last commit: [from git log]
- Tests passing: [from pytest output]
- Files in progress: [from git status]
## What's Left
1. [Infer from conversation - what hasn't been done yet?]
## Key Decisions Made
- [List decisions from this session that aren't in the code]
## Watch Out For
- [Any gotchas or context that would be lost]
/clear to start fresh. The next session will read HANDOFF.md automatically."