ソース情報
- リポジトリ
- notque/vexjoy-agent
- ソースの最終更新活動
- 2026年7月5日 20:41
- 検出された SKILL.md の言語
- 英語
- スター
- 415
- フォーク
- 44
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/notque/vexjoy-agent --skill session-handoffコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
SOC 職業分類に基づく
SKILL.md を表示中
| name | session-handoff |
| description | Package session state for the next agent, or rehydrate it at start. |
| user_invocable | false |
| allowed-tools | ["Read","Bash","Grep","Glob"] |
| routing | {"triggers":["hand off this session","hand off to the next agent","package session state","state package for the next agent","session pickup","rehydrate session state"],"not_for":"plan-artifact pause/resume (HANDOFF.json plus pause.md/resume.md) — that is planning. This skill packages inline agent-to-agent state: working tree, PR/CI, live processes, checks.","category":"process","pairs_with":["pr-workflow"]} |
Two modes sharing one state contract. HANDOFF packages current work so the next agent (or future session) resumes without re-discovery. PICKUP rehydrates from that package at session start. Pick the mode from intent: ending or pausing work = HANDOFF; starting on existing work = PICKUP.
Produce a concise bullet package with these sections, in order. Every claim comes from a command you ran this session — re-run when stale, because a wrong handoff costs more than no handoff.
git status -sb summary; note local commits not yet pushed and whether you are in a worktree ( contains ).pwd.claude/worktrees/gh pr checks <num> when a PR exists).ps auxww | grep -E '<your-process>', plus a copy-paste attach or log-tail command (tail -f <logfile>, jobs -l). Redact secrets in command lines.Gate: every live process has a copy-paste command; every pending step is ordered. Output format: bullet list, Dense-Complete — short enough to paste into a PR comment or session note.
Rehydrate in this order, then act.
git status -sb; confirm branch, local commits, worktree path.gh pr view <num> --comments (derive the PR from the branch when unnumbered); note failing checks.Gate: branch, PR state, and first action are confirmed before any edit. Report discrepancies between the handoff and observed state; observed state wins.
skills/meta/do/references/worktree-rules.md): verify CWD, feature branch first.<redacted>.Cause: job exited between sessions. Solution: check its log file for exit status, record the finding, drop the attach step.
Cause: another agent or the user moved the worktree. Solution: report the difference and proceed from observed state.