runtime/skills/builtin/send-message/SKILL.md
Send a message to the chat immediately without waiting for the current task to finish. Useful for acknowledging requests or sending progress updates while working.
npx skillsauth add rcarmo/piclaw send-messageInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Write a JSON file to the piclaw IPC directory to send a message right away.
cat > "$PICLAW_DATA/ipc/messages/msg_$(date +%s).json" <<EOF
{
"type": "message",
"chatJid": "$PICLAW_CHAT_JID",
"text": "Your message here",
"media": [
{
"path": "/absolute/path/to/chart.svg",
"content_type": "image/svg+xml",
"inline": true
}
]
}
EOF
codemedia array
{ path, content_type?, filename?, inline? }path is filesystem path to an existing filecontent_type and filename override detected valuesinline: true hints image rendering inside the message cardPICLAW_DATA — piclaw data directory (contains ipc/messages/)PICLAW_CHAT_JID — JID of the chat that triggered this invocationdocumentation
Resolve Teams or SharePoint document links to canonical metadata.
development
Search the web via SearXNG and optionally convert result pages to Markdown.
development
Search via SearXNG, fetch top results, and return quick summaries plus markdown.
testing
Fetch a user's recent tweets (tweets, replies, retweets) using Playwright + Nitter fallbacks and produce compact JSON/Markdown summaries.