You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Coder Studio is a self-hosted browser workspace for AI coding agent workflows. The most useful early feedback is concrete: what you tried, what happened, what you expected, and where the first-run path became unclear.
6
+
7
+
## Good First Feedback
8
+
9
+
Please open an issue when you hit:
10
+
11
+
- installation problems
12
+
- Provider CLI detection problems
13
+
- first agent session confusion
14
+
- mobile or remote access setup issues
15
+
- documentation that does not match the current UI
16
+
- a workflow that feels promising but needs one missing capability
17
+
18
+
## Before Filing An Issue
19
+
20
+
Run these commands when relevant:
21
+
22
+
```bash
23
+
node --version
24
+
coder-studio version
25
+
coder-studio status
26
+
coder-studio logs
27
+
which claude
28
+
which codex
29
+
claude --version
30
+
codex --version
31
+
```
32
+
33
+
Do not paste secrets, API keys, private source code, or full logs that contain sensitive data.
Before handing off code changes, run the relevant command:
47
+
48
+
```bash
49
+
pnpm ci:verify
50
+
```
51
+
52
+
For docs-only changes, at least run:
53
+
54
+
```bash
55
+
git diff --check
56
+
pnpm ci:lint
57
+
```
58
+
59
+
## Pull Request Expectations
60
+
61
+
- Keep changes focused.
62
+
- Do not bundle unrelated refactors.
63
+
- Include screenshots or short recordings for UI changes.
64
+
- Update docs when behavior changes.
65
+
- Mention what verification you ran.
66
+
67
+
## Security
68
+
69
+
Do not report sensitive security issues in public issues if they include exploitable details. Open a minimal public issue asking for a private contact path, or contact the maintainer through the repository owner profile.
Copy file name to clipboardExpand all lines: README.md
+24-17Lines changed: 24 additions & 17 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,11 +4,11 @@
4
4
5
5
# Coder Studio
6
6
7
-
**The all-in-one vibe coding workspace for AI agents.**
7
+
**Self-hosted browser workspace for AI coding agents.**
8
8
9
-
Coder Studio brings your code editor, Git, terminals, AI coding agents, session review, notifications, work analysis, and Skills into one browser workspace.
9
+
Coder Studio brings Claude Code, Codex, terminals, files, Git diff review, Supervisor loops, Work Analysis, and Skills into one browser workspace you run on your own machine.
10
10
11
-
It helps keep agent context, progress, and follow-up work visible across desktop, tablet, and phone, so vibe coding feels less scattered and more controllable.
11
+
Use it when raw terminal-only AI coding starts to feel scattered: start an agent task on desktop, review the changed files and diff beside the session, monitor long-running work, and reopen the same workspace from a tablet or phone.
12
12
13
13
Works with popular coding agents including Claude Code, Codex, Gemini CLI, Cursor Agent, OpenCode, and Aider-style CLI agents.
14
14
@@ -17,16 +17,27 @@ Works with popular coding agents including Claude Code, Codex, Gemini CLI, Curso
<divalign="center">Preview the full workspace layout built for agent runs, review, supervision, and device switching.</div>
29
29
30
+
## What You Can Try In 5 Minutes
31
+
32
+
1. Install with `npm install -g @spencer-kit/coder-studio`.
33
+
2. Launch with `coder-studio open`.
34
+
3. Open one local repository.
35
+
4. Start an agent session. For a first trial, Claude or Codex is the recommended path.
36
+
5. Ask the agent for a small change, then review the Git diff beside the session.
37
+
6. Reopen the same workspace from a tablet or phone to check progress.
38
+
39
+
Coder Studio is not a cloud IDE, not a VS Code replacement, and not an AI model provider. It is a self-hosted workbench around the AI coding agents and local tools you already use.
40
+
30
41
## Why Coder Studio?
31
42
32
43
Vibe coding feels fast until the agent output turns into real project work: you still need to run agents, inspect edits, manage Git, monitor long tasks, and improve the next run. Coder Studio keeps that loop in one programming workbench.
@@ -136,17 +147,14 @@ The same workspace URL works across all devices — interface adapts automatical
136
147
137
148
| Resource | Description |
138
149
|----------|-------------|
139
-
|[Quick Start Guide](docs/help/quick-start.md)| Installation to first workspace |
140
-
|[App Overview](docs/help/app-overview.md)| Core concepts and features |
141
-
|[Agent CLI Setup](docs/help/providers.md)| Install and connect coding agent CLIs |
142
-
|[Desktop Guide](docs/help/desktop-guide.md)| PC interface and shortcuts |
0 commit comments