Manusで任意のスキルを実行
ワンクリックで
ワンクリックで
ワンクリックでManusで任意のスキルを実行
始める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.