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
- No free-floating Markdown. User docs live in `docs/` (read `docs/README.md`, add pages to `docs.json` navigation, use standard Markdown + mermaid). Developer/test notes belong inline as comments.
39
+
- No free-floating Markdown. User docs live in `docs/` (read `docs/README.mdx`, add pages to `docs.json` navigation, use standard Markdown + mermaid). Developer/test notes belong inline as comments.
40
40
- For planning artifacts, use the `propose_plan` tool or inline comments instead of ad-hoc docs.
41
41
- Do not add new root-level docs without explicit request; during feature work rely on code + tests + inline comments.
42
42
- Test documentation stays inside the relevant test file as commentary explaining setup/edge cases.
@@ -168,6 +168,10 @@ Avoid mock-heavy tests that verify implementation details rather than behavior.
168
168
- When Plan Mode is requested, assume the user wants the actual completed plan; do not merely describe how you would devise one.
169
169
- Attach a net LoC estimate (product code only) to each recommended approach.
170
170
171
+
## Model: openai.\*
172
+
173
+
- Use the `gh` CLI for GitHub operations (e.g., opening/submitting PRs).
Copy file name to clipboardExpand all lines: docs/agentic-git-identity.md
+11-3Lines changed: 11 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -26,7 +26,9 @@ Create a separate GitHub account for your agent:
26
26
2. Use a distinctive username (e.g., `yourname-agent`, `yourname-ai`)
27
27
3. Use a separate email (GitHub allows plus-addressing: `yourname+ai@example.com`)
28
28
29
-
<Info>This is optional but recommended. You can also use your main account with a different email/name.</Info>
29
+
<Info>
30
+
This is optional but recommended. You can also use your main account with a different email/name.
31
+
</Info>
30
32
31
33
## Step 2: Generate Classic GitHub Token
32
34
@@ -57,7 +59,10 @@ Add the Git identity environment variables as [Project Secrets](/project-secrets
57
59
58
60
These environment variables will be automatically injected when the agent runs Git commands in that project.
59
61
60
-
<Info>If you need the agent identity outside of mux, you can alternatively set these as global environment variables in your shell configuration (`~/.zshrc`, `~/.bashrc`, etc.)</Info>
62
+
<Info>
63
+
If you need the agent identity outside of mux, you can alternatively set these as global
64
+
environment variables in your shell configuration (`~/.zshrc`, `~/.bashrc`, etc.)
<Warning>The "replace all" approach will disable platform keychain helpers and may break Git authentication for non-GitHub remotes (GitLab, Bitbucket, etc.).</Warning>
109
+
<Warning>
110
+
The "replace all" approach will disable platform keychain helpers and may break Git authentication
Copy file name to clipboardExpand all lines: docs/install.md
+12-3Lines changed: 12 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -22,7 +22,10 @@ Download pre-built binaries of `main` from [GitHub Actions](https://github.com/c
22
22
-`macos-dmg-arm64` (Apple Silicon)
23
23
-**Linux**: AppImage (portable, works on most distros)
24
24
25
-
<Info>Windows builds are only available from [releases](https://github.com/coder/mux/releases), not from development builds.</Info>
25
+
<Info>
26
+
Windows builds are only available from [releases](https://github.com/coder/mux/releases), not from
27
+
development builds.
28
+
</Info>
26
29
27
30
To download:
28
31
@@ -57,11 +60,17 @@ The app is code-signed and notarized by Apple, so it will open without security
57
60
3. Follow the installation prompts
58
61
4. Launch Mux from the Start menu or desktop shortcut
59
62
60
-
<Warning>Windows support is currently in alpha. Please [report any issues](https://github.com/coder/mux/issues) you encounter.</Warning>
63
+
<Warning>
64
+
Windows support is currently in alpha. Please [report any
65
+
issues](https://github.com/coder/mux/issues) you encounter.
66
+
</Warning>
61
67
62
68
### Testing Pre-Release Builds
63
69
64
-
<Warning>Only builds from the `main` branch are signed and notarized. If you're testing a build from a pull request or other branch, you'll need to bypass macOS Gatekeeper:</Warning>
70
+
<Warning>
71
+
Only builds from the `main` branch are signed and notarized. If you're testing a build from a pull
72
+
request or other branch, you'll need to bypass macOS Gatekeeper:
Copy file name to clipboardExpand all lines: docs/models.mdx
+22Lines changed: 22 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,6 +9,28 @@ See also:
9
9
10
10
mux supports multiple AI providers through its flexible provider architecture.
11
11
12
+
### First-class models
13
+
14
+
mux ships with a curated set of first-class models that we keep up to date with the frontier. You can also use any custom model from a supported provider with `/model <provider:model_id>`.
Copy file name to clipboardExpand all lines: docs/runtime/local.md
+9-3Lines changed: 9 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,9 +13,15 @@ Local runtime runs the agent directly in your project directoryβthe same direc
13
13
14
14
## Caveats
15
15
16
-
<Warning>**No isolation**: Multiple local workspaces for the same project see and modify the same files. Running them simultaneously can cause conflicts. mux shows a warning when another local workspace is actively streaming.</Warning>
17
-
18
-
<Warning>**Affects your working copy**: Agent changes happen in your actual project directory.</Warning>
16
+
<Warning>
17
+
**No isolation**: Multiple local workspaces for the same project see and modify the same files.
18
+
Running them simultaneously can cause conflicts. mux shows a warning when another local workspace
19
+
is actively streaming.
20
+
</Warning>
21
+
22
+
<Warning>
23
+
**Affects your working copy**: Agent changes happen in your actual project directory.
0 commit comments