Internal Documentation internal
TalkIDE internal documentation

TalkIDE is a platform for vibecoding and vibemanagement of web applications. Non-technical users describe what they want in natural language; an AI Product Manager orchestrates a local development team (via Claude Code CLI) to build, run, and deploy functional web applications. Users manage their apps entirely through conversation — no infrastructure knowledge required.

Local preview

Prerequisites: Python 3.11+. Docker není potřeba.

# 1. Vytvoř virtualenv a nainstaluj Python deps (jednorázově)
python3 -m venv .venv
.venv/bin/pip install -r requirements.txt

# 2. Spusť MkDocs dev server
DISABLE_MKDOCS_2_WARNING=true .venv/bin/mkdocs serve --config-file _build/mkdocs.yml --dev-addr 127.0.0.1:8001
# → otevři http://127.0.0.1:8001

Build (optional):

DISABLE_MKDOCS_2_WARNING=true .venv/bin/mkdocs build --strict --config-file _build/mkdocs.yml
# → výstup v /tmp/talkide-mkdocs-site/

Stopping: Ctrl+C v terminálu s mkdocs serve.

Note on internet access: mkdocs serve běží zcela offline. Pouze Mermaid JS library se načítá z CDN — pokud jsi offline, diagramy zobrazí raw kód místo vizualizace.

Diagrams

Veškeré diagramy v dokumentaci jsou inline Mermaid ```mermaid ``` fence bloky v markdown souborech. Rendering probíhá client-side přes mermaid2 plugin — žádný pre-render step, žádné committed SVG soubory.

Historicky byly architektonické diagramy psané v Structurizr DSL (overview/workspace.dsl) a pre-rendované do SVG. Tento workflow byl odstraněn 2026-05-23 v rámci sjednocení na čistě Mermaid model (workspace.dsl byl pre-ADR-023/024 a nemá smysl udržovat oba systémy paralelně). Mermaid diagramy najdeš inline v relevantních dokumentech (overview/*.md, specification/flows/*.md, specification/worker-runtime.md, atd.).

Was this page helpful?

Thanks for the feedback.