fix(status): recommend ranges view in acp_status prompt snippet - #233
Open
ranxianglei wants to merge 1 commit into
Open
fix(status): recommend ranges view in acp_status prompt snippet#233ranxianglei wants to merge 1 commit into
ranxianglei wants to merge 1 commit into
Conversation
The promptSnippet suggested scope:'uncompressed' + view:'messages', steering models to the per-message firehose. The ranges view is the right default (now grouped by conversation turn and sorted by size in acp-kernel PR #165), so recommend that instead.
📦 Built Extension ArtifactBranch: Option A — Install from npm PR tag (recommended)pi install npm:billion-context-pi@pr-233Each push to this PR publishes a new version under the Option B — Download artifact
tar xzf billion-context-pi-pr233.tgz
pi install ./packageThis comment is automatically updated on each push. |
Owner
Author
|
[bot] Reviewed and verified PR branch
Ready for merge (human-only per repo rules). |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Problem
acp_statuspromptSnippet suggestedscope:"uncompressed" + view:"messages", steering models to the per-message firehose. Combined with the kernel's ranges view collapsing dense refs into one giant range, the tool's output was not actionable by range - see #193.Fix
promptSnippet now recommends
acp_status({ scope: "uncompressed" })(the ranges view), which acp-kernel PR ranxianglei/acp-kernel#165 makes actionable: ranges grouped by conversation turn, sorted by size.One-line change in src/status-tool.ts. typecheck + 428 tests + build all pass.