feat(web): add peer card seed kits#20
Merged
Merged
Conversation
Adds a /seed-kits page where users can author named "kits" of card lines (e.g. "Personal core", "Work context") and one-click apply them to any peer across any registered instance. Removes the chore of manually re-typing the same identity facts into multiple agents. Built-in starter kits are read-only but forkable. User kits live in localStorage. The apply flow shows a side-by-side merge preview that dedupes by the line's prefix (text before the first ":"), so applying a kit with "Name: Ben Sheridan-Edwards" to a peer whose card already has "Name: Ben" replaces the line rather than duplicating it. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
- Moves docs/seed-kits/*.png into docs/seed-kits/light/. - Adds docs/seed-kits/dark/ with the same three panels rendered in the dark theme. - Updates the capture script to loop over both themes by setting openconcho:theme in localStorage and the matching colorScheme on the browser context. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.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.
Author reusable "kits" of peer-card lines once and apply them across instances with a prefix-dedupe merge preview — kills repetitive identity re-entry when seeding multiple Honcho instances.
lib/seedKits.ts— kit model + merge logic (localStorage-only)seed-kits/— list, create form, apply dialog/seed-kitsroute + sidebar nav entryStacked on #19
Base is
feat/scoped-client-foundation(usesuseScopedPeerCard/useScopedPeers). GitHub will retarget this tomainonce #19 merges. The Compare nav link from the original fork commit was dropped (Compare UI isn't part of this adoption).Credit
Cherry-picked from @BenSheridanEdwards's fork (
feat/peer-card-seed-kits), authorship preserved. Thanks Ben!Verification
make check— lint + typecheck + 30/30 tests pass locally.