Skip to content
Closed
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: 0 additions & 1 deletion docs/docs.json
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,6 @@
"default": true,
"groups": [
{ "group": "Start here", "pages": ["v6/index", "v6/quickstart", "v6/faq", "migrate-v6"] },
{ "group": "Build", "pages": ["v6/build/environments", "v6/build/tasks"] },
{ "group": "Run & scale", "pages": ["v6/run/deploy", "v6/run/models", "v6/run/signal", "v6/run/training"] },
{ "group": "Reference", "pages": ["v6/reference/environment", "v6/reference/tasks", "v6/reference/capabilities", "v6/reference/agents", "v6/reference/robots", "v6/reference/graders", "v6/reference/training", "v6/reference/types", "v6/reference/cli"] },
{ "group": "Advanced", "pages": ["v6/advanced/integrations", "v6/advanced/subagents", "v6/advanced/chat", "v6/advanced/patterns", "v6/advanced/harbor-convert"] },
Expand Down
2 changes: 1 addition & 1 deletion docs/v5/reference/cli/eval.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ hud cancel --all

## See Also

- [Tasks Reference](/v5/reference/tasks) - Task configuration
- [Tasks & Evaluation](/v5/building/tasks-and-evaluation) - Task configuration
- [Agents Reference](/v5/reference/agents) - Agent options
- [`hud rl`](/v5/reference/cli/rl) - RL training
- [`hud cancel`](/v5/reference/cli/misc) - Cancel remote jobs
4 changes: 2 additions & 2 deletions docs/v5/reference/cli/init.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ hud deploy # Build remotely & deploy to platform

## See Also

- [Build Environments](/build-environments) – Quickstart tutorial
- [Technical Spec](/build-environments/spec) – Exact runtime requirements
- [Scaffolding Environments](/v5/building/scaffolding) – Quickstart tutorial
- [Environments Reference](/v5/reference/environments) – Exact runtime requirements
- [hud dev](/v5/reference/cli/dev) – Development server (`--watch` for hot-reload)
- [hud build](/v5/reference/cli/build) – Build production images
2 changes: 1 addition & 1 deletion docs/v5/reference/cli/push.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -126,4 +126,4 @@ push:

- [`hud build`](/v5/reference/cli/build)
- [`hud analyze`](/v5/reference/cli/analyze)
- [Build Environments](/build-environments) - Getting started with HUD environments
- [Scaffolding Environments](/v5/building/scaffolding) - Getting started with HUD environments
2 changes: 1 addition & 1 deletion docs/v6/advanced/subagents.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ env = Environment(
)
```

Run the FastMCP server alongside the environment so the URL is live — for local iteration, `tools.run(transport="http", host="127.0.0.1", port=8080)`; in a built image, start it from your container entrypoint or an [`@env.initialize`](/v6/build/environments#lifecycle-hooks) hook. See [Capabilities](/v6/reference/capabilities) for the `mcp` capability details.
Run the FastMCP server alongside the environment so the URL is live — for local iteration, `tools.run(transport="http", host="127.0.0.1", port=8080)`; in a built image, start it from your container entrypoint or an [`@env.initialize`](/v6/reference/environment#lifecycle-hooks) hook. See [Capabilities](/v6/reference/capabilities) for the `mcp` capability details.

## How it looks to the orchestrator

Expand Down
2 changes: 1 addition & 1 deletion docs/v6/reference/capabilities.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@ The bundled provider agents open these automatically based on which capabilities
## See also

<CardGroup cols={2}>
<Card title="Environments" icon="cube" href="/v6/build/environments" />
<Card title="Environments" icon="cube" href="/v6/reference/environment" />
<Card title="Environment reference" icon="cube" href="/v6/reference/environment" />
<Card title="Agents" icon="robot" href="/v6/reference/agents" />
<Card title="Tasks & Tasksets" icon="list-check" href="/v6/reference/tasks" />
Expand Down
Loading