Internal Apps Ideation
December 24, 2025 ยท View on GitHub
This repository demonstrates a voice-to-implementation workflow โ a process for turning informal voice notes into structured specifications and implementation plans using AI tools.
Workflow Diagram
flowchart TD
subgraph Input["๐ค User"]
A[๐๏ธ Voice Note]
end
subgraph Processing["๐ค AI Processing"]
B[๐ Raw Transcript]
C[โจ Cleaned Transcript]
D[๐ Formal Spec]
E[๐๏ธ Implementation Plan]
end
subgraph Output["๐ Output"]
F[PDF Report]
end
A -->|"Gemini MCP"| B
B -->|"Gemini 2.5 Flash"| C
C -->|"Claude Opus 4.5"| D
D -->|"Claude Opus 4.5"| E
E -->|"WeasyPrint"| F
style A fill:#f0fdf4,stroke:#16a34a
style B fill:#fffbeb,stroke:#f59e0b
style C fill:#fffbeb,stroke:#f59e0b
style D fill:#faf5ff,stroke:#7c3aed
style E fill:#faf5ff,stroke:#7c3aed
style F fill:#f0f9ff,stroke:#0284c7
Workflow Stages
Each stage of the workflow is preserved in this repository:
| Stage | Source | Tool | File |
|---|---|---|---|
| 1. Voice Note | User | โ | View |
| 2. Raw Transcript | User | AI (Gemini Transcription MCP) | View |
| 3. Cleaned Transcript | User | AI (Gemini 2.5 Flash) | View |
| 4. Formal Specification | AI (Claude Opus 4.5) | AI (Claude Code) | View |
| 5. Implementation Plan | AI (Claude Opus 4.5) | AI (Claude Code) | View |
Final Output
The complete workflow โ from raw voice note to implementation plan โ is compiled into a single document:
The Project Idea
The voice note explores building a unified "AI workspace" โ a shell/wrapper that bundles together small AI-powered utilities (whiteboard cleanup, end-of-day logging, etc.) with shared authentication and environment variables.
Tools Used
| Tool | Purpose |
|---|---|
| Gemini Transcription MCP | Voice-to-text transcription |
| Gemini 2.5 Flash | Transcript cleanup and formatting |
| Claude Code (Opus 4.5) | Specification extraction and implementation planning |
| WeasyPrint | PDF generation from HTML |
Repository Structure
โโโ input/
โ โโโ notes.mp3 # Original voice recording
โ โโโ voice-note-on-custom-ai-workflow-deployment.md # Raw transcript
โ โโโ workflow-ideas-for-ai-powered-productivity.md # Cleaned transcript
โ โโโ SPEC.md # Formal specification
โโโ output/
โ โโโ internal-tools-ideation-flow.pdf # Final compiled document
โ โโโ internal-tools-ideation-flow.html # Source HTML
โ โโโ turns/ # Intermediate AI outputs
โโโ CLAUDE.md # Project context