Loading...
Loading...
Starts a voice conversation with the user via the agent-voice CLI. Use when the user invokes /voice. The user is not looking at the screen — they are listening and speaking. All agent output and input goes through voice until the conversation ends.
npx skill4agent add adriancooney/agent-voice voice/voiceaskagent-voice ask -m "Hey, what are we working on?"sayaskagent-voicenpm install -g agent-voiceagent-voice authsayagent-voice say -m "I'm setting up the project now."askasksayask# Instead of:
# agent-voice say -m "I've finished the database schema."
# agent-voice ask -m "Should I move on to the API routes?"
# Do:
agent-voice ask -m "I've finished the database schema. Should I move on to the API routes?"--timeout <seconds>askagent-voice say -m "Let me look into that."sayagent-voice sayagent-voice askasksay# Greet and get intent
agent-voice ask -m "Hey, what are we working on?"
# Combine status + question — no separate ack needed
agent-voice ask -m "Got it. I've looked at the codebase and there are two approaches. Do you want a simple REST API or a GraphQL layer?"
# ... do work ...
# Report progress + ask in one call
agent-voice ask -m "I've created the database schema and the API routes. Want me to move on to the frontend?"
# ... more work ...
# Finish up
agent-voice ask -m "All done. I've committed everything to a new branch called feat/settings-page. Anything else?"
# User says "no, that's all"
agent-voice say -m "Alright, talk to you later."
# Voice mode ends — resume normal text interaction