docs: search steering feature page; 1Password encrypted-only posture - #77176
Open
andrexibiza wants to merge 1 commit into
Open
docs: search steering feature page; 1Password encrypted-only posture#77176andrexibiza wants to merge 1 commit into
andrexibiza wants to merge 1 commit into
Conversation
Two public-docs changes: 1. New feature page (user-guide/features/search-steering.md, registered in sidebars.ts): zero-match search steering + multi-path recovery presented as a product feature — case-insensitive/literal/hidden-file probe hints on zero-match content searches, space/comma-separated path recovery, ripgrep primary with grep fallback. 2. onepassword.md: the 1Password integration is documented with the security posture as the feature — encrypted-only AES-GCM disk cache (op_cache.enc.json, legacy plaintext migrated+removed), cache_ttl_seconds: 0 disables cache reuse entirely (fresh fetch, nothing on disk), OP_SERVICE_ACCOUNT_TOKEN/OP_CONNECT_TOKEN/OP_SESSION_* stripped from all spawned children (op child receives them via its explicit allowlist). Both docs QA'd by independent critique agents before commit; behavioral claims traced to the actual code (is_fresh(0) -> False, _is_hermes_internal_secret strip contract, probe hint strings); npm run build passes.
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.
What's in this PR
Two public-docs changes, both QA'd by independent critique agents before shipping.
1. New feature page: search steering
website/docs/user-guide/features/search-steering.md(registered insidebars.ts) presents zero-match search steering + multi-path recovery as a product feature:2. 1Password: the security posture is the feature
website/docs/user-guide/secrets/onepassword.mdnow leads with the posture section (mirroring the Bitwarden doc) and documents the hardened reality:op_cache.enc.jsonunder AES-GCM; a plaintext cache is never written. Legacy plaintextop_cache.jsonis migrated and removed on first read.cache_ttl_seconds: 0disables cache reuse entirely — every fetch resolves fresh, nothing read from or written to disk (this corrects an earlier draft that wrongly said values were "reused in process memory";is_fresh(0) → False, so both cache layers are off).OP_SERVICE_ACCOUNT_TOKEN,OP_CONNECT_TOKEN, andOP_SESSION_*are stripped from every spawned child; theopchild receives them explicitly through its own allowlisted env.Verification
CachedFetch.is_fresh()semantics, every other behavioral claim traces to the code (_is_hermes_internal_secretstrip contract,_op_child_envallowlist), the sibling doc is accurate, sidebar wiring resolves.npm run build(Docusaurus production build): exit 0, 0 errors — thesearch-steeringdoc id resolves.is_fresh(0) → False, probe hint strings, and the strip contract were all checked against the actual source.Related #77168 #77157