feat(attachment_bear_note): Add exclude_archived search param#798
Merged
Conversation
Bear's `search` attachment URI now accepts an `exclude_archived=true` query parameter. When set, archived notes are dropped from the results before their content is fetched, so the assistant never sees stale or retired notes even when they match the tag or query. Archived notes still count as matches under the hood; they're simply not returned. This is useful for tag-based searches where archived notes accumulate over time and would otherwise pollute context with outdated content. The `_bear-note` justfile recipe now appends `&exclude_archived=true` to every Bear search URI it constructs, making this the default behaviour for all project-tooling lookups. Signed-off-by: Jean Mertz <git@jeanmertz.com>
Signed-off-by: Jean Mertz <git@jeanmertz.com>
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.
Bear's
searchattachment URI now accepts anexclude_archived=truequery parameter. When set, archived notes are dropped from the results before their content is fetched, so the assistant never sees stale or retired notes even when they match the tag or query.Archived notes still count as matches under the hood; they're simply not returned. This is useful for tag-based searches where archived notes accumulate over time and would otherwise pollute context with outdated content.
The
_bear-notejustfile recipe now appends&exclude_archived=trueto every Bear search URI it constructs, making this the default behaviour for all project-tooling lookups.