원클릭으로
handoff
Standardize coordination between agent sessions by creating and maintaining handoff documents in tmp/handoffs/
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Standardize coordination between agent sessions by creating and maintaining handoff documents in tmp/handoffs/
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
Instructions and guidelines for creating or adding new integration examples in the monorepo.
Instructions and guidelines on how package versioning, changelog generation, and NPM releases are managed using semantic-release in the tanstack-i18n monorepo.
Read and author Fumadocs for @wadiou/tanstack-i18n. Use when editing MDX, meta.json, or the docs app.
Write scoped Conventional Commits and run git commit in this repo. Use when the user asks to commit, amend, or draft a message.
Create and structure feature plans in the local documentation sandbox. Use when asked to plan a feature or create an implementation route.
SOC 직업 분류 기준
| name | handoff |
| description | Standardize coordination between agent sessions by creating and maintaining handoff documents in tmp/handoffs/ |
This skill explains how agents must create and update handoff documents when working on multi-phase implementations or when the user requests a session refresh.
tmp/handoffs/ directory relative to the repository root.handoff-<feature>.md (e.g., handoff-router.md, handoff-dashboard-v2.md).When implementing a large feature broken into phases, use the handoff file to track progress and context for subsequent agents.
Track the Current Phase:
Update After Completion:
Include Essential Resources:
When the user wants to refresh the session (start a new chat/agent), follow these steps:
Summarize Progress:
Define the Next Phase:
# Handoff: <Feature Name>
## Overview
Brief description of the feature or task.
## Phases
- [x] Phase 1: Setup scaffolding
- [x] Phase 2: Implement core logic
- [ ] Phase 3: Add unit tests (Next)
- [ ] Phase 4: Final review and linting
## Current Status Summary
Summarize the work completed in the latest session. (e.g., "Implemented the authentication middleware, but tests are currently failing on the token refresh edge case.")
## Next Phase
- Focus on Phase 3.
- Fix token refresh tests.
## Key Resources & Files
- `src/middleware/auth.ts`: Main logic
- `tests/auth.test.ts`: Failing tests
- [External API Doc](https://example.com/api)
# Session Refresh: <Current Focus>
## Overview
Brief description of the current task being worked on before the refresh.
## Progress Summary
An in-depth, highly detailed summary of what was successfully completed in the previous session, the exact current state, partial progress, context, and what is currently pending.
## Next Steps
- Define the immediate next steps the new agent should take based on user instructions.
## Key Resources & Files
- Provide direct paths to the files currently being worked on.