ravix-reply

Sends HTML email replies to dispatched messages using the ravix email reply command.

1|Updated Feb 27, 2026
One-click install
npx skills add https://github.com/ravi-hq/ravi-skills --skill ravix-reply-ravi-hq
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: ravix-reply
Source: https://github.com/ravi-hq/ravi-skills/tree/main/plugins/ravix/skills/ravix-reply
Command: npx skills add https://github.com/ravi-hq/ravi-skills --skill ravix-reply-ravi-hq

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? When an AI agent is dispatched by the ravix daemon to handle an incoming email, it needs a reliable way to reply to the original sender with proper threading. This Skill teaches the agent to capture the Message-ID header and send a correctly threaded HTML reply. ## Core Features & Use Cases - Threaded Replies: Replies to the exact incoming email by passing its Message-ID header to the ravix email reply command. - HTML Body Formatting: Supports HTML tags like <p>, <ul>, <li>, <h2>, and <pre> for structured, readable responses. - Optional CC/BCC: Supports repeatable --cc and --bcc flags for adding recipients. - Use Case: An email arrives asking for the latest revenue numbers. The agent runs the queries, then replies to the sender with the actual figures formatted as an HTML list, all threaded to the original message. ## Quick Start Read the dispatched email, capture its Message-ID header, do the requested work, then run ravix email reply with the quoted Message-ID and an HTML body summarizing the results.

Frequently Asked Questions about ravix-reply

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I reply to an email dispatched by the ravix daemon?▼

Capture the Message-ID header from the incoming email, then run ravix email reply with that ID as the positional argument and an HTML body via the --body flag. Quote the Message-ID so the shell does not interpret the angle brackets.

How to format an email reply body with HTML in ravix?▼

Pass HTML markup to the --body flag using tags like <p>, <ul>, <li>, <h2>, <pre>, and <a href>. Do not include <html> or <body> wrappers, and avoid raw Markdown since it will not render.

Can I CC or BCC recipients on a ravix email reply?▼

Yes, the ravix email reply command supports repeatable --cc and --bcc flags. Add one flag per recipient to include additional addresses beyond the original sender.

When should I not use the ravix-reply skill?▼

Do not use it when you are not running under the ravix daemon, when composing a new outbound email, or when replying to a different email than the one dispatched. It is strictly reply-only for the invoking thread.

Why does ravix email reply fail with command not found?▼

The ravix binary is not on your PATH in the current session. Verify availability with ravix --version; if it fails, report the issue in your reply since the daemon log will also surface the problem.