segment
Track events and manage customer data via Segment API. Route data to destinations.
Install via CLI (Recommended)
clawhub install openclaw/skills/skills/mrgoodb/segmentSegment
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": "[email protected]", "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
Metadata
Not sure this is the right skill?
Describe what you want to build — we'll match you to the best skill from 16,000+ options.
Find the right skillPaste this into your clawhub.json to enable this plugin.
{
"plugins": {
"official-mrgoodb-segment": {
"enabled": true,
"auto_update": true
}
}
}Related Skills
onelogin
Manage users and apps via OneLogin API. Handle SSO and identity management.
onedrive
Manage OneDrive files and folders via Microsoft Graph. Upload, download, and share files.
google-sheets
Read and write Google Sheets data. Create spreadsheets, update cells, and manage worksheets via Sheets API.
postmark
Send transactional emails with high deliverability via Postmark API. Manage templates, track bounces, and view analytics.
smartsheet
Manage sheets, rows, and columns via Smartsheet API. Automate spreadsheet workflows.