- Add comprehensive documentation in botbook/ with 12 chapters - Add botapp/ Tauri desktop application - Add botdevice/ IoT device support - Add botlib/ shared library crate - Add botmodels/ Python ML models service - Add botplugin/ browser extension - Add botserver/ reorganized server code - Add bottemplates/ bot templates - Add bottest/ integration tests - Add botui/ web UI server - Add CI/CD workflows in .forgejo/workflows/ - Add AGENTS.md and PROD.md documentation - Add dependency management scripts (DEPENDENCIES.sh/ps1) - Remove legacy src/ structure and migrations - Clean up temporary and backup files
12 lines
678 B
XML
12 lines
678 B
XML
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round">
|
|
<!-- Chart bars - analytics visualization -->
|
|
<rect x="3" y="14" width="4" height="8" rx="1"/>
|
|
<rect x="10" y="8" width="4" height="14" rx="1"/>
|
|
<rect x="17" y="4" width="4" height="18" rx="1"/>
|
|
<!-- Trend line -->
|
|
<path d="M3 10 L10 6 L17 2" stroke-dasharray="2 2"/>
|
|
<!-- Data points -->
|
|
<circle cx="3" cy="10" r="1.5" fill="currentColor" stroke="none"/>
|
|
<circle cx="10" cy="6" r="1.5" fill="currentColor" stroke="none"/>
|
|
<circle cx="17" cy="2" r="1.5" fill="currentColor" stroke="none"/>
|
|
</svg>
|