← All skills
Tencent SkillHub Β· Productivity

Fulcra Context

Access your human's personal context data (biometrics, sleep, activity, calendar, location) via the Fulcra Life API and MCP server. Requires human's Fulcra account + OAuth2 consent.

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Access your human's personal context data (biometrics, sleep, activity, calendar, location) via the Fulcra Life API and MCP server. Requires human's Fulcra account + OAuth2 consent.

⬇ 0 downloads β˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
README.md, SECURITY.md, SKILL.md, scripts/fulcra_auth.py

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete.

Upgrade existing

I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.2.0

Documentation

ClawHub primary doc Primary doc: SKILL.md 22 sections Open source page

Fulcra Context β€” Personal Data for AI Partners

Give your agent situational awareness. With your human's consent, access their biometrics, sleep, activity, location, and calendar data from the Fulcra Life API.

What This Enables

With Fulcra Context, you can: Know how your human slept β†’ adjust morning briefing intensity See heart rate / HRV trends β†’ detect stress, suggest breaks Check location β†’ context-aware suggestions (home vs. office vs. traveling) Read calendar β†’ proactive meeting prep, schedule awareness Track workouts β†’ recovery-aware task scheduling

Privacy Model

OAuth2 per-user β€” your human controls exactly what data you see Their data stays theirs β€” Fulcra stores it, you get read access only Consent is revocable β€” they can disconnect anytime NEVER share your human's Fulcra data publicly without explicit permission

Option 1: MCP Server (Recommended)

Use Fulcra's hosted MCP server at https://mcp.fulcradynamics.com/mcp (Streamable HTTP transport, OAuth2 auth). Your human needs a Fulcra account (free via the Context iOS app or Portal). Claude Desktop config (claude_desktop_config.json): { "mcpServers": { "fulcra_context": { "command": "npx", "args": ["-y", "mcp-remote", "https://mcp.fulcradynamics.com/mcp"] } } } Or run locally via uvx: { "mcpServers": { "fulcra_context": { "command": "uvx", "args": ["fulcra-context-mcp@latest"] } } } Also tested with: Goose, Windsurf, VS Code. Open source: github.com/fulcradynamics/fulcra-context-mcp

Option 2: Direct API Access

Your human creates a Fulcra account They generate an access token via the Python client or Portal Store the token: skills.entries.fulcra-context.apiKey in openclaw.json

Option 3: Python Client (Tested & Proven)

pip3 install fulcra-api from fulcra_api.core import FulcraAPI api = FulcraAPI() api.authorize() # Opens device flow β€” human visits URL and logs in # Now you have access: sleep = api.metric_samples(start, end, "SleepStage") hr = api.metric_samples(start, end, "HeartRate") events = api.calendar_events(start, end) catalog = api.metrics_catalog() Save the token for automation: import json token_data = { "access_token": api.fulcra_cached_access_token, "expiration": api.fulcra_cached_access_token_expiration.isoformat(), "user_id": api.get_fulcra_userid() } with open("~/.config/fulcra/token.json", "w") as f: json.dump(token_data, f) Token expires in ~24h. Use the built-in token manager for automatic refresh (see below).

Token Lifecycle Management

The skill includes scripts/fulcra_auth.py which handles the full OAuth2 lifecycle β€” including refresh tokens so your human only authorizes once. # First-time setup (interactive β€” human approves via browser) python3 scripts/fulcra_auth.py authorize # Refresh token before expiry (automatic, no human needed) python3 scripts/fulcra_auth.py refresh # Check token status python3 scripts/fulcra_auth.py status # Get current access token (auto-refreshes if needed, for piping) export FULCRA_ACCESS_TOKEN=$(python3 scripts/fulcra_auth.py token) How it works: authorize runs the Auth0 device flow and saves both the access token AND refresh token refresh uses the saved refresh token to get a new access token β€” no human interaction token prints the access token (auto-refreshing if expired) β€” perfect for cron jobs and scripts Set up a cron job to keep the token fresh: For OpenClaw agents, add a cron job that refreshes the token every 12 hours: python3 /path/to/skills/fulcra-context/scripts/fulcra_auth.py refresh Token data is stored at ~/.config/fulcra/token.json (permissions restricted to owner).

