4.9k★by mrgoodb
outreach – OpenClaw Skill
outreach is an OpenClaw Skills integration for writing workflows. Manage sales engagement via Outreach API. Create sequences, manage prospects, and track activities.
4.9k stars4.5k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026writing
Skill Snapshot
| name | outreach |
| description | Manage sales engagement via Outreach API. Create sequences, manage prospects, and track activities. OpenClaw Skills integration. |
| owner | mrgoodb |
| repository | mrgoodb/outreach |
| language | Markdown |
| license | MIT |
| topics | |
| security | L1 |
| install | openclaw add @mrgoodb/outreach |
| last updated | Feb 7, 2026 |
Maintainer

File Explorer
2 files
.
_meta.json
269 BSKILL.md
1.4 KBSKILL.md
name: outreach description: Manage sales engagement via Outreach API. Create sequences, manage prospects, and track activities. metadata: {"clawdbot":{"emoji":"📧","requires":{"env":["OUTREACH_ACCESS_TOKEN"]}}}
Outreach
Sales engagement platform.
Environment
export OUTREACH_ACCESS_TOKEN="xxxxxxxxxx"
List Prospects
curl "https://api.outreach.io/api/v2/prospects" \
-H "Authorization: Bearer $OUTREACH_ACCESS_TOKEN" \
-H "Content-Type: application/vnd.api+json"
Create Prospect
curl -X POST "https://api.outreach.io/api/v2/prospects" \
-H "Authorization: Bearer $OUTREACH_ACCESS_TOKEN" \
-H "Content-Type: application/vnd.api+json" \
-d '{"data": {"type": "prospect", "attributes": {"firstName": "John", "lastName": "Doe", "emails": ["john@example.com"]}}}'
List Sequences
curl "https://api.outreach.io/api/v2/sequences" \
-H "Authorization: Bearer $OUTREACH_ACCESS_TOKEN"
Add to Sequence
curl -X POST "https://api.outreach.io/api/v2/sequenceStates" \
-H "Authorization: Bearer $OUTREACH_ACCESS_TOKEN" \
-H "Content-Type: application/vnd.api+json" \
-d '{"data": {"type": "sequenceState", "relationships": {"prospect": {"data": {"type": "prospect", "id": "123"}}, "sequence": {"data": {"type": "sequence", "id": "456"}}}}}'
Links
- Dashboard: https://app.outreach.io
- Docs: https://api.outreach.io/api/v2/docs
README.md
No README available.
Permissions & Security
Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.
Requirements
- OpenClaw CLI installed and configured.
- Language: Markdown
- License: MIT
- Topics:
FAQ
How do I install outreach?
Run openclaw add @mrgoodb/outreach in your terminal. This installs outreach into your OpenClaw Skills catalog.
Does this skill run locally or in the cloud?
OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.
Where can I verify the source code?
The source repository is available at https://github.com/openclaw/skills/tree/main/skills/mrgoodb/outreach. Review commits and README documentation before installing.
