Research and Labs
Operate bounded renderer slices from the research corpus, inspect their contracts and follow experiments through explicit promotion gates.
Research and Labs interactive detail
ZIP10 → typed public renderer slices
Use the tools, not pictures of them
These are bounded React implementations derived from the audited renderer contracts. They run on local fixtures, expose no host bridge and make no network request.
1
use std::path::Path;2
3
pub fn set_theme(config: &mut Config,4
value: Theme) -> Result<()> {5
config.theme = value;6
config.save(Path::new("config.toml"))?;7
emit("theme.changed");8
Ok(())9
}Experiment notebook
Research question
Instant actions with asynchronous suggestions
Can model suggestions arrive without delaying deterministic actions?
HypothesisPrototypeSpecFixtureTestDemoDecision
Result
The controlled interaction preserves menu position and authority boundaries.
Limitation
Still requires integration evidence from the native runtime.