feat(cli): add skill gateway to install and sync skills across agents (#1442) - #1848
Closed
Adityakk9031 wants to merge 2 commits into
Closed
feat(cli): add skill gateway to install and sync skills across agents (#1442)#1848Adityakk9031 wants to merge 2 commits into
Adityakk9031 wants to merge 2 commits into
Conversation
Contributor
Author
|
@RhysSullivan have a look |
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
Implements the Skill Gateway for Executor as requested in #1442.
This introduces a central skill management store and multi-agent sync engine in Executor CLI (
executor skills ...), allowing developers to install agent skills once (from git repos, local directories, or URLs) and sync them across all connected AI coding assistants (Claude Code, Codex, Antigravity/Gemini CLI, Cursor, Windsurf), with workspace/global scopes and enable/disable toggling to prevent context bloat.Features
.executor/skills/<name>/(workspace) or~/.executor/skills/<name>/(--global).skills-lock.json..claude/skills/,~/.claude/skills/).codex/skills/,~/.codex/skills/).agents/skills/,~/.gemini/antigravity/skills/).cursor/skills/,~/.cursor/skills/).windsurf/skills/,~/.windsurf/skills/)executor skills toggle <name> enable|disabledynamically activates or deactivates skills without uninstalling them, preventing context bloat across different stacks.executor skills list [--global]executor skills add <source> [--name <name>] [--global]executor skills remove <name> [--global]executor skills toggle <name> enable|disable [--global]executor skills sync [--global]Verification
apps/cli/src/skills-gateway.test.tscovering skill installation, metadata extraction, lockfile management, multi-agent detection, skill toggling, and removal.tsgo --noEmitonapps/clipasses cleanly with 0 errors.oxlintand format checks pass with 0 errors.Fixes #1442