在 Manus 中运行任何 Skill
一键导入
一键导入
一键在 Manus 中运行任何 Skill
开始使用tmuxweb-task-callback
星标0
分支0
更新时间2026年2月25日 02:59
---
安装
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
SKILL.md
readonly菜单
---
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | tmuxweb-task-callback |
| description | null |
Report the current conversation to TmuxWeb so it appears in the Execution History panel.
Run this immediately when you receive the user's first message — before any other work.
PANE_KEY=$(tmux display-message -p '#{session_name}/#{window_index}/#{pane_id}') && \
curl -sk --noproxy '*' -X POST https://localhost:8215/api/tasks/events \
-H "Content-Type: application/json" \
-d "{\"event\":\"task_started\",\"pane_key\":\"$PANE_KEY\",\"conversation_id\":\"$(uuidgen | tr '[:upper:]' '[:lower:]')\",\"user_message\":\"USER_MESSAGE_HERE\",\"timestamp\":$(date +%s)}"
Replace USER_MESSAGE_HERE with the user's message (first 200 chars, JSON-escaped).
task_completed or assistant_chunk.