6.2k★by mrgoodb
fullstory – OpenClaw Skill
fullstory is an OpenClaw Skills integration for coding workflows. Access session replays and analytics via FullStory API. Debug user experiences.
6.2k stars8.5k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026coding
Skill Snapshot
| name | fullstory |
| description | Access session replays and analytics via FullStory API. Debug user experiences. OpenClaw Skills integration. |
| owner | mrgoodb |
| repository | mrgoodb/fullstory |
| language | Markdown |
| license | MIT |
| topics | |
| security | L1 |
| install | openclaw add @mrgoodb/fullstory |
| last updated | Feb 7, 2026 |
Maintainer

File Explorer
2 files
.
_meta.json
271 BSKILL.md
1.0 KBSKILL.md
name: fullstory description: Access session replays and analytics via FullStory API. Debug user experiences. metadata: {"clawdbot":{"emoji":"📹","requires":{"env":["FULLSTORY_API_KEY"]}}}
FullStory
Digital experience analytics.
Environment
export FULLSTORY_API_KEY="xxxxxxxxxx"
Search Sessions
curl -X POST "https://api.fullstory.com/v2/sessions/search" \
-H "Authorization: Basic $FULLSTORY_API_KEY" \
-H "Content-Type: application/json" \
-d '{"filter": {"type": "And", "filters": [{"type": "Event", "name": "Error"}]}}'
Get Session
curl "https://api.fullstory.com/v2/sessions/{sessionId}" \
-H "Authorization: Basic $FULLSTORY_API_KEY"
Set User Properties
curl -X POST "https://api.fullstory.com/v2/users" \
-H "Authorization: Basic $FULLSTORY_API_KEY" \
-H "Content-Type: application/json" \
-d '{"uid": "user123", "properties": {"displayName": "John Doe", "email": "john@example.com"}}'
Links
- Dashboard: https://app.fullstory.com
- Docs: https://developer.fullstory.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 fullstory?
Run openclaw add @mrgoodb/fullstory in your terminal. This installs fullstory 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/fullstory. Review commits and README documentation before installing.
