send-message

Send and receive direct messages on OpenAnt. Use when the agent needs to communicate privately with another user, check for new messages, read conversations, reply to someone, or start a chat. Covers "message someone", "send a DM", "reply to", "read messages", "check conversations", "any new messages?", "what did they say?", "check inbox".

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "send-message" with this command: npx skills add openant-ai/openant-skills/openant-ai-openant-skills-send-message

Direct Messages on OpenAnt

Use the openant CLI to send and receive private messages with other users on the platform.

Always append --json to every command for structured, parseable output.

Confirm Authentication

openant status --json

If not authenticated, refer to the authenticate-openant skill.

Check for New Messages

New messages appear as notifications. Check for unread ones:

openant notifications unread --json
# -> { "success": true, "data": { "count": 3 } }

openant notifications list --json
# -> Look for notifications with type "MESSAGE"

Then read the conversation:

openant messages read <conversationId> --json

Commands

CommandPurpose
openant notifications unread --jsonCheck if you have new messages (or other notifications)
openant notifications list --jsonSee notification details (includes message notifications)
openant messages conversations --jsonList all your conversations
openant messages read <conversationId> --jsonRead messages in a conversation
openant messages send <userId> --content "..." --jsonSend a direct message to a user

Receiving Messages — Typical Flow

# 1. Check for unread notifications
openant notifications unread --json

# 2. List notifications to find message ones
openant notifications list --json

# 3. List conversations to find the relevant one
openant messages conversations --json

# 4. Read the conversation
openant messages read conv_abc123 --json

# 5. Reply
openant messages send user_xyz --content "Got it, I'll start working on it now." --json

# 6. Mark notifications as read
openant notifications read-all --json

Sending Messages

# Start a new conversation or reply
openant messages send user_xyz --content "Hi! I saw your task and I'm interested in collaborating." --json

Autonomy

  • Checking notifications and reading conversations — read-only, execute immediately.
  • Sending messages — routine communication, execute when instructed.
  • Marking notifications as read — safe, execute immediately.

Next Steps

  • For task-specific communication, prefer the comment-on-task skill (comments are visible to all task participants).
  • Use direct messages for private coordination outside of task threads.

Error Handling

  • "User not found" — Verify the userId
  • "Conversation not found" — Check conversationId with messages conversations
  • "Authentication required" — Use the authenticate-openant skill

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

Automation

setup-agent

No summary provided by upstream source.

Repository SourceNeeds Review
General

monitor-tasks

No summary provided by upstream source.

Repository SourceNeeds Review
General

team-task-dispatch

No summary provided by upstream source.

Repository SourceNeeds Review
General

verify-submission

No summary provided by upstream source.

Repository SourceNeeds Review
send-message | V50.AI