docs(paperclip): document dynamicBankId / bankId / user granularity (#1761)#1803
Open
r266-tech wants to merge 2 commits into
Open
docs(paperclip): document dynamicBankId / bankId / user granularity (#1761)#1803r266-tech wants to merge 2 commits into
r266-tech wants to merge 2 commits into
Conversation
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.
Summary
#1761 (
feat(paperclip): per-user bank granularity + dynamic-bank toggle, merged 2026-05-26 by benfrank241) added three new user-facing config knobs to the Paperclip integration —bankGranularity: 'user', staticbankId, anddynamicBankId— plus the matching bank-ID format variants. The Configuration table and Bank ID Format block in both the canonical user docs and the integration README still describe the pre-#1761 surface, so end-users configuring per-user memory isolation (GDPR-compliance scenario) or shared multi-agent banks can't discover any of it from the docs.This PR mirrors the schema additions into both docs surfaces (byte-for-byte parity), with values grounded directly in the integration source:
dynamicBankId+bankIdrows; existingbankGranularityrow expanded to mention the'user'granularity valuepaperclip::{companyId}::{agentId}::user::{userId}variant + the static-bank case (dynamicBankId = false→ bankId verbatim)All field names, defaults, descriptions, and bank-ID derivation strings are taken from
hindsight-integrations/paperclip/src/manifest.tsL43-63 (instanceConfigSchema.properties.{dynamicBankId,bankId,bankGranularity}) andhindsight-integrations/paperclip/src/bank.tsL1-15 +deriveBankId()L26-46.Files
hindsight-docs/docs-integrations/paperclip.md(+5)hindsight-integrations/paperclip/README.md(+5)Pure docs, byte-mirror across canonical user guide + integration README. No code change.