Claudeskill Manager banner
a14a-org a14a-org

Claudeskill Manager

Development community

Description

Sync your Claude Code skills across devices with zero-knowledge encryption

Installation

This entry records only its repository, not the path inside it, so there is no exact command to give. Open the source below and copy the folder into ~/.claude/skills/, or the file into ~/.claude/agents/.

README

Claude Skill Sync

Sync your Claude Code skills across devices with zero-knowledge encryption.

Features

  • Zero-knowledge encryption - Your skills are encrypted client-side. The server never sees your content.
  • Cross-device sync - Access your skills from any device
  • Team sharing - Share encrypted skills with colleagues using per-member key envelopes
  • Self-host option - Run your own server for complete control
  • Simple CLI - Easy to use command-line interface

Quick Start

Using the CLI

# Install globally
npm install -g @claudeskill/cli

# Run setup
claudeskill

# Or try without installing
npx @claudeskill/cli

CLI Commands

claudeskill                    # Interactive menu (recommended)
claudeskill status             # Show sync status
claudeskill list               # List all skills
claudeskill list --tree        # Show dependency graph
claudeskill push               # Push local skills to cloud
claudeskill pull               # Pull skills from cloud
claudeskill login              # Login to existing account
claudeskill logout             # Logout and clear credentials
claudeskill team list          # List your teams
claudeskill team create  # Create a team workspace
claudeskill --help             # Show all commands

Development Setup

Prerequisites

  • Node.js 20.6+ (for server, uses --env-file flag)
  • Node.js 18+ (for CLI only)
  • Yarn

Install Dependencies

yarn install

Build All Packages

yarn build

Run in Development

# Terminal 1: Start the server
cp .env.example .env
# Edit .env with your settings
yarn dev:server

# Terminal 2: Run the CLI
yarn dev:cli

Project Structure

claudeskill/
├── packages/
│   ├── core/           # Shared encryption & skill parsing
│   ├── cli/            # Command-line interface
│   └── server/         # API server
├── .env.example        # Environment variables template
├── docker-compose.yaml # Sel