L/docs updates agent#392
Conversation
There was a problem hiding this comment.
Cursor Bugbot has reviewed your changes and found 2 potential issues.
❌ Bugbot Autofix is OFF. To automatically fix reported issues with cloud agents, enable autofix in the Cursor dashboard.
Reviewed by Cursor Bugbot for commit 5dc58fa. Configure here.
| return "multi-select" | ||
| if all(isinstance(v, (int, float)) for v in non_none): | ||
| return "number" | ||
| return "text" |
There was a problem hiding this comment.
Unreachable single-select branch due to inference gap
Low Severity
_infer_column_type documents returning "single-select" but only ever returns "text", "number", or "multi-select". This makes the if col_type == "single-select" branch in _build_column_definitions unreachable dead code. String columns that could be single-select (e.g., ["easy", "medium", "hard"]) will always be inferred as "text" and won't receive options metadata.
Additional Locations (1)
Reviewed by Cursor Bugbot for commit 5dc58fa. Configure here.


Note
Medium Risk
Medium risk because
hud sync tasksdiff/signature logic and upload payloads now include custom columns and inferred column schemas, which can change what gets uploaded and how the platform interprets task metadata; the rest is largely documentation reorganization.Overview
CLI:
hud sync tasksnow supports per-task customcolumnsthat participate in diff signatures, upload ascolumn_values, and auto-infer/merge evalset column schemas; it also adds--exportto write remote tasks to.jsonor flattened.csv.SDK/agents: Adds
Task.columnsto the task model and improves missing-API-key error messages inClaudeAgent,OpenAIAgent, andGeminiAgent.Docs: Major reorg—removes older “concepts/testing/best practices/deploy/environments/tools index” pages, adds new “Building” pages (
scaffolding,tasks-and-evaluation,running-at-scale,environments-as-data), expandsadvanced/patternsto cover sandboxing/mocking, and updates site navigation and cross-links accordingly.Reviewed by Cursor Bugbot for commit 573ab64. Bugbot is set up for automated code reviews on this repo. Configure here.