Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
5766179
feat(server): add Oh My Pi (omp) as an ACP provider
omnificate Sep 9, 2026
d0c0a16
fix(omp): portable provider tests and truthful start-session model
Sep 14, 2026
9300526
fix(desktop): extract electron runtime without python3 on windows
Sep 14, 2026
7a018ae
feat(omp): discover skills for the $ picker and dispatch mentions
Sep 14, 2026
f693253
feat(omp): publish native slash commands in the composer menu
Sep 14, 2026
992a93c
feat(omp): context meter, compaction, usage limits, auth, self-update…
Sep 14, 2026
5b75de1
feat(omp): session fork/list, live command refresh, subagent progress…
Sep 14, 2026
25b68b4
feat(omp): import terminal sessions, honest provider labels, user docs
Sep 14, 2026
9c5c3f7
feat(omp): model catalog from omp metadata, account email, machine-le…
Sep 14, 2026
3094fb3
fix(omp): decode omp usage epoch-millis timestamps
Sep 14, 2026
94a92c8
fix(omp): mark the active model as catalog default so composer contro…
Sep 14, 2026
3e4e7a7
feat(omp): offer Oh My Pi in onboarding agents and project import copy
Sep 14, 2026
06be10e
docs(omp): note onboarding install, sign-in and project import
Sep 14, 2026
2132479
fix(omp): strip terminal escapes from message text; drop unused fork/…
Sep 14, 2026
1bba784
feat(omp): sync session rename to the thread, survive /fresh, flag si…
Sep 14, 2026
067010a
docs(omp): command parity, silent commands and worktree limits
Sep 14, 2026
297761d
feat(omp): argument autocomplete from command hints, real omp logo, s…
Sep 14, 2026
14ed34f
fix(omp): review follow-ups — OSC tails, argument range, cancelled ge…
Sep 14, 2026
1434242
feat(omp): integrate Oh My Pi provider on current main
nullStack65 Sep 15, 2026
959429b
fix(omp): satisfy current-main lint in the OMP integration
nullStack65 Sep 15, 2026
2d71304
fix(omp): drop no-op effect-diagnostics directives for current typecheck
nullStack65 Sep 15, 2026
ad9837e
feat(omp): refresh Oh My Pi integration onto current main (f4600d77)
nullStack65 Sep 15, 2026
d870717
Merge branch 'main' into feat/omp-main-integration-20260915
nullStack65 Sep 15, 2026
0a3e6c7
fix(omp): deny tools during unattended text generation
nullStack65 Sep 16, 2026
8f021c5
fix(omp): bound the usage probe for cold quota refreshes
nullStack65 Sep 16, 2026
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
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

T3 Code is an "agent harness control surface". It enables control of the agents on your machine with a best-in-class mobile app ([iOS](https://apps.apple.com/us/app/t3-code-remote-claude-more/id6787819824), [Android](https://play.google.com/store/apps/details?id=com.t3tools.t3code)), [web app](https://app.t3.codes) and [Electron-based desktop app](https://t3.codes).

Works with your subscriptions on Claude Code, Codex, Cursor, Grok Build, OpenCode, and Google Antigravity. If they're set up on your computer, T3 Code can control them.
Works with your subscriptions on Claude Code, Codex, Cursor, Grok Build, Oh My Pi (omp), OpenCode, and Google Antigravity. If they're set up on your computer, T3 Code can control them.

## "Wait, what are you selling me?"

Expand All @@ -13,12 +13,13 @@ We wanted something performant, remote-ready, and truly open. If we ever go the
## Installation

> [!WARNING]
> T3 Code currently supports Codex, Claude, Cursor, Grok Build, OpenCode, and Antigravity. Install and authenticate at least one provider before use:
> T3 Code currently supports Codex, Claude, Cursor, Grok Build, Oh My Pi (omp), OpenCode, and Antigravity. Install and authenticate at least one provider before use:
>
> - Codex: install [Codex CLI](https://developers.openai.com/codex/cli) and run `codex login`
> - Claude: install [Claude Code](https://claude.com/product/claude-code) and run `claude auth login`
> - Cursor: install [Cursor CLI](https://cursor.com/cli) and run `agent login`
> - Grok Build: install [Grok Build CLI](https://x.ai/cli) and run `grok login`
> - Oh My Pi (omp): install [Oh My Pi](https://github.com/can1357/oh-my-pi) and run `omp setup`
> - OpenCode: install [OpenCode](https://opencode.ai) and run `opencode auth login`
> - Antigravity: enable it in Settings, then use **Install Antigravity** and **Sign in with Google**. No CLI is required.

Expand Down
10 changes: 10 additions & 0 deletions apps/desktop/scripts/ensure-electron-runtime.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,16 @@ function installElectronRuntime(electronDir, version) {
]);
if (hostPlatform === "darwin") {
runChecked("ditto", ["-x", "-k", zipPath, NodePath.join(electronDir, "dist")]);
} else if (hostPlatform === "win32") {
// Windows ships no python3; PowerShell's Expand-Archive is always present.
runChecked("powershell", [
"-NoProfile",
"-NonInteractive",
"-Command",
`Expand-Archive -LiteralPath ${JSON.stringify(zipPath)} -DestinationPath ${JSON.stringify(
NodePath.join(electronDir, "dist"),
)} -Force`,
]);
} else {
runChecked("python3", [
"-c",
Expand Down
13 changes: 13 additions & 0 deletions apps/mobile/src/components/ProviderIcon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,19 @@ export function ProviderIcon(props: ProviderIconProps) {
);
}

if (props.provider === "omp") {
return (
<Svg width={size} height={size} viewBox="0 0 800 800" fill="none">
<Path
fill={mono}
fillRule="evenodd"
d="M165.29 165.29H517.36V400H400V517.36H282.65V634.72H165.29ZM282.65 282.65V400H400V282.65Z"
/>
<Path fill={mono} d="M517.36 400H634.72V634.72H517.36Z" />
</Svg>
);
}

if (props.provider === "cursor") {
return (
<Svg width={size} height={size} viewBox="0 0 466.73 532.09" fill="none">
Expand Down
Loading
Loading