Weekly Team Sync
- Date
- May 12, 2024
- Team
- Product
- Attendees
- 5 people
- +
- Add a property
Agenda
- Product updates
- Roadmap review
- Blockers
Notes
Capture the action items and send the summary to the product team after the sync.
Hold a shortcut, speak naturally, and clean text lands wherever your cursor sits.
See it in action
Voxa works where you write. Use the same shortcut to dictate in Slack, Email, Notion, Cursor, ChatGPT, Linear, and everywhere else.
See Voxa in action across your tools
Switch app demo
Hi team, thanks for a great kickoff today...
Thanks for sharing the mockups...
Here's a quick update on our progress...
Looks good! A few small suggestions...
This month we're excited to introduce...
Hi Alex,
Here's a quick update on our progress this quarter.
We've shipped the new onboarding flow, improved performance across key pages, and are seeing strong early feedback from customers.
Next up, we'll be focusing on scaling our integrations and refining the analytics dashboard.
Let me know if you'd like a deeper dive into any of these areas.
Thanks,
Jamie
Capture the action items and send the summary to the product team after the sync.
import { useState, useEffect } from 'react'
import { fetchTasks } from '@/lib/api'
export function useTasks() {
const [tasks, setTasks] = useState<Task[]>([])
const [loading, setLoading] = useState(true)
const [error, setError] = useState<Error | null>(null)
useEffect(() => {
let cancelled = false
const load = async () => {
try {
const data = await fetchTasks()
if (!cancelled) setTasks(data)
} catch (err) {
if (!cancelled) setError(err as Error)
} finally {
if (!cancelled) setLoading(false)
}
}
load()
return () => { cancelled = true }
}, [])
return { tasks, loading, error }
} Absolutely, happy to help. Here's a draft launch plan tailored to your new product.
Replace the single Slack mockup with a six-app tabbed demo. Each tab is a realistic UI for the app, with the Voxa capsule overlaying the dictation slot.
Your shortcut. Your flow. Works everywhere.
How it works
Voxa sits between you and the keyboard. Hold a shortcut anywhere on your screen, dictate naturally, and polished text lands wherever your cursor sits.
Default is Ctrl, Shift, and Space together. Change it in Settings if it collides with something. The floating widget rises from the bottom of your screen to confirm you are live.
Up to three minutes per take. Pause, change your mind, correct yourself. Say "new line" or "period" when you want them inserted exactly.
Voxtral transcribes. Mistral cleans up filler, fixes punctuation, resolves self-corrections. The result pastes into whatever app the cursor was in.
The floating widget
Idle as a small pill at the bottom of your screen. Expands while you speak. Disappears the moment your text lands in the cursor.
Idle
Small pill, click-through, 64% opacity. You forget it is there.
Listening
Expanded with a live soundwave. Pulses with your voice in real time.
Polishing
A calm wave travels through while Mistral cleans the transcript. Usually under a second.
The wedge
Most dictation tools route your audio through Silicon Valley. We do not. Voxa is engineered around three invariants that hold from the first ms of the first request.
Voxtral and Mistral models, both hosted on EU endpoints. Every request to transcribe and polish your dictation routes through Frankfurt.
No OpenAI. No Anthropic. No Google. The wedge is not marketing language, it is the architecture. Read the subprocessor list.
Your voice streams straight into Voxtral and is discarded on response. No transcripts saved server-side, no final text retained.
Built by
A Belgian developer who got tired of Silicon Valley listening in on his client conversations.
Tim Pieters
I write code for a living and I dictate everything. Until last year I was happy with Wispr Flow. Then I read the architecture and realised my client conversations were round-tripping through Silicon Valley. For a Belgian developer working with European clients, that is not a thing you keep doing.
So I rebuilt it the way it should exist. EU-only inference, audio discarded on response, no transcripts retained server-side. Same hold-to-speak workflow, different geography under the hood.
Voxa is for the people who handle other people's data. Lawyers, consultants, devs, anyone who would rather not narrate their client calls into a US-hosted API.
Made in Brussels路Hosted in Frankfurt
Where it works
Voxa pastes into whatever app the cursor was in. Twelve favourites below; same shortcut works in any text input.
Slack
Channel replies.
Gmail
Long emails.
Notion
Page drafts and notes.
ChatGPT
Prompts.
Cursor
Commit messages.
Linear
Issues and tickets.
Obsidian
Vault notes.
Discord
Direct messages.
Figma
File comments.
GitHub
Issue replies.
Telegram
Messages, polished.
Chat at speaking pace.
And every other app that accepts a paste.
Speaks your language
Voxtral identifies the language from the first words. Bias the detection by setting your UI locale in Settings if you switch a lot.
NL
Dutch
“Hallo”
FR
French
“Bonjour”
EN
English
“Hello”
DE
German
“Hallo”
IT
Italian
“Ciao”
ES
Spanish
“Hola”
Voxa
Free for 2,000 words a week. Pro is €12 / month. No card to start, no signup form, no audio leaving Europe.
Pushed the tabbed demo branch. Auto-cycle is 8 seconds per tab, manual clicks reset the timer. Ready for review.