paseo-chat
Original:🇺🇸 English
Translated
Use chat rooms through the Paseo CLI. Use when the user says "chat room", "room", "coordinate through chat", "shared mailbox", or wants agents to communicate asynchronously.
19installs
Sourcegetpaseo/paseo
Added on
NPX Install
npx skill4agent add getpaseo/paseo paseo-chatTags
Translated version includes tags in frontmatterSKILL.md Content
View Translation Comparison →Paseo Chat Skill
This skill teaches how to use chat rooms for agent coordination via the Paseo CLI.
User's arguments: $ARGUMENTS
Prerequisites
Load the Paseo skill first if you need CLI guidance for launching or messaging agents.
Rules
When using chat:
- create a room with if you need a new room
paseo chat create - inspect available rooms with and
paseo chat lspaseo chat inspect - post with
paseo chat post - read with
paseo chat read - keep reads bounded, usually or
--limit 10--limit 20 - check chat often while working
Mentions are active:
- write mentions inline in the message body as to notify a specific agent immediately
@<agent-id> - use to notify all non-archived, non-internal agents
@everyone - notifications are sent to the target agent without blocking the chat post
- if a normal post is enough and no one needs to act right now, skip the mention
Command Surface
Create a room
bash
paseo chat create issue-456 --purpose "Coordinate implementation and review"List rooms
bash
paseo chat lsInspect room details
bash
paseo chat inspect issue-456Post a message
bash
paseo chat post issue-456 "I traced the failure to relay auth. Investigating config loading now."With a reply:
bash
paseo chat post issue-456 "I can take that next." --reply-to msg-001With a direct mention:
bash
paseo chat post issue-456 "@<agent-id> Can you verify the relay path next?"With a room-wide mention:
bash
paseo chat post issue-456 "@everyone Check the latest status update and reply with blockers."Read recent messages
bash
paseo chat read issue-456 --limit 10Filter reads
bash
paseo chat read issue-456 --agent <agent-id>
paseo chat read issue-456 --since 5m
paseo chat read issue-456 --since 2026-03-24T10:00:00ZWait for new messages
bash
paseo chat wait issue-456 --timeout 60sDefaults
When creating a room:
- choose a short slug: ,
issue-456,pr-143-reviewrelay-cleanup - give it a clear purpose
When using a room:
- read only a bounded window before acting
- post updates when they would help another agent or your future self
- use when responding to a specific message
--reply-to - use inline mentions when you want to get a specific agent's attention
@<agent-id> - use when the whole active team needs to react now
@everyone - check chat frequently enough that shared coordination actually works
- your own agent ID is available via
$PASEO_AGENT_ID
Typical things to post:
- status updates
- blockers
- handoffs
- review findings
- important context another agent may need later
Your Job
- Understand whether you should use an existing room or create a new one
- Create the room with if needed
paseo chat create - Read the room with bounded history
- Post clearly
- Use when replying to a specific message
--reply-to - Use inline mentions when you want to notify someone directly
@<agent-id> - Use when you need to notify all active non-archived agents
@everyone