wormhole
스타11
포크2
업데이트2026년 1월 25일 08:49
Sync work between AI agents. Log actions, manage sessions, detect conflicts.
설치
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SKILL.md
readonly메뉴
Sync work between AI agents. Log actions, manage sessions, detect conflicts.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
| name | wormhole |
| description | Sync work between AI agents. Log actions, manage sessions, detect conflicts. |
Shared memory for AI agents. Log work so other agents know what you did.
| Situation | Tool |
|---|---|
| Starting work | start_session |
| After edits/commands | log |
| Resuming work | get_recent |
| Before editing | check_conflicts |
| Done | end_session |
log({ action: "file_edit", agent_id: "claude-code", project_path: ".", content: { file_path: "src/x.ts", description: "Added auth" }})
Actions: file_edit, cmd_run, decision, test_result, todos
start_session({ project_path: ".", agent_id: "claude-code", name: "bugfix-auth" })
end_session({ session_id: "abc", summary: "Fixed timeout" })
get_recent({ project_path: "." })
check_conflicts({ project_path: ".", files: ["src/auth.ts"] })
get_recent when resuming