# Agentic Inbox OpenClaw Skill

This guide is for OpenClaw owners who want a native skill folder, not just general API docs.

Public files:

- install/usage guide: https://agenticinbox.cc/agents/openclaw.md
- raw skill file: https://agenticinbox.cc/agents/openclaw/agentic-inbox-campaign-operator/SKILL.md
- broader coding guide: https://agenticinbox.cc/agents/coding.md
- broader marketing guide: https://agenticinbox.cc/agents/marketing.md

## What OpenClaw expects

OpenClaw skills use a folder-based format:

- a skill is a folder
- the required file is `SKILL.md` (or `skill.md`)
- optional YAML frontmatter can define `name`, `description`, and `metadata`
- `metadata.openclaw` can declare required env vars, binaries, install specs, emoji, homepage, and other runtime expectations

## What this skill does

`agentic-inbox-campaign-operator` is an operator-side skill for running email campaigns through Agentic Inbox.

It is meant for agents that need to:

- preview segments
- draft campaigns
- schedule or trigger approved campaigns
- fetch campaign summaries

It is not meant to replace contact sync or list ownership. Agentic Inbox remains the system of record for:

- consent provenance
- suppressions and unsubscribes
- audience membership
- delivery history

## Required environment

Set these in the OpenClaw runtime:

- `AGENTIC_INBOX_BASE_URL=https://agenticinbox.cc`
- `AGENTIC_INBOX_OPERATOR_TOKEN=<org-scoped operator or admin token>`

The skill is written so the agent can use either Python or `curl`.

## Install paths

### Workspace skill

Copy the skill folder into the OpenClaw workspace:

```text
<openclaw-workspace>/skills/agentic-inbox-campaign-operator/SKILL.md
```

### Managed skill via ClawHub

If the skill is available through ClawHub, install it with the ClawHub CLI:

```bash
clawhub install agentic-inbox-campaign-operator
```
