feat(ruvbot): self-contained RVF with real Linux 6.6 kernel + API server fix#189
Merged
feat(ruvbot): self-contained RVF with real Linux 6.6 kernel + API server fix#189
Conversation
The chat() method signature is (sessionId, content, options?) but the API handler was passing (sessionId, agentId, message), causing TS2559. Fix by creating a session from agentId first, then calling chat(sessionId, message). Co-Authored-By: claude-flow <ruv@ruv.net>
- Build real Linux 6.6.80 bzImage with tinyconfig+virtio+net (1.5 MB) - Create build-rvf.js that assembles self-contained RVF binary: KERNEL_SEG: gzip-compressed Linux 6.6.80 bzImage (MicroLinux, x86_64) WASM_SEG: Full RuvBot Node.js runtime bundle (2.2 MB) META_SEG: Package metadata with capabilities PROFILE_SEG: AI assistant domain profile WITNESS_SEG: Build provenance chain MANIFEST_SEG: Segment directory - Include kernel/bzImage and ruvbot.rvf in npm distribution - Add build:rvf script to package.json - Total RVF: 3.67 MB, bootable with Firecracker/QEMU/Cloud Hypervisor Co-Authored-By: claude-flow <ruv@ruv.net>
Closed
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
startApiServer()in RuvBot with realnode:httpserver — routes for/health,/ready,/api/status,/api/chat,/api/agents,/api/sessions.rvffile with an embedded real Linux 6.6.80 microkernel (bzImage), bootable with Firecracker/QEMU/Cloud HypervisorRVF Contents (3.67 MB)
Kernel Build
Real Linux 6.6.80 compiled from source with
tinyconfig+ essential drivers:Test plan
npm run typecheckpasses (RuvBot TS fix)npm run build:rvfproduces validruvbot.rvfnpm packincludes kernel/bzImage and ruvbot.rvf🤖 Generated with claude-flow