vivadicta-vault-export

vivadicta-vault-export is a skill for Claude Code, Codex from n0an/vivadicta-cli-skills. It costs 54 tokens per session (1,239 once invoked), scanned A, original, MIT.

An export method that turns a VivaDicta transcription into Markdown with YAML metadata, a text format used by tools such as Obsidian.

In plain words
What is it for?
Use it to save a transcription, such as the latest or today's dictation, as an Obsidian-ready Markdown file.
Why use it?
It provides a predictable file format for moving spoken notes into a vault, daily note, blog draft, or other text-based workflow.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to save a transcription, such as the latest or today's dictation, as an Obsidian-ready Markdown file.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/n0an/vivadicta-cli-skills/vivadicta-vault-export
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add n0an/vivadicta-cli-skills --skill vivadicta-vault-export
Clone the repo
git clone --depth 1 https://github.com/n0an/vivadicta-cli-skills

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for vivadicta-vault-export

README.md
[![agentmods](https://agentmods.dev/badge/skills/n0an/vivadicta-cli-skills/vivadicta-vault-export/github.svg)](https://agentmods.dev/skills/n0an/vivadicta-cli-skills/vivadicta-vault-export)
Your own site
<a href="https://agentmods.dev/skills/n0an/vivadicta-cli-skills/vivadicta-vault-export"><img src="https://agentmods.dev/badge/skills/n0an/vivadicta-cli-skills/vivadicta-vault-export/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for vivadicta-vault-export

Your own site · 80×15
<a href="https://agentmods.dev/skills/n0an/vivadicta-cli-skills/vivadicta-vault-export"><img src="https://agentmods.dev/badge/skills/n0an/vivadicta-cli-skills/vivadicta-vault-export.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 54 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,239 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00054 $0.01239
Opus 5 $0.00027 $0.00620
Sonnet 5 $0.00011 $0.00248
Haiku 4.5 $0.00005 $0.00124

Measured 11d ago against content hash 145a094d6945, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

vivadicta-vault-export scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 11d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/vivadicta-vault-export/SKILL.md · 142 lines

How it starts

The opening of the file, as written. The whole thing — 142 lines — stays where its author put it; the contents beside it link to each section on GitHub.

vivadicta vault export

Use this skill to write a VivaDicta transcription into a markdown file suitable for an Obsidian vault, a daily note, a blog draft, or any pipeline that consumes markdown.

Preconditions

  • VivaDicta.app installed at /Applications/VivaDicta.app. UI app does not need to be running - get is a read command.
  • The target transcription exists in history. If the user said "today's dictation", confirm with vivadicta recent 1 first.

The one flag that matters

--output markdown on get produces YAML frontmatter + body. This is the Obsidian-ready form. Other subcommands don't support markdown output.

vivadicta get latest --output markdown

Output shape (stdout):

---
title: "Call with Sam about the sprint plan"
date: 2026-04-18T14:32:00Z
duration_seconds: 522
duration_display: "08:42"
source: "Mac"
viva_mode: "Coding"
tags: ["sprint-planning", "work"]
transcription_model: "parakeet-tdt-0.6b-v3"
---

# Raw transcript

...full transcript text...

# Latest enhancement (Action Points)

...enhanced text if present...

The frontmatter keys are stable and Obsidian-friendly (quotable strings, ISO dates, arrays).

Common patterns

Save today's dictation into a dated file:

vivadicta get latest --output markdown > ~/vault/transcripts/$(date +%F).md

Save a specific transcription by query:

vivadicta get "yesterday's call with sam" --output markdown > ~/vault/calls/sam-$(date +%F).md

Include every AI variation (Summary, Action Points, Email, …) as separate sections in the body:

vivadicta get <uuid> --output markdown --all-variations > ~/vault/notes/$(date +%F).md

Pipe to pbcopy for a quick paste into an existing note:

vivadicta get latest --output markdown | pbcopy

Append to a daily note (Obsidian Daily Notes plugin format):

vivadicta get latest --output markdown >> ~/vault/daily/$(date +%F).md

Identifier forms

Same three shapes as vivadicta-search-and-rewrite:

Read the full file on GitHub · 142 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 11d ago First seen · 142 lines · 54 tokens per session scan A 145a094d6945

Subscribe to this mod's changes

vivadicta-vault-export is a skill published in the GitHub repository n0an/vivadicta-cli-skills (6 stars, last pushed 4mo ago), licensed MIT. It adds 54 tokens to every session and 1,239 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories