by sesori-ai
Sesori iOS/Android app and the Sesori Bridge CLI — drive OpenCode, Codex, or Cursor coding sessions from your phone
# Add to your Claude Code skills
git clone https://github.com/sesori-ai/sesori_apps_monorepoGuides for using ai agents skills like sesori_apps_monorepo.
Last scanned: 8/11/2026
{
"issues": [],
"status": "PASSED",
"scannedAt": "2026-08-11T05:06:52.304Z",
"npmAuditRan": true,
"pipAuditRan": true,
"promptInjectionRan": true
}sesori_apps_monorepo is an open-source ai agents skill for AI coding assistants such as Claude Code, Codex CLI, and ChatGPT, built by sesori-ai. Sesori iOS/Android app and the Sesori Bridge CLI — drive OpenCode, Codex, or Cursor coding sessions from your phone. It has 100 GitHub stars.
Yes. sesori_apps_monorepo passed SkillsLLM's automated security scan — a dependency vulnerability audit plus prompt-injection heuristics — with no high-severity issues. You can read the full report in the Security Report section on this page.
Clone the repository with "git clone https://github.com/sesori-ai/sesori_apps_monorepo" and add it to your Claude Code skills directory (see the Installation section above).
sesori_apps_monorepo is primarily written in Dart. It is open-source under sesori-ai on GitHub, so you can review or fork the full source.
Yes. SkillsLLM lists many other AI Agents skills you can browse and compare side by side. Open the AI Agents category from the badge at the top of this page, or use the Related Skills and comparison links further down to weigh sesori_apps_monorepo against similar tools.
No comments yet. Be the first to share your thoughts!
Requires iOS 15 or later, or Android 8.0 or later.
The Bridge is a small source-available command-line tool that connects the app to OpenCode, Codex, and Cursor.
macOS / Linux:
curl -fsSL https://sesori.com/install.sh | bash
Windows (PowerShell):
irm https://sesori.com/install.ps1 | iex
Prefer npm or bun? You can also bootstrap the Bridge with npx @sesori/bridge or bunx @sesori/bridge. It installs the same managed runtime under the hood.
sesori-bridge
Sign in with the same account on your phone and your machine. The two pair automatically over the encrypted relay, even on different networks.
Full walkthrough: prerequisites, OpenCode setup, headless VM instructions, and troubleshooting are in docs/GETTING_STARTED.md.
| Feature | What it means |
|---|---|
| Browse projects & sessions | See your OpenCode, Codex, and Cursor projects and every active session from your phone. |
| Keep agents moving | Answer questions, approve steps, and stop or restart tasks without returning to your desk. |
| Review code and PR status | Read diffs and keep tabs on pull requests without opening your laptop. |
| Voice or type | Talk to your assistant naturally or use the keyboard — whatever works in the moment. |
| Real-time notifications | Get pinged the moment your AI needs you back or a long-running task finishes. |
| End-to-end encrypted | Your code, prompts, and responses stay between your phone and your machine. |
A lightweight Bridge runs on your laptop alongside OpenCode. It connects to a relay server over WebSocket, and your phone connects to the same relay. The relay routes encrypted traffic between them — it never sees your application data.
graph LR
OC["AI Assistant<br/>on your machine"] -- "HTTP + SSE" --> B["Bridge CLI<br/>your laptop"]
B -- "WSS · E2E encrypted" --> R["Relay Server<br/>cloud router"]
R -- "WSS · E2E encrypted" --> M["Sesori App<br/>your phone"]
Your laptop and phone perform an ephemeral X25519 key exchange, then encrypt every message with XChaCha20-Poly1305. The relay only routes opaque binary frames.
Dive deeper: docs/HOW_IT_WORKS.md
FSL-1.1-ALv2).Security details: docs/SECURITY.md
| Assistant | Status | Notes |
|---|---|---|
| OpenCode | Available | Deep native integration. |
| OpenAI Codex CLI | Beta | Enabled by default in an upcoming release. |
| Cursor | Beta | ACP-based Cursor plugin; enabled by default in an upcoming release. |
| Claude Code | Coming soon | Plugin architecture already supports multi-assistant backends. |
sesori_apps_monorepo/
├── bridge/ # Pure Dart workspace — Bridge CLI + backend plugins
├── client/ # Flutter workspace — mobile & desktop shells
├── shared/ # Cross-product crypto & protocol primitives
└── docs/ # Deep-dive guides
bridge/app is the headless CLI that runs on your laptop.bridge/sesori_plugin_* packages implement support for each AI assistant backend.client/app is the Flutter mobile shell.client/desktop is the in-development desktop companion.shared/sesori_shared holds the encryption primitives and wire types used by both sides.Full architecture: repo structure, dependency graph, and layered design are in docs/ARCHITECTURE.md.
For where the project is headed, see docs/VISION.md and docs/ROADMAP.md.
Want to hack on it? See docs/CONTRIBUTING.md.
This repository is source-available under the Functional Source License, Version 1.1, Apache 2.0 Future License (FSL-1.1-ALv2).