Apps and an SDK for Kobo e-readers.
Cobalt is an open-source application platform for Kobo. It provides a launcher, an App Store, a Rust SDK, a runtime with capability isolation, and a Clara BW simulator.
See the public roadmap for the product outcomes Cobalt is working toward and the principles used to choose them.
After one USB installation, users can install, update, and remove signed apps over Wi-Fi. App releases are independent from Cobalt platform releases, so a new app can appear in Store without reinstalling or updating Cobalt.
Recorded on a Kobo Clara BW at 3× speed: apps, Store discovery, and the complete Sudoku install lifecycle.
Important
The Kobo Clara BW N365 (device code 391), Kobo Elipsa 2E N605 (device code 389), Kobo Clara HD N249 (device code 376), Kobo Libra 2 N418 (device code 388), Kobo Clara Colour N367 (device code 393), and Kobo Libra Colour N428 (device code 390) are fully hardware-tested on the exact firmware and kernel versions in the support matrix. See the device support matrix before installing. The 2025 Kobo Clara BW P365 (device code 395) hardware refresh is also supported: its measured panel, touch, firmware, and kernel facts match the attended-tested N365 Clara BW. It is an independent project and is not affiliated with Rakuten Kobo.
Tip
Own an unsupported Kobo? Help test its port. No coding is required. Join an existing device thread or create a new one with your exact model, firmware, and whether you can run attended tests. Start with read-only checks; run panel tests only against the commit named by a maintainer. See Contributing.
- Signed Wi-Fi app installation, updates, and removal
- Shareable app pages with encrypted QR or pairing-code installation
- Separate Settings-based updates for the Cobalt platform
- Apps run as separate unprivileged processes
- Per-app capability checks for network, storage, audio, frontlight, and other device services
- Declarative e-ink UI toolkit and browser simulator
- Profile-driven full and partial refresh planning for supported panels
- Static ARMv7 binaries with no device-side package manager
- Recovery-safe app and catalog transactions
- Serverless folder synchronization through a private host Syncthing peer
NickelMenu adds actions to Kobo's stock menu. KOReader and Plato are reading apps. Cobalt is a platform for building and installing apps.
Cobalt handles the common parts: screens, app lifecycle, drawing to the e-ink display, partial refreshes, touch input, device access, process isolation, testing, and signed installs. App authors can focus on their app instead of building those parts again. See the FAQ for a fuller comparison.
Every screenshot below is a real capture from a Kobo Clara BW. Store manages the installable applications; Settings and Terminal remain protected system utilities.
![]() Launcher Opens installed apps and always keeps a route back to the Kobo reader. |
![]() App Store Browses signed apps and installs, updates, removes, and reinstalls them over Wi-Fi. |
![]() Sudoku A Store-only touch game that also proves delivery of an app absent from the platform package. |
![]() Audiobook Studio Researches, writes, narrates, and plays an original audiobook. |
![]() Gutenbird Reads any OPDS library: Project Gutenberg, Standard Ebooks, Open Library, or one you add. |
![]() Hacker News Top, New, Ask, and Show stories with complete comment threads. |
![]() Feeds Discovers a site's feed and presents its articles without the browser layout. |
![]() Daily Brief Collects the day's stories while the reader is using another app. |
![]() AI Command Center Asks a question and turns the answer into touch-friendly reading. |
![]() Sidekick Lets a reader approve or deny requests from coding agents. |
![]() Terminal A panel-native shell with keys that send input immediately. |
![]() Components Shows the UI toolkit's controls, layouts, typography, and states. |
![]() Settings Manages connectivity and hardware, and keeps platform updates separate from Store. |
![]() Todo A persistent list with touch entry and completed-item states. |
![]() Tic-tac-toe A two-player touch game using partial refreshes for individual cells. |
![]() arXiv Reader Browses and searches preprints, keeps them for offline reading, and sets their mathematics as type. |
![]() Morse Sends a typed message on the front light, a letter at a time, drawn across the panel as it goes. |
|
![]() Magnet Locates the hall sensor behind the bezel and reports its changes. |
What would you use on your Kobo? It could be a game, a reading tool, a home-automation control, or a replacement for an Android or iOS app. Add it to the app request thread.
On macOS or Linux, install the stable release:
curl -fsSL https://bandarlabs.github.io/Cobalt/install.sh | shThis canonical discovery URL is published by GitHub Pages from stable
main:/docs; it becomes available with the first stable promotion containing
the installer. It trusts GitHub Pages HTTPS for the bootstrap script itself.
After it starts, every downloaded executable and device package is covered by
the signed release manifest and SHA-256 checks. For pre-execution verification
of install.sh, use the recommended
signed-bootstrap procedure.
The installer supports macOS Intel and Apple Silicon, and Linux x86_64 and arm64. It installs the stable Kobo platform only. The platform Beta channel is enabled exclusively in Cobalt Settings after first launch, or through the developer/source workflow. Settings shows the installed version and current channel, confirms channel changes explicitly, and verifies signed Beta platform metadata. Returning to Stable needs no USB connection and preserves installed apps, state, and secrets.
Update the installed host command independently:
kobo update
kobo update --channel beta # explicit host CLI beta; never writes to a readerThe host CLI channel does not select the Kobo platform channel. Device Beta updates remain an explicit choice in Cobalt Settings.
Rerun the same command to update. Restart the reader, wait one minute for NickelMenu's failsafe, then open Cobalt from Kobo's menu. Future applications are installed from Store over Wi-Fi.
If you already use NickelMenu, Cobalt is added to it; existing entries are left alone.
See docs/INSTALL.md for the complete walkthrough and recovery, uninstall, and source-build instructions.
Store reads a signed catalog from the Stable app-catalog GitHub release, or
the isolated app-catalog-beta release when the owner enables Beta updates.
Each package contains one ARM executable and a signed canonical manifest. The
runtime verifies the catalog, package, installed manifest, and binary before
launch.
Store is the only app-management surface. The applications bundled with the
first 0.2.0 platform install appear as installed, can be removed and
reinstalled in the same session, and can be updated in place without creating
a second launcher entry. Platform utilities such as Settings and Terminal are
shown as installed system apps and cannot be removed.
Open Install links in Store to link a phone or computer without an account. The Install button on any Cobalt app page then sends an encrypted request to that Kobo. If the reader is offline, reconnect it and open Store within 72 hours to continue.
Apps are published automatically when an app PR is merged into main.
Publishing an app does not require changing the Cobalt version or creating
a platform release.
Sudoku remains Store-only and is intentionally absent from the USB platform package, so installing it verifies delivery of an app that was not already on the reader.
cargo install --path crates/kobo-cli
kobo new my-app
cd my-app
kobo devkobo dev runs the app in the Clara BW browser simulator. Set
KOBO_SIM_PROFILE=libra-2-388 or KOBO_SIM_PROFILE=elipsa-2e-389 to exercise
the larger supported panel geometries with the same renderer and diagnostics.
Start with the
SDK documentation; the
repository also keeps the deep implementation guide.
| Area | Application-facing support |
|---|---|
| App model | Ordinary Rust binaries with declarative screens, named actions, lifecycle callbacks, and runtime-managed Back navigation |
| E-ink UI | Measured text, rows, tiles, pictures, dialogs, keyboards, terminal views, pagination, and full or partial refresh planning |
| Network and credentials | Asynchronous HTTPS fetches and posts, ranged downloads, bounded responses, and named secrets whose values never enter the app |
| State and background work | Atomic per-app keyed storage, cancellable tasks, foreground/background lifecycle events, and scheduled wake capabilities |
| Device and media | Capability-gated battery, cover, frontlight, Wi-Fi, Bluetooth, and audio requests |
| Tooling | App scaffolding, the browser and native runtime simulators, layout diagnostics, deterministic failure scenarios, packaging, and device deployment |
Apps request services through the SDK instead of opening device resources directly. The runtime can deny a request because it was not declared, is too expensive for the current battery state, or is unsupported, and each refusal is returned to the app as a value it can present or recover from.
See the SDK docs for the application model, UI components, runtime services, capabilities, developer-facing crates, and the CLI command reference.
App contributions are regular pull requests:
- Add the app as a workspace package under
apps/<app-id>/. - Add its release metadata to
apps/catalog.json. - Add unit tests and layout checks for every affected supported profile.
- Run the app in the browser and runtime simulators.
- Run it on a physical, fully supported Kobo and attach a GIF, video, or photos to the pull request.
- Include one clean panel screenshot for the app README and generated website install page.
- Open a pull request.
After the PR is reviewed and merged, the Publish apps workflow builds every
registered app for ARM, signs the packages and catalog, and updates the fixed
Store channel. App versions are independent from the Cobalt platform version.
See docs/CONTRIBUTING_APPS.md for metadata, capabilities, testing, and release details.
| Path | Purpose |
|---|---|
apps/ |
Store applications and release registry |
examples/ |
Built-in applications and SDK examples |
crates/kobo-sdk |
Public application SDK |
crates/kobod |
Device runtime |
crates/kobo-ui |
Layout and e-ink renderer |
crates/kobo-sim |
Clara BW browser/runtime simulator |
crates/kobo-app-store |
Signed package and catalog formats |
crates/kobo-cli |
Setup, build, simulation, packaging, and release tools |
docs/ |
Installation, device, app publishing, and development guides |
cargo test --workspace --all-features
cargo clippy --workspace --all-targets --all-features -- -D warnings
cargo fmt --all --check
cargo run -p kobo-cli -- run --sim --app sudokuAdditional guides:
- Roadmap
- Contributing
- Developing Cobalt
- Working with devices
- Publishing apps
- Porting to another Kobo
- Security policy
Cobalt does not replace Kobo's boot chain. Device support is explicitly gated by hardware and firmware identity, and a reboot returns to the stock reader. The first installation still modifies files on the user storage partition and is provided without warranty.
Normal panel-write entry points require one of the exact hardware and firmware combinations in the device support matrix. Do not treat a read-only profile match as permission to install: normal use requires the profile's owner-attended display, touch, exit, and recovery evidence to be complete.
GNU Affero General Public License v3.0. See LICENSE and THIRD-PARTY.md.

















