voiceover
write the voice-over, demo script first, voiceover instead of PRD, voiceover-first development, align on the demo, script the demo, ship a feature demo-first. The whole demo-driven journey — approve the narration BEFORE any code, then build on a fresh worktree until the demo holds and open the PR with the proof on it. Use when a feature request arrives, or when the user runs /voiceover.
pinned to #c2d3a52updated 2 weeks ago
Ask your AI client: “install skills/voiceover”.
Requires the metahub MCP server installed in your client. Set up MCP.
mh install skills/voiceovermetahub onboarded this repo on the author's behalf.
If you own github.com/Devin-AXIS/iPolloWork on GitHub, claim the listing to take over publishing. Your claim preserves the existing eval history and badges; only the curator label is replaced with verified-publisher on your next publish.
Stars
1,202
Last commit
2 weeks ago
Latest release
published
- #a2a-protocol
- #ai-agent-network
- #bnb-chain
- #ethereum
- #mcp-server
- #protocol
- #smart-contracts
- #token-economy
- #web3
- #x402-compatible
About this skill
Pulled from SKILL.md at publish time.
The voice-over is the spec. Instead of a PRD, a feature starts as the demo narration the user would record if the feature had already shipped. This skill owns the whole journey: **script → worktree → build → fraimz → PR.**
Evaluation report
WarningsAutomated checks the publisher passed at publish time — structure, docs, safety, and whether the artifact behaves as claimed.c2d3a52· 2 weeks ago
Kind-specific
31Skill: SKILL.md present
found at .opencode/skills/voiceover/SKILL.md · frontmatter source: SKILL.md
Skill: body content present
489 words · 3,087 chars · 6 sections · 3 code blocks
Skill: triggers declaredwarn
No `trigger` phrases in SKILL.md frontmatter
Add `trigger:` lines so Claude knows when to activate this skill — e.g. `when building MCP servers` or `for diagram creation`.
Skill: allowed-tools scope
no allowed-tools restriction (Claude may use anything)
Release history
1- releasecurrentc2d3a52warn2 weeks ago
Contents
The voice-over is the spec. Instead of a PRD, a feature starts as the demo narration the user would record if the feature had already shipped. This skill owns the whole journey: script → worktree → build → fraimz → PR.
The contract: no code until the script is approved.
Phase 1 — Align on words (no code)
- Take the feature in a sentence. Ask only what you need to narrate a demo of it.
- Draft the script. Write the voice-over end to end — one numbered paragraph per frame, 4–8 frames for most features. Spoken style, present tense, the end user as protagonist. Describe what the viewer sees and why it matters, never implementation. If a frame is hard to narrate, the feature (or the frame) is wrong — say so and reshape it.
- Iterate on words, not code. State the script back and revise with the user until they would actually record it. This conversation is the review that used to happen on a PRD.
Phase 2 — Start clean (fresh worktree)
On approval, set up an isolated workspace so the user's checkout stays untouched:
git fetch origin dev
git worktree add ../_worktrees/ipollowork-<flow-id> -b feat/<flow-id> origin/dev
Then, inside the worktree:
- Land the script at
evals/voiceovers/<flow-id>.md: a title, optional context prose, then the numbered frame paragraphs. From this point the file is what the code gets held to — the runner fails any flow whose narration drifts from it. - Scaffold the flow.
pnpm fraimz scaffold <flow-id>generatesevals/flows/<flow-id>.flow.mjswith onectx.provestub per paragraph, narration pre-wired vialoadVoiceoverParagraphs. Do not renumber or reword paragraphs after this without re-approval.
Phase 3 — Build until the demo holds
- Build the feature. The orchestrator decomposes the work and delegates
the coding to the
executorsubagent; the fraimz loop (see thefraimzskill) is how the orchestrator verifies each round — drive the demo against the real app, repair, and re-run until every frame passes.
Phase 4 — Ship (PR with the proof on it)
- Open the PR and post the proof. From the worktree:
git push -u origin feat/<flow-id>
gh pr create --base dev --fill
pnpm fraimz --flow <flow-id> --pr # posts the frame-by-frame proof as a PR comment
The PR review is the demo review: verdict, claims, voiceovers, and assertions, frame by frame.
Script format
# <flow-id> — <one-line claim>
Optional context prose (not narrated).
1. First frame narration, one or two spoken sentences.
2. Second frame narration.
Only numbered paragraphs become frames. Keep each to one or two sentences a human could speak over the screen while it shows exactly that state.
Source of truth
evals/runner/voiceover.mjs— parser, drift check, scaffolder.evals/voiceovers/voiceover-first-dx.md— the reference script (this workflow demoing itself, worktree and PR included).- The
fraimzskill — the validate/repair/verdict loop inside Phase 3.
Reviews
No reviews yet. Be the first.
Related
Gpt Researcher
An autonomous agent that conducts deep research on any data using any LLM providers
Verification Before Completion
Evidence before assertions, always
Writing Plans
Turn specs into phased implementation plans
mh install skills/voiceover