Simplify#418
Conversation
…ariants' with 'tasks'.
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: 0577a2581b
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
Docs: adopt origin/v6 prose, faq.mdx, signal move to run/, and the codex-coding -> coding-agent rename, re-expressed on this branch's API (env.workspace, hud.graders, task.run -> Job, hud serve, task subcommands). Code: keep gateway-by-default eval UX and once-per-process bwrap warning; keep lazy Workspace lifecycle and add the authlib warning filter.
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: f141da1f68
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
…ks and update related tests. Enhance task upload payload to ensure correct scenario formatting.
There was a problem hiding this comment.
Cursor Bugbot has reviewed your changes and found 1 potential issue.
There are 2 total unresolved issues (including 1 from previous review).
❌ Bugbot Autofix is OFF. To automatically fix reported issues with cloud agents, enable autofix in the Cursor dashboard.
Reviewed by Cursor Bugbot for commit b09f8b7. Configure here.
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: b09f8b7b9a
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
| if force: | ||
| return Taskset(target_ref, []) |
There was a problem hiding this comment.
Resolve taskset IDs before forced uploads
When --force is used with a stored taskset ID, --id, or a positional UUID, this returns an empty remote taskset named with the raw UUID and skips the normal lookup that recovers the display name. The later upload uses plan.taskset_name as the /tasks/upload name, so forcing an existing ID can upload to/create a taskset literally named by the UUID instead of updating the intended taskset. Resolve IDs to their display name before diffing against an empty remote set.
Useful? React with 👍 / 👎.

Note
Low Risk
Changes are mostly documentation, cookbook relocation, and removal of the optional pre-push hook; CI still runs the same checks. No substantive runtime SDK changes appear in the diff.
Overview
Docs and developer workflow are aligned with the v6 model: agent guides now describe capabilities, tasks, the rollout engine, and
cookbooks/; pytest is documented and run from the repo root (CI drops--rootdir=hud, matchingtestpathsinpyproject.toml). The shared.githooks/pre-pushhook is removed—contributors rely on CI and manual checks unless they add their own hook.Runnable examples move into standalone uv projects under
cookbooks/:a2a-chat(A2A server overhud.Chat, samplechat_envusing@env.task/EvaluationResult, clients) andcodex-coding(Workspace+OpenAIAgentCodex-style agent). Long-formdocs/cookbooks/*pages are deleted in favor of v6 cookbook nav and these folders.Documentation site structure namespaces legacy content under
/v5/..., trims some v6 nav (e.g. separate “Build” group), addsv6/cookbooks/a2a-chat, and introduces redirects from old paths (/building/*,/cookbooks/*, etc.). Migration and skill docs are updated (TasknotVariant,hud serve,env.workspace(),hud.graders, A2A via cookbook notChatService). v5 tool reference pages are restored/expanded (filesystem, grounding, memory) underdocs/v5/tools/.Reviewed by Cursor Bugbot for commit b09f8b7. Bugbot is set up for automated code reviews on this repo. Configure here.