Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 27 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# Contributing to codeoid-mobile

codeoid-mobile is the native iOS + Android (and React-Native-Web) client for the [Codeoid](https://github.com/highflame-ai/codeoid) daemon.
Clients are pure renderers — the daemon owns all state — so most product logic lives in the daemon repo; this repo is the phone rendering surface.

## Related repos

- [`highflame-ai/codeoid`](https://github.com/highflame-ai/codeoid) — the daemon + CLI + Solid web UI (source of `@codeoid/protocol` / `@codeoid/core`)
- [`highflame-ai/codeoid-ui`](https://github.com/highflame-ai/codeoid-ui) — the Rust (Ratatui) terminal client

## Signing off your work (DCO)

This project uses the [Developer Certificate of Origin](https://developercertificate.org/) (DCO) rather than a CLA — a lightweight, per-commit attestation that you wrote, or otherwise have the right to submit, the code you contribute.

Sign off every commit:

```bash
git commit -s -m "your message"
```

That appends a trailer derived from your Git identity:

```
Signed-off-by: Your Name <you@example.com>
```

By signing off you agree to the DCO (full text at <https://developercertificate.org/>). If a commit is missing the trailer, amend it with `git commit --amend -s` (or `git rebase --signoff` for a range) before pushing.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# codeoid-mobile

Native **iOS + Android** (and web, via React Native Web) client for the [Codeoid](https://github.com/saucam/codeoid) daemon — a self-hosted, identity-native control plane for AI coding agents.
Native **iOS + Android** (and web, via React Native Web) client for the [Codeoid](https://github.com/highflame-ai/codeoid) daemon — a self-hosted, identity-native control plane for AI coding agents.

> **Status: P1 — connect, auth, attach.** Daemon-URL entry → ZeroID API-key sign-in → live session list → streaming transcript (plain-text rows). Built in phases per [`docs/mobile-app-design.md`](docs/mobile-app-design.md) §10; next up: rich transcript + approvals + push (P2).

## What it is

Codeoid runs as a daemon on your own machine; its clients are pure renderers that attach to it. This is the third first-class client (alongside the Solid web UI in the daemon repo and the Rust TUI in [`codeoid-ui`](https://github.com/saucam/codeoid-ui)) — built for the phone, and designed to become the home of the **conductor** (supervise a fleet of agents by voice, from your pocket).
Codeoid runs as a daemon on your own machine; its clients are pure renderers that attach to it. This is the third first-class client (alongside the Solid web UI in the daemon repo and the Rust TUI in [`codeoid-ui`](https://github.com/highflame-ai/codeoid-ui)) — built for the phone, and designed to become the home of the **conductor** (supervise a fleet of agents by voice, from your pocket).

What sets it apart from other "control your coding agent from your phone" apps:

Expand Down Expand Up @@ -39,8 +39,8 @@ which Metro does not redirect to `.ts` inside `node_modules` on its own.

## Related repos

- [`saucam/codeoid`](https://github.com/saucam/codeoid) — the daemon + CLI + Solid web UI (the source of `@codeoid/protocol` / `@codeoid/core`)
- [`saucam/codeoid-ui`](https://github.com/saucam/codeoid-ui) — the Rust (Ratatui) terminal client
- [`highflame-ai/codeoid`](https://github.com/highflame-ai/codeoid) — the daemon + CLI + Solid web UI (the source of `@codeoid/protocol` / `@codeoid/core`)
- [`highflame-ai/codeoid-ui`](https://github.com/highflame-ai/codeoid-ui) — the Rust (Ratatui) terminal client

## License

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/saucam/codeoid-mobile.git"
"url": "git+https://github.com/highflame-ai/codeoid-mobile.git"
},
"main": "expo-router/entry",
"scripts": {
Expand Down
Loading