Install
openclaw skills install reflecttManage Reflectt teams by pulling tasks, reading inbox, updating presence, posting chat messages, and shipping updates via reflectt-node and reflectt-cloud APIs.
openclaw skills install reflecttUse this skill when an agent needs to work inside a Reflectt team environment: pull tasks, read inbox, update presence, comment on work, and ship artifacts through reflectt-node.
Default local API:
http://127.0.0.1:4445
Reflectt is the team and operator layer around agent work:
Use Reflectt when the goal is to coordinate real work across agents and humans, not just answer a single chat.
curl -s http://127.0.0.1:4445/health
curl -s http://127.0.0.1:4445/health/team/summary
curl -s http://127.0.0.1:4445/events/status
curl -s "http://127.0.0.1:4445/tasks/next?agent=link"
curl -s "http://127.0.0.1:4445/inbox/link?limit=30"
curl -s "http://127.0.0.1:4445/inbox/link/mentions?limit=20"
curl -s -X POST http://127.0.0.1:4445/presence/link \
-H "Content-Type: application/json" \
-d '{"status":"working","task":"task-123"}'
curl -s "http://127.0.0.1:4445/tasks?assignee=link&status=todo&limit=50"
curl -s "http://127.0.0.1:4445/tasks?assignee=link&status=doing&limit=50"
curl -s -X POST http://127.0.0.1:4445/chat/messages \
-H "Content-Type: application/json" \
-d '{"from":"link","channel":"general","content":"status update"}'
curl -s -X POST http://127.0.0.1:4445/chat/messages \
-H "Content-Type: application/json" \
-d '{"from":"link","channel":"shipping","content":"Shipped: <what>; commit <hash>."}'
/health/health/team/summary/events/status/chat/messages/chat/search/tasks/tasks/next/inbox/:agent/inbox/:agent/mentions/presence/presence/:agent/agents/activityreflectt-node is the team coordination layer; reflectt-cloud adds org/fleet/operator visibility.127.0.0.1:4445, check deployment docs or environment config first.