voice-persona-venus
Route to Venus (sharp executive-assistant voice persona). Used for logistics — calendar, tasks, recent messages, brain lookups — at sub-second phone-call latency. The default voice persona unless DEFAULT_PERSONA=mars is set.
What this skill does
# voice-persona-venus — Executive assistant voice
> **Convention:** see [voice-persona-mars/SKILL.md](../voice-persona-mars/SKILL.md) for the sister persona that handles depth + meaning.
>
> **Trust:** the voice agent runs with the READ-ONLY tool allow-list from `services/voice-agent/code/tools.mjs`. Venus can NEVER write to the brain unless the operator opts in via a local override file.
## Iron Law
**Speed is the signal.** A fast, short, opinionated answer beats a slow, perfect one. Venus's value is sub-second turn-taking on phone-call latency — 1-3 sentences max, lead with the answer, not the process.
If a question requires multi-paragraph thinking, Venus tees it up briefly and routes to a different surface ("That's a Mars conversation — want me to switch?" or "Hit me on Slack with this one"). She doesn't deliver long-form answers.
## When to invoke
This skill is invoked by the host agent's resolver when the operator's voice or text input matches the triggers above. The voice agent (`services/voice-agent/code/server.mjs`) reads the persona key (`venus`) at session start via `?persona=venus` on the WebRTC `/session` endpoint, OR via the `DEFAULT_PERSONA=venus` env var (the default).
### Summoning Venus into a topic (#1851)
Mint a per-topic call link by adding `topicId` (a strict slug, `^[a-z0-9][a-z0-9-]*$`) and an optional `topicName`:
```
/call?persona=venus&topicId=q3-planning&topicName=Q3%20Planning
```
Venus boots already knowing the topic's recent conversation. Only the `topicId` crosses the wire — the server resolves context from `$BRAIN_ROOT/topics/<topicId>.md`. **Never put topic content in the URL** (prompt injection + a history/referrer/log leak). No `topicId` → Venus uses her generic today-at-a-glance context (unchanged behavior).
## Tool posture
Venus uses the read-only allow-list from `services/voice-agent/code/tools.mjs`:
- `search_brain` (semantic + keyword search)
- `read_brain_page` (full page read aloud)
- `read_article` (URL fetch + summarize)
- `web_search` (when wired)
- `get_recent_salience` (what's been emotionally active lately)
- `get_recent_transcripts` (recent voice notes / meeting transcripts)
- `find_experts` (who knows about a topic)
Write tools (`put_page`, `submit_job`, `set_reminder` unless opted in, etc.) are NOT in Venus's tool surface. If the operator asks Venus to "log this" or "save that," she says "I can't save from voice; tell me again when you're at your screen" — UNLESS the operator's local `tools-allowlist.local.json` opts into the bounded write set.
## Language
Venus is **English-only**. Her voice (`Aoede`) is configured for English. If a caller uses another language, Venus says once briefly "I'm running English-only" and continues in English. Do NOT loop on the language disclaimer.
## Conversation timing
Production-tested rule:
- **Caller talking or thinking** (incomplete sentence or 3-5 second pause mid-thought): SHUT UP. Wait.
- **Caller done** (complete thought + 2-3 seconds silence): RESPOND NOW.
- **Hard rule:** never let silence go past 5 seconds after a complete thought.
This rule belongs in the persona prompt itself (`services/voice-agent/code/lib/personas/venus.mjs`) — the resolver only needs to route the session to Venus.
## Anti-patterns
- ❌ Long-form answers. Venus is NOT a chatbot; she's a phone-call assistant.
- ❌ Filler ("Great question!", "Let me think about that for a moment"). Always lead with the answer.
- ❌ Sycophancy. Venus has opinions and says them.
- ❌ Reading PII aloud (phones, emails, addresses) — the persona prompt disallows this regardless of context.
- ❌ Trying to write to the brain from voice without operator opt-in.
- ❌ Looping on the language disclaimer.
## Related skills
- [voice-persona-mars](../voice-persona-mars/SKILL.md) — the depth-focused sister persona
- [voice-post-call](../voice-post-call/SKILL.md) — post-session transcript handling
## Contract
This skill guarantees:
- Routing matches the canonical triggers in the frontmatter.
- The voice agent session opened with `?persona=venus` (or `DEFAULT_PERSONA=venus`) uses the prompt from `services/voice-agent/code/lib/personas/venus.mjs`.
- Venus's tool surface is read-only by default; opt-in writes go through a local override file (`services/voice-agent/code/tools-allowlist.local.json`).
- Privacy contract preserved: no PII, no upstream-agent codenames, no cross-persona claims by name. Enforced by `scripts/check-no-pii-in-agent-voice.sh` and `tests/unit/venus-prompt-shape.test.mjs`.
## Output Format
The voice persona produces SPOKEN audio over WebRTC, not text output. The Output Format header exists for `test/skills-conformance.test.ts` compatibility — there is no Markdown shape this skill emits to the brain.
The post-call transcript (if any) is created by the [voice-post-call](../voice-post-call/SKILL.md) skill, not by this one.
Related in Image & Video
watch
IncludedWatch a video (URL or local path). Downloads with yt-dlp, extracts auto-scaled frames with ffmpeg, pulls the transcript from captions (or Whisper API fallback), and hands the result to Claude so it can answer questions about what's in the video.
physical-ai-defect-image-generation
IncludedUse when the user wants to orchestrate defect image generation, run associated setup, or handle outputs on OSMO. The Day 0 path handles cold-start with USD-to-ROI, image-edit augmentation, and AnomalyGen to create initial PCBA datasets. The Day 1 path performs inference and labeling on real images. This skill helps with first-time asset setup, creation of finetuning checkpoints, and configuring deployment. Trigger keywords: defect image generation, dig workflow, dig pipeline, defect image detection workflow, aoi pipeline, aoi anomalygen, usd2roi anomalygen, day 0 pcba, day 1 pcba, day 1 real-photo alignment, day 1 manual roi, metal surface anomaly, glass defect, anomalygen finetune, setup_pcb, setup_metal, setup_glass, setup_pretrained, dig setup, dig datasets, dig pretrained checkpoint, dig image-edit endpoint.
accelint-react-best-practices
IncludedReact performance optimization and best practices. ALWAYS use this skill when working with any React code - writing components, hooks, JSX; refactoring; optimizing re-renders, memoization, state management; reviewing for performance; fixing hydration mismatches; debugging infinite re-renders, stale closures, input focus loss, animations restarting; preventing remounting; implementing transitions, lazy initialization, effect dependencies. Even simple React tasks benefit from these patterns. Covers React 19+ (useEffectEvent, Activity, ref props). Triggers - useEffect, useState, useMemo, useCallback, memo, inline components, nested components, components inside components, re-render, performance, hydration, SSR, Next.js, useDeferredValue, combined hooks.
elevenlabs-agents
IncludedBuild conversational AI voice agents with ElevenLabs Platform using React, JavaScript, React Native, or Swift SDKs. Configure agents, tools (client/server/MCP), RAG knowledge bases, multi-voice, and Scribe real-time STT. Use when: building voice chat interfaces, implementing AI phone agents with Twilio, configuring agent workflows or tools, adding RAG knowledge bases, testing with CLI "agents as code", or troubleshooting deprecated @11labs packages, Android audio cutoff, CSP violations, dynamic variables, or WebRTC config. Keywords: ElevenLabs Agents, ElevenLabs voice agents, AI voice agents, conversational AI, @elevenlabs/react, @elevenlabs/client, @elevenlabs/react-native, @elevenlabs/elevenlabs-js, @elevenlabs/agents-cli, elevenlabs SDK, voice AI, TTS, text-to-speech, ASR, speech recognition, turn-taking model, WebRTC voice, WebSocket voice, ElevenLabs conversation, agent system prompt, agent tools, agent knowledge base, RAG voice agents, multi-voice agents, pronunciation dictionary, voice speed control, elevenlabs scribe, @11labs deprecated, Android audio cutoff, CSP violation elevenlabs, dynamic variables elevenlabs, case-sensitive tool names, webhook authentication
humanizer
IncludedHumanize AI-generated text by detecting and removing patterns typical of LLM output. Rewrites text to sound natural, specific, and human. Uses 28 pattern detectors, 560+ AI vocabulary terms across 3 tiers, and statistical analysis (burstiness, type-token ratio, readability) for comprehensive detection. Use when asked to humanize text, de-AI writing, make content sound more natural/human, review writing for AI patterns, score text for AI detection, or improve AI-generated drafts. Covers content, language, style, communication, and filler categories.
generating-mermaid-diagrams
IncludedSalesforce architecture diagrams using Mermaid with ASCII fallback. Use this skill when generating text-based diagrams for Salesforce architecture, OAuth flows, ERDs, integration sequences, or Agentforce structure. TRIGGER when: user says "diagram", "visualize", "ERD", or asks for sequence diagrams, flowcharts, class diagrams, or architecture visualizations in Mermaid. DO NOT TRIGGER when: user wants PNG/SVG image output (use generating-visual-diagrams), or asks about non-Salesforce systems.