OmicClaw
The gateway-first OmicVerse workspace for web UI, channels, notebooks, and agent workflows.
Documentation: English docs | 中文文档
This repository is now the standalone web and gateway application behind OmicClaw.
If you want the full product walkthrough, use the Read the Docs links above instead of treating this README as an operations manual.
This repository is published and installed as OmicClaw.
In practice, this repo is the part of OmicClaw that provides:
- the authenticated web entrypoint
- the gateway UI for managing channels
- the browser workspace for files, notebooks, terminals, and code execution
- the frontend and backend glue between OmicVerse analysis flows and agent-driven workflows
If omicverse is the analysis engine and omicclaw is the skill and workflow layer, this repository is the interactive runtime surface users actually open.
OmicClaw is no longer just a static analysis page. It is a gateway-first product that can:
- launch a branded login-protected web workspace
- manage channel lifecycles from the UI
- connect the same runtime to Telegram, Discord, Feishu, iMessage, and QQ
- keep web and channel sessions aligned through the gateway runtime
The web application includes:
- a notebook-style code editor with movable cells
- file browser and upload flows
- terminal access
- runtime state and session management
- account/auth flows
- bilingual interface support
The product still exposes the OmicVerse analysis experience, including:
- preprocessing and QC
- visualization and clustering
- annotation and downstream analysis
- notebook execution and script-oriented workflows
The difference is that this analysis interface now lives inside the broader OmicClaw application shell rather than being documented as a standalone tutorial site.
Install the OmicVerse runtime together with the web application:
pip install -U "omicverse[jarvis]" omicclawgit clone https://github.com/Starlitnightly/omicclaw.git
cd omicclaw
pip install -e .Current names:
- GitHub repository:
omicclaw - PyPI package:
omicclaw - Python package:
omicclaw
There are now three common ways to launch the OmicClaw experience:
omicclawUse this when you want the full OmicClaw-branded gateway with forced login behavior.
omicverse gatewayUse this when you want the same runtime without the OmicClaw-branded launcher name.
omicclawUse this when you are working directly with the standalone web package or developing the gateway UI itself.
The current OmicClaw stack is split across three layers:
| Layer | Responsibility |
|---|---|
omicverse |
analysis engine, CLI entrypoints, channel runtime integration |
omicclaw |
skill library and workflow grounding for agent/code generation |
omicclaw |
OmicClaw web UI, gateway backend, account flows, browser workspace |
This repository should therefore be read as the UI and gateway runtime part of OmicClaw.
Useful commands when working on this repository:
pip install -e .
omicclaw --helpIf you are validating the full OmicClaw product flow, pair this repository with the main OmicVerse repo and launch through:
omicclawor:
omicverse gateway.
├── app.py
├── gateway/
├── routes/
├── services/
├── static/
├── single_cell_analysis_standalone.html
├── start_server.py
└── pyproject.toml
Key areas:
gateway/: gateway routes, channel state, runtime coordinationservices/: backend services used by the workspacestatic/: frontend assetssingle_cell_analysis_standalone.html: the main OmicClaw application shellstart_server.py: standalone launcher for this package
This repository should now be treated as OmicClaw's web application.
