Files
le-mystere-professeur-zacus/mkdocs.yml
L'électron rare 20aed903ba feat: AI integration — voice pipeline, hints engine, MCP server, analytics, security
- Voice pipeline: ESP32 WebSocket client → voice bridge → LLM → Piper TTS (Tower :8001)
- Hints engine: 3 puzzles (LA_440, LEFOU_PIANO, QR_FINALE), anti-cheat, 3 hint levels
- MCP hardware server: 6 tools (puzzle, audio, LED, camera, scenario, status), stdio transport
- Analytics: ESP32 module + 6 web endpoints + Dashboard UI with chat interface
- Security: auth middleware (Bearer NVS), rate limiting, input validation on 30 endpoints
- Frontend: code-split (1.1MB → 210KB initial), ErrorBoundary, API timeout, WS reconnect
- Tests: 24 Python + 38 TypeScript + 18 MCP = 80 project tests (+ 19 mascarade)
- Specs: AI_INTEGRATION_SPEC, MCP_HARDWARE_SERVER_SPEC, QA_TEST_MATRIX_SPEC
- Docs: SECURITY, DEPLOYMENT_RUNBOOK, voice pipeline guide, AI architecture map
- 6 AI agent definitions (.github/agents/ai_*.md)
- TUI orchestration script (tools/dev/zacus_tui.py)
- Docker compose TTS for Tower + KXKM-AI
- CHANGELOG, README, mkdocs.yml updated
- Cycle detection (DFS) in runtime3 validator
- Sprint plan: plans/SPRINT_AI_INTEGRATION.md

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-22 13:52:45 +01:00

42 lines
1.2 KiB
YAML

site_name: Zacus V3
site_description: Zacus refactor architecture, runtime, studio, and operating guides.
site_url: https://example.invalid/zacus
repo_name: electron-rare/le-mystere-professeur-zacus
docs_dir: docs
exclude_docs: |
README.md
AGENTS*.md
README_FAQ_SNIPPET.md
design.md
theme:
name: material
features:
- navigation.sections
- navigation.expand
- content.code.copy
markdown_extensions:
- admonition
- attr_list
- md_in_html
- toc:
permalink: true
plugins:
- search
nav:
- Home: index.md
- Quickstart: QUICKSTART.md
- Architecture:
- Overview: architecture/index.md
- System Map: architecture/system-map.md
- Component Map: architecture/component-map.md
- Data Flow Map: architecture/data-flow-map.md
- Feature Map: architecture/feature-map.md
- Migration Map: architecture/migration-map.md
- Agent Matrix: architecture/agent-matrix.md
- Release Map: architecture/release-map.md
- AI Integration Map: architecture/ai-integration-map.md
- AI Integration Analysis: AI_INTEGRATION_ANALYSIS.md
- Security: SECURITY.md
- Deployment Runbook: DEPLOYMENT_RUNBOOK.md
- OSS Benchmark: benchmark-oss.md