smithery.ai

operator

Syncs workspace context to an ElevenLabs voice agent knowledge base, enabling ambient-aware voice conversations.

First seen Mar 31, 2026

Installation

$ npx skills add https://smithery.ai

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from smithery.ai · top by installs.

npx skills add https://smithery.ai

Browse all from smithery.ai

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Skill metadata

Parsed from SKILL.md frontmatter.

Declared agents clawdbot

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,927 B
  • docs SUMMARY.md 128 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 1 installs

SKILL.md

Operator Skill

Sync your workspace context to an ElevenLabs voice agent so it knows what you're working on.

When to Use

This skill activates during heartbeat when the Operator Context Sync section is in your HEARTBEAT.md. On each heartbeat, you'll gather context and push it to the ElevenLabs knowledge base.

Setup

Install dependencies:

pip install -r {baseDir}/requirements.txt

Environment Variables

  • ELEVENLABSAPIKEY — Your ElevenLabs API key
  • ELEVENLABSAGENTID — The ID of your ElevenLabs conversational agent

Context Sync Process

Step 1: Gather Context

Read and compile a context snapshot from:

  • Today's memory: memory/YYYY-MM-DD.md
  • Long-term memory: MEMORY.md
  • Active projects or recent work in workspace

Format it as a concise briefing the voice agent can reference:

## Current Context (synced YYYY-MM-DD HH:MM)

### Active Work
- [what you're working on]

### Recent Decisions
- [any recent decisions or direction changes]

### Blockers / Notes
- [anything notable]

### Pending Tasks
- [tasks or reminders]

Step 2: Sync to ElevenLabs

Run the sync script with your compiled context:

echo "<your compiled context>" | python3 {baseDir}/scripts/sync-context.py

Or pass it as an argument:

python3 {baseDir}/scripts/sync-context.py "<your compiled context>"

The script deletes old context documents, uploads the new context, and attaches it to your agent.

Notes

  • Keep context concise — the voice agent needs quick-reference info, not full transcripts
  • The knowledge base has a 300k character limit (non-enterprise)