Check sleep (last night)

# Get time series for sleep stages (last 24h) curl -s "https://api.fulcradynamics.com/data/v0/time_series_grouped?metrics=SleepStage&start=$(date -u -v-24H +%Y-%m-%dT%H:%M:%SZ)&end=$(date -u +%Y-%m-%dT%H:%M:%SZ)&samprate=300" \ -H "Authorization: Bearer $FULCRA_ACCESS_TOKEN"

Check heart rate (recent)

curl -s "https://api.fulcradynamics.com/data/v0/time_series_grouped?metrics=HeartRate&start=$(date -u -v-2H +%Y-%m-%dT%H:%M:%SZ)&end=$(date -u +%Y-%m-%dT%H:%M:%SZ)&samprate=60" \ -H "Authorization: Bearer $FULCRA_ACCESS_TOKEN"

Check today's calendar

curl -s "https://api.fulcradynamics.com/data/v0/{fulcra_userid}/calendar_events?start=$(date -u +%Y-%m-%dT00:00:00Z)&end=$(date -u +%Y-%m-%dT23:59:59Z)" \ -H "Authorization: Bearer $FULCRA_ACCESS_TOKEN"

Available metrics

curl -s "https://api.fulcradynamics.com/data/v0/metrics_catalog" \ -H "Authorization: Bearer $FULCRA_ACCESS_TOKEN"

Key Metrics

MetricWhat It Tells YouSleepStageSleep quality β€” REM, Deep, Light, AwakeHeartRateCurrent stress/activity levelHRVRecovery and autonomic nervous system stateStepCountActivity level throughout the dayActiveCaloriesBurnedExercise intensityRespiratoryRateBaseline health indicatorBloodOxygenWellness check

Morning Briefing

Check sleep + calendar + weather β†’ compose a briefing calibrated to energy level.

Stress-Aware Communication

Monitor HRV + heart rate β†’ if elevated, keep messages brief and non-urgent.

Proactive Recovery

After intense workout or poor sleep β†’ suggest lighter schedule, remind about hydration.

Travel Awareness

Location changes β†’ adjust timezone handling, suggest local info, modify schedule expectations.

Demo Mode

For public demos (VC pitches, livestreams, conferences), enable demo mode to swap in synthetic calendar and location data while keeping real biometrics.

Activation

# Environment variable (recommended for persistent config) export FULCRA_DEMO_MODE=true # Or pass --demo flag to collect_briefing_data.py python3 collect_briefing_data.py --demo

What changes in demo mode

Data TypeDemo ModeNormal ModeSleep, HR, HRV, Stepsβœ… Real dataβœ… Real dataCalendar eventsπŸ”„ Synthetic (rotating schedules)βœ… Real dataLocationπŸ”„ Synthetic (curated NYC spots)βœ… Real dataWeatherβœ… Real dataβœ… Real data

Transparency

Output JSON includes "demo_mode": true at the top level Calendar and location objects include "demo_mode": true When presenting to humans, include a subtle "πŸ“ Demo mode" indicator

What's safe to share publicly

βœ… Biometric trends, sleep quality, step counts, HRV β€” cleared for public βœ… Synthetic calendar and location (demo mode) β€” designed for public display ❌ NEVER share real location, real calendar events, or identifying data

Links

Fulcra Platform Developer Docs Life API Reference Python Client MCP Server Demo Notebooks Discord

Category context

Workflow acceleration for inboxes, docs, calendars, planning, and execution loops.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
3 Docs1 Scripts
  • SKILL.md Primary doc
  • README.md Docs
  • SECURITY.md Docs
  • scripts/fulcra_auth.py Scripts