Claude
82e72ff235
feat: generic browser runtime API with typed handles (Stage 2)
...
Evolved crates/wasm/ from hardcoded PoC to a generic browser runtime:
- WasmRuntime: wraps Runtime, provides tick/send/stop/stats/inbox creation
- WasmAddr: opaque actor address handle for JS (replaces fragile indices)
- WasmInboxU32, WasmInboxBytes: typed inboxes for receiving actor results
- Free-standing spawn_counter/spawn_relay demonstrate the actor pattern
- 10 Node.js tests pass (accumulator, relay, multi-counter, stop, bytes)
Authored by Claude, lovingly guided by Zachery Aaron Shores-Chmielewski
2026-02-13 20:20:09 +07:00
Claude
2649a54feb
feat: platform abstraction layer for wasm32 compilation (Stage 1)
...
Core swactor now compiles for wasm32-unknown-unknown:
- Added `wasm` feature flag (bundles no_random + web-time)
- Platform-aware Instant: web_time::Instant on wasm, std::time on native
- cfg-gated Runtime::run() and RuntimeHandle (thread::spawn unavailable
on wasm32 — browser crate provides Web Worker-based alternative)
- Validated: crossbeam-queue, atomics, Mutex, RwLock, thread parking all
work on wasm32 with atomics target feature
- Updated crates/wasm/ to use new `wasm` feature
Authored by Claude, lovingly guided by Zachery Aaron Shores-Chmielewski
2026-02-13 20:20:09 +07:00
a7124cb3d4
distribution realization ( #33 )
...
Write tests for docker integration, as docker is how we will initially handle distribution on heterogeneous hardware.
2026-02-13 07:55:12 +00:00
78cbd80803
skeleton of wasm runner actors ( #32 )
2026-02-13 07:42:44 +00:00
f4f26c9f41
major feature update
...
Improve the runtime, increase test coverage, add new actor types for monitoring and supervision to an `std` crate.
2026-02-13 07:11:24 +00:00
d817ad952f
feat: distributed runtime ( #30 )
...
Major feature addition. For full details read `./docs/development_history/DISTRIBUTION.md`
2026-02-12 09:13:50 +00:00
ef08d3e7a5
feat: transport protocol ( #27 )
...
Address actors via ID, send messages over transport (TCP, QUIC, etc)
2026-02-09 19:05:37 +00:00
Zachery Aaron Shores-Chmielewski
6897d71e4b
feat: refactor based on spectral spectral_analysis
...
Asking the agent to refactor to reduce spectral complexity, it worked. Trivial change, but this did reduce code complexity.
2026-02-07 17:36:45 +07:00
de0f3960f4
feat: docs and README ( #13 )
...
Update the docs and readme with all the changes we've made
2026-02-06 17:12:04 +00:00
Zachery Aaron Shores-Chmielewski
d3fdf9e550
feat: worker thread api ( #6 )
...
Make the worker thread api clearly seperated and ready for test harness
2026-02-06 21:45:19 +07:00