feat(agents): add offset-based pagination to file_read #83
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.
Depends on
#85 feat(agents): add offset-based pagination to file_read
cleveragents/cleveractors-core
Reference
cleveragents/cleveractors-core#83
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
ToolAgent._file_read_tool(cleveractors.agents.tool) always reads a file from the beginning:f.read()loads the entire file, and the optionalmax_charsargument (added by ADR-2030 D-3) only bounds where the returned content stops — it always slicescontent[:max_chars], i.e. from position 0. There is no.seek()/.tell()or equivalent anywhere in the codebase.This means once a large file is truncated at
max_chars, there is no way to retrieve the next chunk. Per ADR-2030's own guidance embedded in the tool schema (cleveractors.agents.llm_tools._BUILTIN_TOOL_SCHEMAS["file_read"]: "Use 8000 for scanning, 16000 for analysis"), the LLM is explicitly steered toward truncated reads for large files, but is given no built-in mechanism to continue past the truncation point. Today the only workaround is falling back to theshelltool (tail -c +N,sed -n,dd skip=...) — exactly the kind of awkward, error-prone detour ADR-2030 (D-4) already eliminated for shell-commands-passed-as-paths.Adding an
offsetargument lets the LLM page through a large file across multiplefile_readcalls without needing shell fallbacks, and without re-reading (and re-spending context on) content it already saw.Current behavior
file_readhas nooffsetargument in its schema (_BUILTIN_TOOL_SCHEMAS["file_read"]["parameters"]) or its implementation (ToolAgent._file_read_tool).fileandmax_charsalways return the identical (truncated) prefix.[FILE_READ_SUCCESS]header, or elsewhere — for the LLM to learn that more content exists beyond a truncated read, or what offset to request next.Expected behavior
file_readaccepts an optionaloffsetargument (default0, preserving all current behavior when omitted) that starts the returned content at that position within the file instead of position 0.max_chars,offsetallows retrieving a bounded window[offset, offset + max_chars)of the file, enabling sequential pagination across multiple calls.[FILE_READ_SUCCESS]header (and/or theTRUNCATEDmarker) is extended so the LLM can tell, from the response alone, whether more content remains past the returned window and — ideally — what offset to pass next, without it having to computeoffset + max_charsitself from scratch.ExecutionErrorrather than an unhandled exception or silent empty content.offsetis omitted — this is purely additive, per §1.3 of the Actor Configuration Standard (compliant implementations MAY provide additional tool arguments).Open design questions the ADR below MUST resolve
These are genuine design decisions, not implementation details to leave implicit:
offset: characters (consistent withmax_chars, which already counts decoded characters since the file is opened in text mode) vs. bytes vs. lines. Characters is the natural choice for consistency withmax_chars, but the ADR must state this explicitly and justify it.offsetwould be (e.g. extending the existingTRUNCATED to N charsconvention with something like| MORE_CONTENT_AT_OFFSET: N).offsetshould (eventually) paginate very large directory listings too, or is explicitly deferred to a future issue.max_charsalready does today), or whether byte-level seeking is required for large-file efficiency. Given_file_read_toolalready reads the whole file formax_chars, keeping the same approach foroffsetis likely acceptable for v1 — but the ADR must say so explicitly rather than leaving it to be inferred from the diff.Acceptance criteria
_BUILTIN_TOOL_SCHEMAS["file_read"]["parameters"](cleveractors.agents.llm_tools) documents a new optionaloffsetparameter, including its unit and interaction withmax_chars.ToolAgent._file_read_toolacceptsoffset, defaulting to0; omitting it reproduces byte-for-byte identical output to current behavior (regression guard).offset=Nreturns content starting at character positionNof the file (not position 0).offsetor a non-integeroffsetraisesExecutionErrorwith a clear message (mirroring the existingmax_charsinteger-validation pattern).offsetat or beyond the file's length raisesExecutionErroror returns a clearly-labeled empty-content response (per the ADR's decision) — not an unhandledIndexError/silent empty string.docs/adr/ADR-2033-file-read-offset-pagination.mdexists, is written in the Context/Decision/Consequences/Alternatives-Considered format used by ADR-2030/2031/2032, and resolves all the open design questions listed above.nox -s coverage_reportstays ≥ 97%.Supporting information
docs/index.md) — definesfile_read's baseline argument set (file/args[0]) and states additional arguments MAY be handled by implementations.docs/adr/ADR-2030-tool-calling-spec-extensions.md— D-2 (directory listing) and D-3 (max_charstruncation) are the direct precedent this issue extends; D-4 establishes the precedent of giving the LLM an actionable path instead of a dead end, which is the same motivation foroffset.a8f68b8:cleveractors.agents.tool.ToolAgent._file_read_toolcleveractors.agents.llm_tools._BUILTIN_TOOL_SCHEMAS["file_read"]cleveractors.agents.llm_tools.normalize_tool_entrySubtasks
docs/adr/ADR-2033-file-read-offset-pagination.md(Context/Decision/Consequences/Alternatives Considered), resolving the open design questions above — required, not optional, since this changes tool behavior and its LLM-facing schemaoffsetparameter to_BUILTIN_TOOL_SCHEMAS["file_read"]incleveractors.agents.llm_tools, per the ADR's decisionsoffsethandling inToolAgent._file_read_tool, including validation and continuation signaling, per the ADR's decisionsoffset=0matches current (no-offset) behavior exactlyoffset=Nreturns the expected windowed contentoffsetandmax_charsto page through a file across two calls with no gap or overlapDefinition of Done
This issue is complete when:
docs/adr/ADR-2033-file-read-offset-pagination.mdis merged in the same PR as the implementation, with statusaccepted.