skills$openclaw/segment
mrgoodb1.4k

by mrgoodb

segment – OpenClaw Skill

segment is an OpenClaw Skills integration for writing workflows. Track events and manage customer data via Segment API. Route data to destinations.

1.4k stars4.3k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026writing

Skill Snapshot

namesegment
descriptionTrack events and manage customer data via Segment API. Route data to destinations. OpenClaw Skills integration.
ownermrgoodb
repositorymrgoodb/segment
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @mrgoodb/segment
last updatedFeb 7, 2026

Maintainer

mrgoodb

mrgoodb

Maintains segment in the OpenClaw Skills directory.

View GitHub profile
File Explorer
2 files
.
_meta.json
267 B
SKILL.md
1.1 KB
SKILL.md

name: segment description: Track events and manage customer data via Segment API. Route data to destinations. metadata: {"clawdbot":{"emoji":"📊","requires":{"env":["SEGMENT_WRITE_KEY"]}}}

Segment

Customer data platform.

Environment

export SEGMENT_WRITE_KEY="xxxxxxxxxx"

Track Event

curl -X POST "https://api.segment.io/v1/track" \
  -u "$SEGMENT_WRITE_KEY:" \
  -H "Content-Type: application/json" \
  -d '{"userId": "user123", "event": "Order Completed", "properties": {"revenue": 99.99}}'

Identify User

curl -X POST "https://api.segment.io/v1/identify" \
  -u "$SEGMENT_WRITE_KEY:" \
  -H "Content-Type: application/json" \
  -d '{"userId": "user123", "traits": {"email": "user@example.com", "plan": "premium"}}'
curl -X POST "https://api.segment.io/v1/page" \
  -u "$SEGMENT_WRITE_KEY:" \
  -H "Content-Type: application/json" \
  -d '{"userId": "user123", "name": "Home", "properties": {"url": "https://example.com"}}'
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 segment?

Run openclaw add @mrgoodb/segment in your terminal. This installs segment 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/segment. Review commits and README documentation before installing.