feat(sidecar): WIT al sidecar — módulos conscientes vivos
Cierra el ciclo brahman-card-wit ↔ runtime: un módulo que tenga su .wit lo parsea, lo manda en Hello, y aparece como "consciente" en el broker y en brahman-status. Cambios coordinados (un solo commit por la cadena de tipos): - brahman-card::WitInterface deriva Serialize/Deserialize/Eq. - brahman-handshake::Hello lleva wit: Option<WitInterface> (#[serde(default)] para tolerar Hellos antiguos en formato JSON aunque postcard exige presencia explícita). - Server's register_session enruta a ResolvedCard::from_conscious cuando viene wit; from_agnostic cuando no. - Client::connect queda como wrapper de connect_with(path, card, wit: Option<WitInterface>) — backward-compatible. - Broker::register acepta Option<WitInterface> como tercer arg; BrokeredCard guarda el wit. 25 sitios de tests actualizados con `, None` (vía perl). - brahman-sidecar::SidecarConfig.wit + helpers SidecarConfig::with_wit y spawn_conscious(card, wit). Log attached reporta conscious=true|false. - brahman-status pretty-print con 🧠 + sección wit (package/world + imports + exports) por sesión consciente. - Example nuevo presence-conscious: parsea protocol.wit y se presenta consciente. Validación end-to-end manual: $ ente-zero & $ presence-conscious demo.conscious shared_wit/protocol.wit & $ brahman-status Sessions (1): 01K... demo.conscious 🧠 lifecycle=Daemon wit: brahman:protocol@0.1.0 / module imports: types, handshake, lifecycle exports: run Tests: 32/32 (broker 11 + card 8 + handshake codec+transport 2 + integ 7 + admin 0 + card-wit 4). Workspace: 0 errores. CHANGELOG.md actualizado. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
@@ -6,6 +6,36 @@ ratio/diff ver `git show <sha>`.
|
||||
|
||||
## 2026-05-08
|
||||
|
||||
### feat(sidecar): WIT al sidecar — módulos conscientes vivos
|
||||
- `brahman-card::WitInterface` deriva `Serialize`, `Deserialize`,
|
||||
`PartialEq`, `Eq` para cruzar el wire postcard.
|
||||
- `brahman-handshake::Hello` lleva `wit: Option<WitInterface>`. Server
|
||||
usa `ResolvedCard::from_conscious` cuando viene presente, `from_agnostic`
|
||||
cuando no.
|
||||
- `brahman-handshake::Client::connect` queda como wrapper agnóstico de
|
||||
`connect_with(path, card, wit: Option<WitInterface>)`.
|
||||
- `brahman-broker::Broker::register` ahora toma `Option<WitInterface>`
|
||||
como tercer arg. `BrokeredCard` guarda el wit. 25 sitios de tests
|
||||
actualizados con `, None`.
|
||||
- `brahman-sidecar::SidecarConfig` con campo `wit`. Helpers nuevos:
|
||||
`SidecarConfig::new(card).with_wit(wit)` y `spawn_conscious(card, wit)`.
|
||||
El log `attached` reporta `conscious=true|false`.
|
||||
- `brahman-status` muestra marker 🧠 + sección `wit:` (package/world,
|
||||
imports, exports) por sesión consciente.
|
||||
- Example nuevo `crates/shared/brahman-sidecar/examples/presence-conscious.rs`:
|
||||
toma label + path .wit (default `shared_wit/protocol.wit`), parsea
|
||||
con brahman-card-wit, spawna sidecar consciente.
|
||||
- Validado end-to-end:
|
||||
```
|
||||
$ presence-conscious demo.conscious shared_wit/protocol.wit &
|
||||
$ brahman-status
|
||||
Sessions (1):
|
||||
01K... demo.conscious 🧠 lifecycle=Daemon
|
||||
wit: brahman:protocol@0.1.0 / module
|
||||
imports: types, handshake, lifecycle
|
||||
exports: run
|
||||
```
|
||||
|
||||
### feat(core): brahman-card-wit — extractor opcional de contratos WIT
|
||||
- Crate nuevo `crates/core/brahman-card-wit` con `wit-parser = "0.230"`.
|
||||
- API: `parse_wit(source)` y `parse_wit_file(path)` devuelven
|
||||
|
||||
Reference in New Issue
Block a user