Skip to content
Open
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
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ bunx @fallom/openui

1. Run `openui` in your project directory
2. Browser opens at `http://localhost:6969`
3. Click "+" to spawn agents (Claude Code, OpenCode, or Ralph Loop)
3. Click "+" to spawn agents (Claude Code, GitHub Copilot, OpenCode, or Ralph Loop)
4. Click any node to open its terminal
5. Drag nodes to organize, create categories to group them

Expand Down Expand Up @@ -128,7 +128,7 @@ claude --plugin-dir $(pwd)/claude-code-plugin
## Requirements

- Bun 1.0+
- One of: Claude Code, OpenCode, or Ralph Loop
- One of: Claude Code, GitHub Copilot, OpenCode, or Ralph Loop

### Claude Code Plugin (Auto-installed)

Expand Down
1 change: 1 addition & 0 deletions client/src/components/NewSessionModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ const iconMap: Record<string, any> = {
code: Code,
cpu: Cpu,
brain: Brain,
github: Github,
};

interface LinearTicket {
Expand Down
8 changes: 8 additions & 0 deletions server/routes/api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,14 @@ apiRoutes.get("/agents", (c) => {
color: "#F97316",
icon: "sparkles",
},
{
id: "copilot",
name: "GitHub Copilot",
command: "copilot",
description: "GitHub's official Copilot CLI coding agent",
color: "#6E7681",
icon: "github",
},
{
id: "opencode",
name: "OpenCode",
Expand Down