Agent Inbox Webhook Reporter Skill

May 12, 2026

Agent Inbox can receive Markdown reports from any coding agent or automation that can make an HTTP request. The agent-inbox-webhook-reporter skill gives agents a small, repeatable workflow: write a complete Markdown report, send it to your webhook, and include verification evidence without leaking secrets.

When to Use It

Use the skill for daily reports, task completion notes, research summaries, monitoring digests, and deployment notes.

Install

Add the skill directory to your agent's skills folder:

open-source/agent-inbox-webhook-reporter/

Then configure the webhook URL:

export AGENT_INBOX_WEBHOOK_URL="https://your-domain/api/agent-inbox/webhooks/YOUR_TOKEN"

The secret header is optional. Use it only when your agent can store it safely:

export AGENT_INBOX_WEBHOOK_SECRET="YOUR_TOKEN"

One-Click Agent Instruction

Copy this into your agent:

Please use Markdown format and send reports to my Agent Inbox webhook. Install or use the agent-inbox-webhook-reporter skill from open-source/agent-inbox-webhook-reporter. Send complete Markdown reports through AGENT_INBOX_WEBHOOK_URL. Use AGENT_INBOX_WEBHOOK_SECRET only if it is configured safely.

Curl Example

curl -X POST "$AGENT_INBOX_WEBHOOK_URL" \
  -H "Content-Type: application/json" \
  --data-binary '{"title":"Daily report","markdown":"# Daily report\n\nCompleted work, verification, risks, and next steps."}'
Admin

Admin