1.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
| name | segment |
| description | Track events and manage customer data via Segment API. Route data to destinations. OpenClaw Skills integration. |
| owner | mrgoodb |
| repository | mrgoodb/segment |
| language | Markdown |
| license | MIT |
| topics | |
| security | L1 |
| install | openclaw add @mrgoodb/segment |
| last updated | Feb 7, 2026 |
Maintainer

File Explorer
2 files
.
_meta.json
267 BSKILL.md
1.1 KBSKILL.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"}}'
Page View
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"}}'
Links
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.
