feat(agents): surface timeout budget in tool schemas and errors #82
Labels
No labels
auto/blocked-by-deps
auto/ci-timeout
auto/claimed-implementer
auto/claimed-merge
auto/claimed-reviewer
auto/driver-down
auto/invariant-violation
auto/last-attempt-tier-0
auto/last-attempt-tier-1
auto/last-attempt-tier-2
auto/last-attempt-tier-min
Automation Tracking
auto/needs-conflict-resolution
auto/needs-implementer
auto/postmortem
auto/ready-to-merge
auto/restart-throttled
auto/revert
auto/sentinel
auto/stale-inactivity
auto/unstable
Blocked
Bounty
$100
Bounty
$1000
Bounty
$10000
Bounty
$20
Bounty
$2000
Bounty
$250
Bounty
$50
Bounty
$500
Bounty
$5000
Bounty
$750
MoSCoW
Could have
MoSCoW
Must have
MoSCoW
Should have
Needs Feedback
Points
1
Points
13
Points
2
Points
21
Points
3
Points
34
Points
5
Points
55
Points
8
Points
88
Priority
Backlog
Priority
CI Blocker
Priority
Critical
Priority
High
Priority
Low
Priority
Medium
Signed-off: Owner
Signed-off: Scrum Master
Signed-off: Tech Lead
Spike
State
Completed
State
Duplicate
State
In Progress
State
In Review
State
Paused
State
Unverified
State
Verified
State
Wont Do
Type
Automation
Type
Bug
Type
Discussion
Type
Documentation
Type
Epic
Type
Feature
Type
Legendary
Type
Refactor
Type
Support
Type
Task
Type
Testing
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Blocks
Depends on
#77 Epic: LLM Agent Runtime Stabilization — reliability, resource enforcement & correctness hardening
cleveragents/cleveractors-core
#84 feat(agents): surface timeout budget in tool schemas and errors
cleveragents/cleveractors-core
Reference
cleveragents/cleveractors-core#82
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Metadata
Background and context
The tool agent
timeoutconfig field (Actor Configuration Standard §4.5, default1second) bounds "the maximum execution time in seconds for any single tool invocation." Of the tools that actually enforce it today, only two do:cleveractors.agents.tool.ToolAgent._execute_shell_command(backing theshelltool) andcleveractors.agents.tool.ToolAgent._http_request_tool.The LLM-facing tool schemas sent to the model for function calling —
cleveractors.agents.llm_tools._BUILTIN_TOOL_SCHEMAS, bound viacleveractors.agents.llm_tools.normalize_tool_entryand consumed bycleveractors.agents.llm.LLMAgent— never mention this constraint. The LLM has no way to know, ahead of a call, thatshell/http_requestinvocations are time-boxed, or that the limit is adjustable via the agent'stimeoutconfig field. This is the same class of gap that ADR-2030 (D-4) already fixed forfile_readvs. shell commands: give the LLM an actionable signal instead of an opaque failure. We're missing the equivalent for timeouts.Separately, when a timeout does fire today, only the
shellpath names a number of seconds, and neither path names the config field that controls it.Current behavior
_BUILTIN_TOOL_SCHEMAS["shell"]and_BUILTIN_TOOL_SCHEMAS["http_request"](incleveractors.agents.llm_tools) describe only the functional arguments (command/args,url/method/headers/data) — neither mentions that the call is subject to an execution timeout.ToolAgent._execute_shell_commandraises:ExecutionError(f"Command '{command}' timed out after {self.timeout} seconds")— this names the elapsed seconds but never the
timeoutconfig field that controls it.ToolAgent._http_request_tooldoes not distinguish a timeout from any other request failure: the whole call is wrapped in a singleexcept Exception as e: raise ExecutionError(f"HTTP request failed: {e}"). The LLM sees a generic failure with no indication the cause was a timeout, let alone that atimeoutconfig field exists.Expected behavior
self.timeout(currentlyshellandhttp_request) has a schema description telling the LLM the call is bounded by a configurable execution timeout, so the model can factor that in (e.g. avoid issuing commands it can predict will run long).ExecutionErrormessage states both the number of seconds involved AND explicitly namestimeoutas the agent config field that controls it, so the model (or a human reading logs) knows what to adjust.ToolAgent._http_request_tooldistinguishes a request timeout from other request failures (connection errors, HTTP error statuses, etc.) instead of collapsing everything into one generic message.self.timeoutremains the sole config field (default1s, per §4.5); its default value and semantics are unchanged.Out of scope (noted for awareness, not addressed here):
ToolAgent._file_read_tooldoes not useself.timeoutat all today — the read is a plain synchronousopen()/.read()call with no timeout wrapping, even though §4.5 saystimeoutapplies to "any single tool invocation." That is a separate enforcement gap (not a schema/message gap) and is left for a follow-up issue if the project decides to pursue it.Acceptance criteria
_BUILTIN_TOOL_SCHEMAS["shell"]["description"]states that shell command execution is bounded by the agent's configuredtimeout(seconds)._BUILTIN_TOOL_SCHEMAS["http_request"]["description"]states that the request is bounded by the agent's configuredtimeout(seconds).ToolAgent._execute_shell_command's timeoutExecutionErrormessage explicitly namestimeoutas the adjustable agent config field, in addition to the elapsed seconds it already reports.ToolAgent._http_request_toolraises a distinctExecutionErroron request timeout (as opposed to other request failures) whose message states the configured timeout value and namestimeoutas the adjustable agent config field.ExecutionErrorwith their existing (non-timeout) message shape — behavior for non-timeout failures is unchanged.nox -s coverage_reportstays ≥ 97%.Supporting information
docs/index.md) — definestimeoutas "Maximum execution time in seconds for any single tool invocation."docs/adr/ADR-2030-tool-calling-spec-extensions.md— D-1 establishes_BUILTIN_TOOL_SCHEMASas LLM-facing hints (not part of the normative contract); D-4/D-6 establish the precedent of enriching error messages with actionable, self-correction guidance for the LLM. This issue extends both precedents to thetimeoutfield.a8f68b8:cleveractors.agents.llm_tools._BUILTIN_TOOL_SCHEMAScleveractors.agents.llm_tools.normalize_tool_entrycleveractors.agents.tool.ToolAgent._execute_shell_commandcleveractors.agents.tool.ToolAgent._shell_toolcleveractors.agents.tool.ToolAgent._http_request_toolcleveractors.agents.llm.LLMAgent(binds_lc_toolsfrom the schemas above; also readsself.config.get("timeout", 1)when constructing an internalToolAgentto dispatch a tool call)Subtasks
_BUILTIN_TOOL_SCHEMAS["shell"]and["http_request"]descriptions incleveractors.agents.llm_toolsto mention the configurable execution timeoutToolAgent._execute_shell_command's timeout error message to name thetimeoutconfig fieldToolAgent._http_request_toolto catch the request-timeout condition distinctly and raise anExecutionErrornaming thetimeoutconfig field and its configured valueshell/http_requestschema descriptions mention the timeout budgetExecutionErrormessage for both tools names thetimeoutconfig fieldDefinition of Done
This issue is complete when:
timeoutargument #111timeoutargument #112