generalbots/botdevice/rom
Rodrigo Rodriguez (Pragmatismo) 037db5c381 feat: Major workspace reorganization and documentation update
- 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
2026-04-19 08:14:25 -03:00
..
gsi feat: Major workspace reorganization and documentation update 2026-04-19 08:14:25 -03:00
scripts feat: Major workspace reorganization and documentation update 2026-04-19 08:14:25 -03:00
install.sh feat: Major workspace reorganization and documentation update 2026-04-19 08:14:25 -03:00
README.md feat: Major workspace reorganization and documentation update 2026-04-19 08:14:25 -03:00

BotOS ROM - Sistema Android Customizado

Níveis de Customização

Nível 1: Debloat + Launcher (Sem Root)

Remove apps do fabricante via ADB e configura BotOS como launcher padrão.

Nível 2: Magisk Module (Com Root)

Módulo que substitui boot animation, launcher padrão, e remove bloatware permanentemente.

Nível 3: Custom GSI (Imagem Completa)

Android puro com BotOS integrado, sem nenhum app de fabricante.


Nível 1: Debloat sem Root

# Conectar dispositivo via USB (debug USB ativado)
./scripts/debloat.sh

Remove apps Samsung, Huawei, Xiaomi sem precisar de root.

Nível 2: Magisk Module

# Gerar módulo Magisk
./scripts/build-magisk-module.sh

# Instalar via Magisk Manager
adb push botos-magisk.zip /sdcard/

Nível 3: GSI Build

Requer ambiente de build AOSP. Veja gsi/README.md.


Fabricantes Suportados para Debloat

  • Samsung (One UI)
  • Huawei (EMUI)
  • Xiaomi (MIUI)
  • Motorola
  • LG
  • Realme/OPPO (ColorOS)
  • Vivo (FuntouchOS)

Requisitos

  • ADB instalado
  • USB Debug ativado no dispositivo
  • Para Nível 2+: Bootloader desbloqueado + Magisk
  • Para Nível 3: Ambiente AOSP build (~200GB espaço)