feat: --beta skills — pre-install MCP servers on remote VMs#3162
Draft
feat: --beta skills — pre-install MCP servers on remote VMs#3162
Conversation
Adds a new beta feature that shows a skills picker during interactive setup, letting users select MCP servers (GitHub, Playwright, Fetch, Context7, PostgreSQL) to pre-install on the remote VM. - Add "skills" to VALID_BETA_FEATURES in index.ts - Add skill catalog to manifest.json with per-agent MCP configs - Add SkillDef/McpServerConfig types to manifest.ts - New shared/skills.ts module: filtering, picker prompt, MCP config merge for Claude Code (~/.claude/settings.json) and Cursor (~/.cursor/mcp.json) - Wire skills picker into interactive.ts (after setup options) - Wire skill installation into orchestrate.ts (after agent configure) - Export uploadConfigFile from agent-setup.ts for reuse - Version bump 0.30.10 → 0.31.0 Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Extends the skills catalog beyond MCP servers to include instruction
skills (SKILL.md files) that work with agents supporting the shared
YAML frontmatter + markdown format.
New instruction skills:
- Git Workflow (default on) — branching, conventional commits, PR workflow
- Web Search (default on) — search the web, fetch URLs, extract content
- Docker — container management, compose, best practices
- Deploy — SSH, Docker, pm2, systemd deployment patterns
Supported agents: Claude Code, OpenClaw, Codex CLI (all share the
~/.{agent}/skills/{name}/SKILL.md format)
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Member
|
Acknowledging this issue. Categorized as: feature request (pre-install MCP servers on remote VMs). PR #3162 is open on branch -- refactor/community-coordinator |
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
--beta skillsflag adds a skills picker to the interactive setup flow~/.claude/settings.json) and Cursor (~/.cursor/mcp.json)Skills Catalog (initial)
@modelcontextprotocol/server-github@anthropic-ai/mcp-server-playwright@anthropic-ai/mcp-server-fetch@upstash/context7-mcp@modelcontextprotocol/server-postgresUsage
Or headless:
Files Changed
packages/cli/src/index.ts— add "skills" to VALID_BETA_FEATURESmanifest.json— skill catalog with per-agent MCP configspackages/cli/src/manifest.ts— SkillDef/McpServerConfig typespackages/cli/src/shared/skills.ts— new skill filtering, picker, installationpackages/cli/src/commands/interactive.ts— wire skills picker after setup optionspackages/cli/src/shared/orchestrate.ts— install skills after agent configurepackages/cli/src/shared/agent-setup.ts— export uploadConfigFilepackages/cli/package.json— version bump 0.30.10 → 0.31.0Test plan
bun test: 2071 pass, 0 failspawn claude digitalocean --beta skills— verify picker shows~/.claude/settings.jsonon remote hasmcpServerswith selected skillsspawn cursor hetzner --beta skills— verify~/.cursor/mcp.jsonwritten🤖 Generated with Claude Code