feat: add Scalekit Skills installation to setup wizard#19
Merged
Conversation
After installing editor stacks, setup now offers to install Scalekit skills via Vercel's skills CLI. - Interactive mode: prompts user, then hands off to skills wizard so developers can pick which skills/agents they want - Non-interactive (--yes): runs npx skills add --all automatically - New --skip-skills flag to opt out entirely - Graceful error handling with fallback instructions
Instead of a separate confirm prompt after editors, 'Scalekit Skills' now appears as a selectable option in the same multiselect picker. One screen, one decision.
When 'Other agents' is selected, presents two options: - Install now: runs npx skills add --yes automatically - I'll do it myself: prints the command to run manually
9 new tests covering: - --yes installs skills automatically - --yes --skip-skills skips skills - --dry-run skips skills even when selected - Interactive: 'Install now' runs installSkills - Interactive: 'I'll do it myself' shows the command - Interactive: not selecting skills skips installation - Multiselect includes 'Other agents' option - --skip-skills hides skills from multiselect - Handles skills installation failure gracefully
… outro - Extract runSkillsInstall() helper — removes duplicated try/catch - Remove dead 'interactive' param from installSkills() — always uses --all - --dry-run now previews 'Would run: npx skills add ...' for skills - Outro counts skills in total: '2 components installed' not '1 stack' - Skills-only selection shows '1 component installed' not '0 stacks' - Export SKILLS_CMD constant for consistent command references - Bump version to 0.3.8 - 11 skills tests (2 new: outro counting, skills-only)
AkshayParihar33
approved these changes
May 20, 2026
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
Adds Scalekit Skills as an option in the
scalekit setupwizard, so users can install agent skills for coding agents beyond the four with dedicated stacks (Cursor, Claude, Codex, Copilot).What changed
src/core/skills.ts—installSkills(interactive)function that spawnsnpx skills add scalekit-inc/skills(with--yesin non-interactive mode)src/commands/setup.ts— "Other agents" option appears in the multiselect alongside coding agent stacks. When selected, user chooses between:npx skills add --yesautomatically--skip-skillsflag — explicit escape hatch to skip skills entirely0.3.7Behavior by mode
--yes--yes--skip-skillsTesting
--skip-skillsflagFixes SK-384