· CH-D / WORKFLOWS · 0.12s LATENCY

Voice in.
Drafts, tasks, files out.

Start with something you said. Send it to the app, file, command, or model that should handle it. Most of the time that means your Mac and your tools. When it does not, you choose the outside service.

DOWNLOAD FOR MAC Browse templates macOS 26+ · Workflow EditorClaude CLI · Shell Steps

· 01 / DIRECT ANSWERS

The short version.

Template library

What are Talkie workflows?

Talkie workflows turn a spoken transcript into ordered steps: LLM cleanup, shell commands, file saves, email drafts, notifications, calendar events, clipboard actions, or webhooks.

Do Talkie workflows have to use cloud AI?

No. Capture, files, clipboard, local shell, and Local MLX flows can stay on your Mac. Outside providers such as Claude, OpenAI, Linear, Slack, or webhooks run only when you configure them.

Can agents use Talkie workflows?

Yes. The Talkie CLI exposes memos, dictations, searches, workflow runs, transcription, and local inference as structured output that agents can read from the terminal.

· 03 / STEP LIBRARY

Eight step types. Stack them in any order.

Every step is composable. Chain an LLM into a shell command into a save. Branch the router by keyword. Tee the same transcript into a journal and a webhook in one pass.

LLM

Summaries, extraction, restructuring

Shell

Run CLI tools — claude, gh, jq

Save to File

Write results to disk with aliases

Webhook

POST JSON or text to any endpoint

Email

Send results via Mail.app

Calendar

Create events from a transcript

Clipboard

Copy results to system clipboard

Notification

Native macOS alerts

· MODELS

ClaudeOpenAIGeminiGroqLocal MLX

Bring your own keys. Local MLX runs without leaving the device.

· VARIABLES

{{TRANSCRIPT}}{{TITLE}}{{DATE}}{{TIME}}{{SUMMARY}}

Substitute anywhere — prompt bodies, shell args, file paths, request bodies.

· 04 / SHELL STEP

Your terminal, hooked up to your voice.

We put a Ghostty terminal next to the workflow editor, with Talkie prompts, skills, and PATH already set up. Ask your memos questions, tune workflows with Claude or Codex, or hand a capture to a favorite open-weights model without jumping to another terminal and cd-ing into your library directory.

· WHAT IT GETS YOU

  • Executable allowlist for predictable, reviewable runs
  • Ghostty shell with Talkie prompts and skills preloaded
  • Multi-line script templates with variable substitution
  • Claude, Codex, and local model CLIs resolve from the same PATH
  • Stdout captured back into the workflow as the next variable
step · shell · gh issue create
READY
# template: file an issue from a dictated bug report
gh issue create \
  --repo  "arach/talkie" \
  --title "{{TITLE}}" \
  --body  "{{TRANSCRIPT}}" \
  --label "voice-memo"

# stdout becomes {{LAST_OUTPUT}} for the next step
# https://github.com/arach/talkie/issues/421
EXIT 0·412ms·audit:wf-01 dry-run available

· 05 / FILE SINKS

Land it exactly where you want it.

· PATH ALIASES

Shortcuts for the directories you actually use.

  • @Notes~/Documents/Obsidian/Vault
  • @Projects~/Dev/Current
  • @Inbox~/Documents/Talkie/Inbox
  • @Journal~/Documents/Journal

· SMART OUTPUT

Filenames that fill themselves in.

  • Template filenames with date and time tokens
  • Auto-create missing directories
  • Append-mode for logs and rolling journals
  • Per-workflow custom output paths
@Notes/{{DATE}}-{{TITLE}}.md

· 06 / TOOL CHOICE

Your tools first. Outside tools when you ask.

Talkie does not need to turn every workflow into a cloud diagram. Keep it local when that is enough. Bring in Claude, OpenAI, Linear, Slack, or a webhook only when the workflow actually needs it.

Start

Say the thing.

Dictation, quick capture, or a longer memo. Same transcript, same library.

Default

Your Mac. Your tools.

Local apps, local files, local commands. This is where most workflows stay.

Apps you already use

MailCalendarNotesObsidian

Your local shell

@talkie/clighjqbun

Files you own

MarkdownJSONJournalInbox

Optional

Outside calls are your call.

Connect a provider or webhook when you want one. Use your account, your keys.

Claude logoClaude
OpenAI logoOpenAI
Linear logoLinear
Make logoMake
GitHub logoGitHub
Zapier logoZapier
Notion logoNotion
Google logoGoogle
Talkie for MacmacOS 26+ · iOS 26+
curl -fsSL go.usetalkie.com/install | bash

One hotkey. One transcript. Routed to the file, the issue, the journal, or the agent you pointed it at.

· FOR DEVELOPERS

bun add -g @talkie/app
Read the docs