원클릭으로
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.