ワンクリックで
operator
Syncs workspace context to an ElevenLabs voice agent knowledge base, enabling ambient-aware voice conversations.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Syncs workspace context to an ElevenLabs voice agent knowledge base, enabling ambient-aware voice conversations.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
| name | operator |
| description | Syncs workspace context to an ElevenLabs voice agent knowledge base, enabling ambient-aware voice conversations. |
| metadata | {"openclaw":{"requires":{"bins":["python3"],"env":["ELEVENLABS_API_KEY","ELEVENLABS_AGENT_ID"]},"primaryEnv":"ELEVENLABS_API_KEY"}} |
Sync your workspace context to an ElevenLabs voice agent so it knows what you're working on.
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.
Install dependencies:
pip install -r {baseDir}/requirements.txt
ELEVENLABS_API_KEY — Your ElevenLabs API keyELEVENLABS_AGENT_ID — The ID of your ElevenLabs conversational agentRead and compile a context snapshot from:
memory/YYYY-MM-DD.mdMEMORY.mdFormat 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]
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.