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
1 change: 1 addition & 0 deletions content/docs/cli/guides/configuration-and-flags.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ See [Concepts → Transports](/cli/concepts/transports) for the selection rules.
| Variable | Effect |
| --- | --- |
| `MOGPLEX_HOME` | Override the home directory location (default `~/.mogplex/`). |
| `AGENTS_HOME` | Optional user command home. When set, slash-command discovery checks `$AGENTS_HOME/commands/` before `$MOGPLEX_HOME/commands/`. |
| `CODEX_HOME` | Deprecated fallback; use `MOGPLEX_HOME` instead. |

## `config.toml`
Expand Down
6 changes: 4 additions & 2 deletions content/docs/configure-and-extend/custom-slash-commands.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,10 @@ $AGENTS_HOME/commands/**/*.md
$MOGPLEX_HOME/commands/**/*.md
```

`$MOGPLEX_HOME` defaults to `~/.mogplex`. The `.agents/commands` path is the
preferred project path. `.mogplex/commands` still works as a legacy alias.
`$AGENTS_HOME` is optional. When it is set, Mogplex checks it before
`$MOGPLEX_HOME` for user-scoped commands. `$MOGPLEX_HOME` defaults to
`~/.mogplex`. The `.agents/commands` path is the preferred project path.
`.mogplex/commands` still works as a legacy alias.

Nested directories become namespaced commands:

Expand Down
2 changes: 1 addition & 1 deletion content/docs/web/api/quickstart.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ Representative response:
"cancelUrl": "/api/v1/mogplex/runs/run-uuid/cancel",
"branch": {
"base": "main",
"working": "mogplex/run/2026-05-17/inspect-tests",
"working": "mogplex/run/YYYY-MM-DD/inspect-tests",
"createBranch": true
},
"replayed": false
Expand Down
1 change: 1 addition & 0 deletions next.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ const withMDX = createMDX();
/** @type {import('next').NextConfig} */
const config = {
reactStrictMode: true,
// Dev-only: allow local smoke checks to access the dev server via 127.0.0.1.
allowedDevOrigins: ['127.0.0.1'],
turbopack: {
root: __dirname,
Expand Down