Agent skill
wormhole
Sync work between AI agents. Log actions, manage sessions, detect conflicts.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/skills/other/wormhole
SKILL.md
Wormhole
Shared memory for AI agents. Log work so other agents know what you did.
When to Use
| Situation | Tool |
|---|---|
| Starting work | start_session |
| After edits/commands | log |
| Resuming work | get_recent |
| Before editing | check_conflicts |
| Done | end_session |
Tools
log
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 / end_session
start_session({ project_path: ".", agent_id: "claude-code", name: "bugfix-auth" })
end_session({ session_id: "abc", summary: "Fixed timeout" })
get_recent
get_recent({ project_path: "." })
check_conflicts
check_conflicts({ project_path: ".", files: ["src/auth.ts"] })
Tips
- Always start a session first
- Log significant actions only
- Use
get_recentwhen resuming
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?