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."