name: "tx-messaging-pins" description: "Send agent messages, acknowledge inbox items, and persist shared context pins. Use when working in Codex and the user needs tx commands from this area." metadata: short-description: "Send agent messages, acknowledge inbox items, and persist shared context pins."
tx Messaging And Pins
Use when coordinating agents through channels or syncing pinned context into agent files.
Quick Start
tx msg inbox <channel>tx msg send <channel> "message"tx pin sync
Included Commands
tx ack: Acknowledge a messagetx ack all: Acknowledge all pending messages on a channeltx inbox: Read messages from a channeltx msg: Agent messagingtx msg ack: Acknowledge a messagetx msg gc: Garbage collect old messagestx msg inbox: Read messages from a channeltx msg pending: Count pending messagestx msg send: Send a message to a channeltx outbox gc: Garbage collect old messagestx outbox pending: Count pending messagestx pin: Context pins for agent memory injectiontx pin get: Show a pin's contenttx pin list: List all context pinstx pin remove: Remove a context pintx pin rm: Remove a context pintx pin set: Create or update a context pintx pin sync: Re-sync all pins to target filestx pin targets: Show or set target filestx send: Send a message to a channel
Full Help
Read references/commands.md for the full generated CLI help text for this skill's commands.
Search And Shell Fixes
When working in Codex, prefer rg -n <pattern> <path> and rg --files <path> over broad grep -r or fragile find pipelines.
If a shell/search command fails because of malformed flags, truncated paths, or broken quotes:
- rerun it as a smaller
rgcommand with an explicit directory - avoid partial paths like
node_modulor unterminated quotes - replace
grep -rwithrg -nunlessrgis unavailable - replace broad
findprobes withrg --fileswhen you are really locating source files