How do I read verifier feedback?
Open Hive Agents > Logs and click a run. In the run detail sheet, review the node overview and trace stages. Rejected nodes include the reason and required fix from verification. The next execute pass receives that rejection feedback so the executor can try again. Deterministic checks run before semantic verification. They catch invalid JSON, blank required fields, nested JSON strings, and URL fields that do not resolve. Optional schema fields should be returned asnull when unused; the platform fills omitted nullable keys before schema validation, but blank required fields still fail verification.
What should I tune first?
Start with the stage that failed:- Tune PLAN when nodes are poorly decomposed or verification criteria are vague
- Tune EXECUTE when outputs are incomplete, unsupported by sources, or missing tool work
- Tune VERIFY when good outputs are rejected or weak outputs pass
- Tune REPEAT when the run stops too early or spends too long retrying similar failures
Large multi-document or spreadsheet objectives
When the objective spans a long brief plus an example spreadsheet (or similar multi-file work):- On each Knowledge Base item, raise Maximum chunk length (about 1500–2000) and set chunking to Advanced so overlap applies. Default chunking at 500 characters with no overlap shreds long docs into fragments that are easy to mis-attribute across files.
- After changing chunk settings, re-run item embedding / source preparation so retrieval uses the new chunks.
- On the Knowledge Base itself, keep search score threshold around 0.1 for hybrid search (the platform default) and keep search chunk limit at about 8 (or raise toward 10–20 for multi-file sources). A hybrid threshold of 0.5 is retrieval-hostile for agent-task queries and can return zero chunks even when the vector index is populated.
- Prefer a stronger EXECUTE model or higher reasoning effort for cross-document extraction and citation work.
- Word the run objective so PLAN creates one node per output sheet or section, and so EXECUTE nodes return structured intermediate rows — not a final formatted spreadsheet. COMPOSE owns the spreadsheet-ready assembly.
- Raise Max Concurrent Nodes in Budget Settings when you expect more than about five parallel nodes.
file_tools at invoke time. Grounding comes from platform SOURCE CONTEXT, not read_file. Downloadable files for spreadsheet or document objectives are produced by the platform after compose.
How do completion modes affect iteration?
Strict mode fails the run when required nodes remain unverified after the max passes. Best effort mode completes with verified work and flags the unverified nodes. Use it when partial verified output is acceptable. When the pass limit is reached with at least one verified node, the run still attempts COMPOSE from those verified outputs, then completes with unverified nodes flagged. If no nodes verified, the run completes without a composed final response. Best effort does not bypass final composition when compose does run: if Compose cannot pass after Max compose attempts, the run fails.Do edits affect running tasks?
Blueprint edits affect future runs. Stage agent settings can also affect later activity cycles in an already-running task because the runtime reads the current stage agent when an activity starts. Avoid changing models, tools, or budget settings mid-run unless you intend to change the next stage cycle. For clean comparisons, wait for the run to finish, edit the blueprint, then start a new run with the same objective.How do I compare runs?
Use Hive Agents > Logs. Compare:- Objective
- Status
- Pass number
- Node counts
- Source counts
- Total tokens
- Total cost
- Duration
- Final response
- Rejection reasons

