ワンクリックで
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 ページを確認してインストールできます。
SOC 職業分類に基づく
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.
| 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.