Files
bi-agents/_bmad/wds/workflows/5-agentic-development/templates/components/dev-mode.html
Cassel 647cbec54f docs: update all documentation and add AI tooling configs
- Rewrite README.md with current architecture, features and stack
- Update docs/API.md with all current endpoints (corporate, BI, client 360)
- Update docs/ARCHITECTURE.md with cache, modular queries, services, ETL
- Update docs/GUIA-USUARIO.md for all roles (admin, corporate, agente)
- Add docs/INDEX.md documentation index
- Add PROJETO.md comprehensive project reference
- Add BI-CCC-Implementation-Guide.md
- Include AI agent configs (.claude, .agents, .gemini, _bmad)
- Add netbird VPN configuration
- Add status report

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-19 13:29:03 -04:00

19 lines
923 B
HTML

<!-- ============================================================================
PROTOTYPE DEV MODE - HTML SNIPPET
Add this HTML to your prototype page (inside <body>, preferably at the top)
============================================================================ -->
<!-- Dev Mode Toggle Button (fixed position, top-right) -->
<button id="dev-mode-toggle" class="dev-mode-toggle" title="Toggle Dev Mode (Ctrl+E)">
<svg width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
<path d="M11 4H4a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-7"></path>
<path d="M18.5 2.5a2.121 2.121 0 0 1 3 3L12 15l-4 1 1-4 9.5-9.5z"></path>
</svg>
<span>Dev Mode: OFF</span>
</button>
<!-- Dev Mode Tooltip (shown when hovering over elements in dev mode) -->
<div id="dev-mode-tooltip" class="dev-mode-tooltip" style="display: none;"></div>