feat(skills): per-mind skill discovery + IPC#397
Open
patschmittdev wants to merge 1 commit into
Open
Conversation
Split the mind-skill discovery vertical out of feat/webgl-ambient-background onto the ui-foundation base. Backend-only and purely additive: - MindSkillDiscovery service: lists skills installed under <mindPath>/.github/skills/ (read-only filesystem scan) - SkillManifest shared type + SKILLS.LIST_FOR_MIND ipc channel - ElectronAPI.skills.listForMind across preload + browser shim - skills:listForMind main-process handler (validates mindId, resolves the mind's path via MindManager) The lone renderer consumer (AgentSurface) is deferred to the genesis-marketplace branch; this slice carries only the data path. Note: the original decomposition plan suggested moving this handler into a main/ipc/skills.ts adapter. Kept inline to match the source faithfully; the adapter refactor is a separate, optional follow-up. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.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.
What
Per-mind skill discovery + IPC, split off
feat/webgl-ambient-backgroundonto therefactor/ui-foundationbase (#389). Base of the agent-profile slice, which stacks on this.Contents (11 files, +258)
main.ts/preload.ts/ipc-channels.ts: new skills IPC (thin adapter pattern).Security note for review: adds a new IPC channel. Inputs validated at the adapter boundary; no new persistence or credential surface.
Stack
Sibling on
refactor/ui-foundation(#389);feat/agent-profilestacks on this.Validation
npm run lint-- green (tsc, eslint, dependency-cruiser, yaml, md).