Install
openclaw skills install groupmeBridge OpenClaw to GroupMe for team communication. Send scheduled messages, broadcast announcements, run shift reminders, and automate group messaging via cron jobs. Use when: you want to send messages to a GroupMe group on a schedule or on-demand, automate team announcements, or create notification workflows.
openclaw skills install groupmeConnect OpenClaw to any GroupMe group for automated messaging, announcements, and team communication workflows.
Base URL: https://api.groupme.com/v3
Authentication: Token passed as query parameter ?token=ACCESS_TOKEN
Key Endpoints:
| Endpoint | Purpose |
|---|---|
POST /bots/post | Send a message |
GET /groups | List your groups |
GET /groups/:id/messages | Get group messages |
Before using this skill, you need:
Create a file at ~/.openclaw/secrets/groupme.env:
GROUPME_ACCESS_TOKEN="your_access_token_here"
GROUPME_BOT_ID="your_bot_id_here"
GROUPME_GROUP_ID="your_group_id_here" # Optional — only needed to discover group IDs, not required for sending
Never commit this file to git.
Run this command (replace with your token):
curl -s "https://api.groupme.com/v3/groups?token=YOUR_TOKEN&per_page=10"
Look for your group in the response — the id field is your Group ID.
curl -X POST \
-H "Content-Type: application/json" \
-d '{"bot_id": "YOUR_BOT_ID", "text": "Your message here"}' \
"https://api.groupme.com/v3/bots/post?token=YOUR_ACCESS_TOKEN"
curl -X POST \
-H "Content-Type: application/json" \
-d '{"bot_id": "YOUR_BOT_ID", "text": "Line one\nLine two\nLine three"}' \
"https://api.groupme.com/v3/bots/post?token=YOUR_ACCESS_TOKEN"
Tell OpenClaw to send a message:
"Send a message to the group: Don't forget, team meeting at 3pm today"
"Post this to the group: Great job everyone on a successful week!"
Daily shift reminder (Mon-Fri at 8am):
{
"schedule": {
"kind": "cron",
"expr": "0 8 * * 1-5",
"tz": "America/New_York"
},
"payload": {
"kind": "systemEvent",
"text": "Send daily shift reminder to GroupMe"
},
"sessionTarget": "isolated"
}
Weekly team announcement (Monday at 9am):
{
"schedule": {
"kind": "cron",
"expr": "0 9 * * 1",
"tz": "America/New_York"
},
"payload": {
"kind": "systemEvent",
"text": "Send weekly team announcement to GroupMe"
},
"sessionTarget": "isolated"
}
| Workflow | Description |
|---|---|
| Shift Reminders | Fire 1hr before each shift |
| Team Announcements | Weekly goals, meeting changes |
| Emergency Alerts | One-command urgent broadcast |
| Recognition Posts | Kudos for good work |
| Coverage Requests | "Need someone to cover 3-5pm" |
| Daily Briefs | Industry news, daily stats |
| Polling | "Thumbs up if you can work Saturday" |
{
"bot_id": "BOT_ID",
"text": "Your message here"
}
Images must first be uploaded to GroupMe's image service. See https://dev.groupme.com/docs/image_service
{
"bot_id": "BOT_ID",
"text": "Check out the new schedule!",
"attachments": [{
"type": "image",
"url": "https://i.groupme.com/xxxxx.large"
}]
}
{
"bot_id": "BOT_ID",
"text": "Heading to the location",
"attachments": [{
"type": "location",
"lat": "40.738206",
"lng": "-73.993285",
"name": "Location Name"
}]
}
~/.openclaw/skills/groupme/
├── SKILL.md ← this file
├── scripts/
│ └── send-message.sh ← optional shell helper
~/.openclaw/secrets/groupme.env~/.openclaw/secrets/groupme.env