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.