一键导入
handoff
Opt-in session continuity — save context before /clear for injection on next session start
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Opt-in session continuity — save context before /clear for injection on next session start
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Dispatch a background worker with role-templated prompt and auto-populated collision fences
Comprehensive system health monitoring — checks agent performance, database, Kafka topics, pattern discovery, and service status across the ONEX platform
Orchestrate a Claude Code agent team to autonomously work a Linear epic across multiple repos
Run DoD evidence checks against a ticket contract and generate a verification receipt
Autonomous per-ticket pipeline that chains ticket-work, local-review, PR creation, CI watching, PR review loop, integration verification gate, and auto-merge into a single unattended workflow with Slack notifications and policy guardrails
Full autonomous audit-debug-fix loop for all dashboard pages — Playwright recon, parallel systematic-debug, fix, PR, Linear ticket, re-audit, iterate until clean. Supports local and cloud targets with optional post-fix redeployment.
| name | handoff |
| description | Opt-in session continuity — save context before /clear for injection on next session start |
| version | 1.0.0 |
| level | standard |
| debug | false |
| category | workflow |
| tags | ["session","continuity","handoff","context","clear"] |
| author | OmniClaude Team |
| args | [{"name":"--message","description":"Optional message for the next session (free text context)","required":false}] |
Save session context and clear. The next session starts with continuity.
/clear alone stays clean — no surprise injection.
/handoff
/handoff --message "Continue implementing the auth middleware"
/handoff captures current session context (active ticket, branch, recent commits, working files)~/.claude/handoff/{cwd_hash}-{repo_slug}.json/clear)OMNICLAUDE_SESSION_HANDOFF=1), session-start.sh:
additionalContext.tmp suffix first, then mv (atomic on POSIX)Requires OMNICLAUDE_SESSION_HANDOFF=1 in ~/.omnibase/.env or shell environment.
Default is OFF (0). Without the toggle, session-start.sh skips handoff injection entirely.
{
"version": 1,
"created_at": "2026-03-15T12:00:00Z",
"cwd": "/path/to/project",
"cwd_hash": "a1b2c3d4",
"repo_slug": "omniclaude",
"message": "Continue implementing the auth middleware",
"context": {
"active_ticket": "OMN-1234",
"branch": "jonahgabriel/omn-1234-auth-middleware",
"recent_commits": ["abc1234 fix: auth header parsing", "def5678 feat: add middleware skeleton"],
"working_files": ["src/auth/middleware.py", "tests/test_middleware.py"]
}
}