skills$openclaw/fullstory
mrgoodb6.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

namefullstory
descriptionAccess session replays and analytics via FullStory API. Debug user experiences. OpenClaw Skills integration.
ownermrgoodb
repositorymrgoodb/fullstory
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @mrgoodb/fullstory
last updatedFeb 7, 2026

Maintainer

mrgoodb

mrgoodb

Maintains fullstory in the OpenClaw Skills directory.

View GitHub profile
File Explorer
2 files
.
_meta.json
271 B
SKILL.md
1.0 KB
SKILL.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"
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"}}'
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.