Sx: An Open-Source Package Manager for AI Skills, MCPs, and Commands

✍️ OpenClawRadar📅 Published: May 15, 2026🔗 Source
Sx: An Open-Source Package Manager for AI Skills, MCPs, and Commands
Ad

Sx is an open-source package manager designed for teams using AI coding assistants. It treats AI configurations—custom skills, MCP server configs, slash commands, hooks, agents, and coding standards—as versioned packages that can be centrally managed, scoped, and shared across an organization.

Why Sx?

The problem: top developers create effective AI setups (prompts, MCPs, commands) but those remain siloed on their machines. Current workarounds—copying into each repo (duplication, drift), global configs (context bloat), or manual plugin installs (client lock-in)—don't scale. Sx solves this by treating AI assets as sharable packages with scoped installation.

Quickstart

# macOS/Linux via Homebrew
brew tap sleuth-io/tap
brew install sx

Or via shell script

curl -fsSL https://raw.githubusercontent.com/sleuth-io/sx/main/install.sh | bash

Initialize and add assets

sx init sx add /path/to/my-skill sx install

Scoped Installation

Assets can be installed for specific scopes, avoiding context bloat:

  • sx install my-skill --org – everyone in the vault
  • sx install my-skill --repo github.com/acme/infra – only inside that repo
  • sx install my-skill --path github.com/acme/infra#docs/ – a specific path
  • sx install my-skill --team platform – team members
  • sx install my-skill --user [email protected] – a single user
  • sx install my-skill --bot python-backend – a CI/agent identity

Use sx install --dry-run to preview what would be installed.

Ad

Cloud Relay

Expose your vault to Claude.ai or ChatGPT via MCP using the skills.new relay:

sx cloud connect
sx cloud serve
sx cloud status

The relay opens a WebSocket tunnel—vault content stays local.

Analytics & Audit

Track adoption and changes:

sx stats
sx stats --since 7d --json
sx audit --actor [email protected] --since 30d --event install.set

Works with Existing Claude Code Setups

If you have skills in ~/.claude, sx can version and sync them:

sx add ~/.claude/commands/my-command
sx add ~/.claude/skills/my-skill
sx add code-review@claude-plugins-official

Sx auto-detects the asset type (skill, command, MCP, agent, hook, rule) and wraps the files with metadata without modifying them.

Sx supports multiple vaults via profiles (sx profile add work, sx profile use work) and works with any AI client that supports MCP or file-based configs—Claude Code, Cursor, GitHub Copilot, Gemini, Kiro, and more.

📖 Read the full source: HN AI Agents

Ad

👀 See Also

New Structured Data API Provides Subscription Pricing for LLM Agents
Tools

New Structured Data API Provides Subscription Pricing for LLM Agents

A developer has released a structured data API that normalizes subscription pricing across streaming platforms, ride-share services, dating apps, and other subscription-based platforms. The API provides consistent JSON schemas, region-aware pricing where available, and MCP-compatible endpoints for LLM agents to consume without scraping.

OpenClawRadar
Six GitHub Repositories for Claude Code Development
Tools

Six GitHub Repositories for Claude Code Development

A Reddit user tested and shared six GitHub repositories designed to improve Claude Code projects, including tools for structured development, UI generation, task management, memory, ecosystem exploration, and workflow automation.

OpenClawRadar
Claude Code Studio: Open-Source Desktop App for Managing Multiple Claude Coding Sessions
Tools

Claude Code Studio: Open-Source Desktop App for Managing Multiple Claude Coding Sessions

Claude Code Studio v0.9.3 is an open-source desktop application that provides a multi-pane interface for managing multiple Claude Code CLI sessions. It addresses common workflow issues like juggling terminal tabs, session persistence, and instruction repetition.

OpenClawRadar
SOPHIA Meta-Agent for AI Agent Maintenance
Tools

SOPHIA Meta-Agent for AI Agent Maintenance

SOPHIA is a meta-agent designed as a Chief Learning Officer that observes, diagnoses, researches, and proposes improvements to other AI agents in production ecosystems. The system was designed through 7 iterations using 4 frontier models with human approval required for all deployments.

OpenClawRadar