Skip to content

Commit cfc39d4

Browse files
committed
docs: title the runtime pages by their name, not by an action
"Running pi" / "Running Claude Code" put a verb in front of every sidebar entry, which reads oddly in a list of nouns next to Agents and Getting Started, and buries the thing the reader is scanning for. The pages are now "Pi" and "Claude Code" -- capitalised as titles, while prose keeps the project's own lowercase "pi". Link text across the overview, the implementer page and between the two runtime pages follows. Signed-off-by: Wayne Sun <gsun@redhat.com>
1 parent 4b44fa0 commit cfc39d4

5 files changed

Lines changed: 9 additions & 9 deletions

File tree

docs/.vitepress/config.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -208,8 +208,8 @@ export default defineConfig({
208208
collapsed: true,
209209
link: "/runtimes",
210210
items: [
211-
{ text: "Running Claude Code", link: "/runtimes/claude" },
212-
{ text: "Running pi", link: "/runtimes/pi" },
211+
{ text: "Claude Code", link: "/runtimes/claude" },
212+
{ text: "Pi", link: "/runtimes/pi" },
213213
],
214214
},
215215
{

docs/contributing/runtime-implementation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ The `dummy` runtime executes a YAML script of operations inside the real sandbox
210210

211211
## pi runtime internals (#6464)
212212

213-
User-facing pi behaviour is in [Running pi](../runtimes/pi.md). This section keeps the
213+
User-facing pi behaviour is in [Pi](../runtimes/pi.md). This section keeps the
214214
verification provenance: what was checked against pi's source, on which version, and what must be
215215
re-checked on a `PI_VERSION` or extension bump.
216216

docs/runtimes.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ On Claude Code, pass an alias (`opus`, `sonnet`, `haiku`, `fable`) or a model id
9797

9898
On pi, a model is `provider/id` — aliases and bare ids still work, and the provider comes from
9999
`FULLSEND_PI_PROVIDER` (default `anthropic-vertex`). pi reaches Claude, Gemini **and** Grok, each
100-
through its own provider; see [Running pi › Models and providers](runtimes/pi.md#models-and-providers).
100+
through its own provider; see [Pi › Models and providers](runtimes/pi.md#models-and-providers).
101101

102102
Because harness `model:` cannot contain `/` (`validModelName` is `^[a-zA-Z0-9_.@-]+$`), a harness
103103
selects a pi provider with a bare `model:` plus `FULLSEND_PI_PROVIDER`.
@@ -136,8 +136,8 @@ Full per-key detail, including the exact `--tools` mapping and allowlist parsing
136136

137137
## Related docs
138138

139-
- [Running Claude Code](runtimes/claude.md) — models, fallback chains, behaviour notes
140-
- [Running pi](runtimes/pi.md) — models and providers, behaviour differences, troubleshooting
139+
- [Claude Code](runtimes/claude.md) — models, fallback chains, behaviour notes
140+
- [Pi](runtimes/pi.md) — models and providers, behaviour differences, troubleshooting
141141
- [Implementing an agent runtime](contributing/runtime-implementation.md) — security matrix, interfaces, hook contract, sandbox layout
142142
- [Running agents locally](guides/user/running-agents-locally.md) — step-by-step local runs
143143
- [architecture.md](architecture.md) — where the runtime sits

docs/runtimes/claude.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Running Claude Code
1+
# Claude Code
22

33
[Claude Code](https://claude.com/claude-code) is fullsend's default runtime. Every role is supported,
44
and nothing needs configuring to use it — this page is the operational detail once you are on it.
@@ -73,5 +73,5 @@ marker passes through untouched.
7373
## See also
7474

7575
- [Agent runtimes](../runtimes.md) — choosing and selecting a runtime
76-
- [Running pi](pi.md) — the second runtime, for Grok and Gemini
76+
- [Pi](pi.md) — the second runtime, for Grok and Gemini
7777
- [Running agents locally](../guides/user/running-agents-locally.md) — local runs

docs/runtimes/pi.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Running pi
1+
# Pi
22

33
[pi](https://github.com/earendil-works/pi) is fullsend's second agent runtime, opt-in per org or
44
repo. It reaches models Claude Code cannot — **Grok** and **Gemini** alongside Claude — through the

0 commit comments

Comments
 (0)