Step 254: response budget system (truncation, continuation, pagination)

Optional budget parameter on getAST and getDiagnostics. Responses exceeding
the budget are truncated with continuation tokens for paginated follow-up.
Binary search finds max array elements fitting the budget. Diagnostics sorted
by severity (errors first) before truncation.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Bill
2026-02-11 15:54:01 +00:00
parent d6941da793
commit ba9da3fd55
6 changed files with 522 additions and 3 deletions

View File

@@ -1468,4 +1468,15 @@ target_link_libraries(step253_test PRIVATE
tree_sitter_java tree_sitter_rust tree_sitter_go
tree_sitter_org)
# Step 254: Response budget system
add_executable(step254_test tests/step254_test.cpp)
target_include_directories(step254_test PRIVATE src)
target_link_libraries(step254_test PRIVATE
nlohmann_json::nlohmann_json
unofficial::tree-sitter::tree-sitter
tree_sitter_python tree_sitter_cpp tree_sitter_elisp
tree_sitter_javascript tree_sitter_typescript
tree_sitter_java tree_sitter_rust tree_sitter_go
tree_sitter_org)
# Step 12: Dear ImGui shell scaffolding created (main.cpp exists but not built due to dependencies)