skills$openclaw/outreach
mrgoodb4.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

nameoutreach
descriptionManage sales engagement via Outreach API. Create sequences, manage prospects, and track activities. OpenClaw Skills integration.
ownermrgoodb
repositorymrgoodb/outreach
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @mrgoodb/outreach
last updatedFeb 7, 2026

Maintainer

mrgoodb

mrgoodb

Maintains outreach in the OpenClaw Skills directory.

View GitHub profile
File Explorer
2 files
.
_meta.json
269 B
SKILL.md
1.4 KB
SKILL.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"
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"}}}}}'
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.