bbfa44ff35
apps/shuma-shell deja de ser el dashboard legacy de la era shipote y pasa a ser el shell de la spec: layout fijo de 3 zonas. - status (arriba) — estado de sandokan + versión. - [RUN] (izquierda) — barra de macros desde MacroBook (F1/F2/F3). - Lienzo de Contexto (centro) — grafo de intenciones: cada %cN es una caja posicionada por shuma-shell-render::layout, borde coloreado por estado (ámbar Running / verde Ok / rojo Failed). - [SENS] (derecha) — telemetría (CPU/MEM, placeholders). - prompt fijo (abajo) — la línea de intención. v1: renderiza la estructura con datos de ejemplo. Cableado interactivo (typing, F-keys ejecutando vía sandokan, telemetría viva) es el paso siguiente. cargo check --workspace verde. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
21 lines
691 B
TOML
21 lines
691 B
TOML
[package]
|
|
name = "shuma-shell"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
license.workspace = true
|
|
authors.workspace = true
|
|
publish.workspace = true
|
|
description = "Shell shuma — las 3 zonas: barra RUN (macros) + Lienzo de Contexto (grafo de intenciones) + barra SENS (telemetría) + prompt fijo."
|
|
|
|
[[bin]]
|
|
name = "shuma-shell"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
shuma-intent = { path = "../../modules/shuma/shuma-intent" }
|
|
shuma-shell-render = { path = "../../modules/shuma/shuma-shell-render" }
|
|
nahual-theme = { path = "../../modules/nahual/libs/theme" }
|
|
nahual-launcher = { path = "../../modules/nahual/libs/launcher" }
|
|
gpui = { workspace = true }
|