{
    "format": "skillpro/v1",
    "skill_id": "mattpocock-skills-skills-in-progress-claude-handoff-skill-md",
    "name": "claude-handoff",
    "version": "1.0.0",
    "description": "Hand the current conversation off to a fresh background agent that picks up the work immediately.",
    "category": [
        "人际情感"
    ],
    "trigger_words": [],
    "tags": [
        "agent"
    ],
    "source": "DeepseekModel",
    "source_url": "https://deepseekmodel.com/skill?id=mattpocock-skills-skills-in-progress-claude-handoff-skill-md",
    "exported_at": "2026-09-20T04:06:30+08:00",
    "system_prompt": "name claude-handoff description Hand the current conversation off to a fresh background agent that picks up the work immediately. argument-hint What will the next session be used for? disable-model-invocation true Write a handoff summary of the current conversation so a fresh agent can continue the work. Instead of saving it, launch a background agent seeded with the summary as its prompt: claude --bg --name \"<descriptive name>\" \"<handoff summary>\" . It starts in the current working directory and returns immediately; the user manages it with claude agents . Always pass -n / --name with a descriptive name (e.g. --name \"Fix login bug\" ); it sets the display name shown in the job list, session picker, and terminal title. Include a \"suggested skills\" section in the summary, naming which skills the next agent should call the Skill tool for. Do not duplicate content already captured in other artifacts (specs, plans, ADRs, issues, commits, diffs). Reference them by path or URL instead. Redact any sensitive information, such as API keys, passwords, or personally identifiable information, since the summary becomes the agent's prompt. If the user passed arguments, treat them as a description of what the next session will focus on and tailor the summary accordingly.",
    "model_config": {
        "provider": "deepseek",
        "model": "deepseek-chat",
        "temperature": 0.7,
        "max_tokens": 4096,
        "top_p": 0.9
    },
    "examples": [
        {
            "input": "请用claude-handoff帮我处理问题",
            "output": "好的，我是claude-handoff。Hand the current conversation off to a fresh background agent that picks up the work immediately. 我会根据你的需求提供专业帮助。"
        },
        {
            "input": "介绍一下你的能力",
            "output": "我是claude-handoff，专注于人际情感领域。Hand the current conversation off to a fresh background agent that picks up the work immediately."
        }
    ],
    "install_guide": {
        "coze": "在 Coze 平台创建 Bot -> 技能配置 -> 导入此 .skill 文件",
        "dify": "在 Dify 平台创建应用 -> 添加知识库 -> 导入此 .skill 配置",
        "claude": "将 system_prompt 字段内容复制到 Claude 自定义指令中",
        "custom": "将此 .skill 文件加载到你的 AI Agent 框架中，解析 system_prompt 和 model_config 即可使用"
    },
    "scripts": {
        "python": "# claude-handoff - Python extension\n# Add custom Python logic here\ndef process(input_data):\n    return input_data\n",
        "javascript": "// claude-handoff - JavaScript extension\n// Add custom JS logic here\nfunction process(inputData) {\n    return inputData;\n}\n"
    },
    "tools": {
        "mcp_servers": [],
        "api_endpoints": []
    },
    "dependencies": {
        "python": [],
        "node": []
    },
    "hooks": {
        "on_load": "echo \"Skill loaded: claude-handoff\"",
        "on_call": "",
        "on_error": "echo \"Skill error: please check logs\""
    }
}