reskill-usage — community reskill-usage, reskill, kanyun-inc, community, ai agent skill, ide skills, agent automation, AI agent skills, Claude Code, Cursor, Windsurf

v0.1.2
GitHub

About this Skill

Perfect for AI Agents needing efficient skill management and versioning through a Git-based package manager. Teaches AI agents how to use reskill — a Git-based package manager for AI agent skills. Covers CLI commands, install formats, configuration, publishing, and common workflows.

kanyun-inc kanyun-inc
[0]
[0]
Updated: 3/12/2026

Quality Score

Top 5%
65
Excellent
Based on code quality & docs
Installation
SYS Universal Install (Auto-Detect)
> npx killer-skills add kanyun-inc/reskill/reskill-usage
Supports 19+ Platforms
Cursor
Windsurf
VS Code
Trae
Claude
OpenClaw
+12 more

Agent Capability Analysis

The reskill-usage skill by kanyun-inc is an open-source community AI agent skill for Claude Code and other IDE workflows, helping agents execute tasks with better context, repeatability, and domain-specific guidance.

Ideal Agent Persona

Perfect for AI Agents needing efficient skill management and versioning through a Git-based package manager.

Core Value

Empowers agents to manage skills declaratively using `skills.json` and `skills.lock` files, with flexible versioning and multi-agent support, leveraging Node.js and Git for seamless installation and sharing of skills across projects and teams.

Capabilities Granted for reskill-usage

Installing and managing skills across multiple projects
Sharing skills between teams using Git-based version control
Declaring and locking skill configurations for reproducibility

! Prerequisites & Limits

  • Requires Node.js version 18.0.0 or higher
  • Needs Git for version control and package management
Project
SKILL.md
15.0 KB
.cursorrules
1.2 KB
package.json
240 B
Ready
UTF-8

# Tags

[No tags]
SKILL.md
Readonly
<!-- source: README.md --> <!-- synced: 2026-02-12 -->

reskill Usage Guide

reskill is a Git-based package manager for AI agent skills. It provides declarative configuration (skills.json + skills.lock), flexible versioning, and multi-agent support for installing, managing, and sharing skills across projects and teams.

Requirements: Node.js >= 18.0.0

CLI usage: If reskill is installed globally, use it directly. Otherwise use npx reskill@latest:

bash
1npm install -g reskill # Global install 2npx reskill@latest <command> # Or use npx directly (no install needed)

When to Use This Skill

Use this skill when the user:

  • Wants to install, update, or manage AI agent skills
  • Mentions skills.json, skills.lock, or reskill-related concepts
  • Wants to publish a skill to a registry
  • Asks about supported install formats (GitHub, GitLab, HTTP, OSS, registry, etc.)
  • Encounters reskill-related errors or needs troubleshooting
  • Wants to set up a project for skill management
  • Asks about multi-agent skill installation (Cursor, Claude Code, Codex, etc.)

Quick Start

bash
1# Initialize a new project 2npx reskill@latest init 3 4# Install a skill 5npx reskill@latest install github:anthropics/skills/skills/frontend-design@latest 6 7# List installed skills 8npx reskill@latest list

Commands

CommandAliasDescription
init-Initialize skills.json
find <query>-Search for skills in the registry
install [skills...]iInstall one or more skills
listlsList installed skills
info <skill>-Show skill details
update [skill]upUpdate skills
outdated-Check for outdated skills
uninstall <skill>un, rm, removeRemove a skill
publish [path]pubPublish a skill to the registry ¹
login-Authenticate with the registry ¹
logout-Remove stored authentication ¹
whoami-Display current logged in user ¹
doctor-Diagnose environment and check for issues
completion install-Install shell tab completion

¹ Registry commands (publish, login, logout, whoami) require a private registry deployment. Not available for public use yet.

Run reskill <command> --help for complete options and detailed usage.

Common Options

OptionCommandsDescription
--no-saveinstallInstall without saving to skills.json (for personal skills)
-g, --globalinstall, uninstall, listInstall/manage skills globally (user directory)
-a, --agent <agents...>installSpecify target agents (e.g., cursor, claude-code)
--mode <mode>installInstallation mode: symlink (default) or copy
--allinstallInstall to all agents
-y, --yesinstall, uninstall, publishSkip confirmation prompts
-f, --forceinstallForce reinstall even if already installed
-s, --skill <names...>installSelect specific skill(s) by name from a multi-skill repo
--listinstallList available skills in the repository without installing
-r, --registry <url>install, publishRegistry URL override for registry-based installs
-t, --token <token>installAuth token for registry API requests (for CI/CD)
-j, --jsonlist, info, outdated, doctorOutput as JSON

Source Formats

reskill supports installing skills from multiple sources:

bash
1# GitHub shorthand 2npx reskill@latest install github:user/skill@v1.0.0 3 4# GitLab shorthand 5npx reskill@latest install gitlab:group/skill@latest 6 7# Full Git URL (HTTPS) 8npx reskill@latest install https://github.com/user/skill.git 9 10# Full Git URL (SSH) 11npx reskill@latest install git@github.com:user/skill.git 12 13# GitHub/GitLab web URL (with branch and subpath) 14npx reskill@latest install https://github.com/vercel-labs/agent-skills/tree/main/skills/web-design-guidelines 15 16# Custom registry (self-hosted GitLab, etc.) 17npx reskill@latest install gitlab.company.com:team/skill@v1.0.0 18 19# HTTP/OSS archives 20npx reskill@latest install https://example.com/skills/my-skill-v1.0.0.tar.gz 21npx reskill@latest install oss://bucket/path/skill.tar.gz 22npx reskill@latest install s3://bucket/path/skill.zip 23 24# Registry-based (requires registry deployment) 25npx reskill@latest install @scope/skill-name@1.0.0 26npx reskill@latest install skill-name 27 28# Install multiple skills at once 29npx reskill@latest install github:user/skill1 github:user/skill2@v1.0.0

Monorepo Support

For repositories containing multiple skills, you can install a specific skill by path or install all skills from a parent directory:

bash
1# Shorthand format with subpath 2npx reskill@latest install github:org/monorepo/skills/planning@v1.0.0 3npx reskill@latest install gitlab:company/skills/frontend/components@latest 4 5# URL format with subpath 6npx reskill@latest install https://github.com/org/monorepo.git/skills/planning@v1.0.0 7npx reskill@latest install git@gitlab.company.com:team/skills.git/backend/apis@v2.0.0 8 9# GitHub web URL automatically extracts subpath 10npx reskill@latest install https://github.com/org/monorepo/tree/main/skills/planning 11 12# Point to a parent directory — auto-detects and installs all child skills 13npx reskill@latest install https://github.com/org/monorepo/tree/main/skills

When the target directory has no root SKILL.md but contains subdirectories with SKILL.md files, reskill automatically discovers and installs all child skills. Each skill is saved separately in skills.json.

HTTP/OSS URL Support

Skills can be installed directly from HTTP/HTTPS URLs pointing to archive files:

FormatExampleDescription
HTTPS URLhttps://example.com/skill.tar.gzDirect download URL
Aliyun OSShttps://bucket.oss-cn-hangzhou.aliyuncs.com/skill.tar.gzAliyun OSS URL
AWS S3https://bucket.s3.amazonaws.com/skill.tar.gzAWS S3 URL
OSS Protocoloss://bucket/path/skill.tar.gzShorthand for Aliyun OSS
S3 Protocols3://bucket/path/skill.tar.gzShorthand for AWS S3

Supported archive formats: .tar.gz, .tgz, .zip, .tar

Version Formats

FormatExampleDescription
Exact@v1.0.0Lock to specific tag
Latest@latestGet the latest tag
Range@^2.0.0Semver compatible (>=2.0.0 <3.0.0)
Branch@branch:developSpecific branch
Commit@commit:abc1234Specific commit hash
(none)-Default branch (main)

Configuration

skills.json

The project configuration file, created by reskill init:

json
1{ 2 "skills": { 3 "planning": "github:user/planning-skill@v1.0.0", 4 "internal-tool": "internal:team/tool@latest" 5 }, 6 "registries": { 7 "internal": "https://gitlab.company.com" 8 }, 9 "defaults": { 10 "installDir": ".skills", 11 "targetAgents": ["cursor", "claude-code"], 12 "installMode": "symlink" 13 } 14}
  • skills — Installed skill references (name → source ref)
  • registries — Custom Git registry aliases
  • defaults.installDir — Where skills are stored (default: .skills)
  • defaults.targetAgents — Default agents to install to
  • defaults.installModesymlink (default, recommended) or copy

Environment Variables

VariableDescriptionDefault
RESKILL_CACHE_DIRGlobal cache directory~/.reskill-cache
RESKILL_TOKENAuth token (takes precedence over ~/.reskillrc)-
RESKILL_REGISTRYDefault registry URLhttps://registry.reskill.dev
DEBUGEnable debug logging-
NO_COLORDisable colored output-

Multi-Agent Support

Skills are installed to .skills/ by default and can be integrated with any agent:

AgentPath
Cursor.cursor/rules/ or .cursor/skills/
Claude Code.claude/skills/
Codex.codex/skills/
Windsurf.windsurf/skills/
GitHub Copilot.github/skills/
OpenCode.opencode/skills/

Use --agent to target specific agents, or --all to install to all detected agents:

bash
1# Install to specific agents 2reskill install github:user/skill -a cursor claude-code 3 4# Install to all detected agents 5reskill install github:user/skill --all

Publishing

Note: Publishing requires a private registry deployment.

Authentication

bash
1# Login with a token (obtain from the registry web UI) 2reskill login --registry <url> --token <token> 3 4# Check current login status 5reskill whoami 6 7# Logout 8reskill logout

Tokens are stored in ~/.reskillrc. You can also use the RESKILL_TOKEN environment variable (takes precedence, useful for CI/CD).

Registry URL resolution priority:

  1. --registry CLI option
  2. RESKILL_REGISTRY environment variable
  3. defaults.publishRegistry in skills.json

Publishing a Skill

bash
1# Validate without publishing (recommended first step) 2reskill publish --dry-run 3 4# Publish the skill 5reskill publish 6 7# Publish from a specific directory 8reskill publish ./path/to/skill 9 10# Skip confirmation 11reskill publish -y

The skill directory must contain a valid SKILL.md. A skill.json with name, version, and description is also required for publishing.

Common Workflows

First-Time Project Setup

bash
1# 1. Initialize the project 2reskill init -y 3 4# 2. Install skills your project needs 5reskill install github:user/skill1@v1.0.0 github:user/skill2@latest -y 6 7# 3. Verify installation 8reskill list 9 10# 4. Commit skills.json and skills.lock to version control 11# (These files ensure team members get the same skill versions)

Team Collaboration

When a teammate clones the project, they run:

bash
1# Reinstall all skills from skills.json (like npm install) 2reskill install

This reads skills.json + skills.lock and installs the exact same versions.

Checking and Updating Skills

bash
1# Check which skills have newer versions 2reskill outdated 3 4# Update all skills 5reskill update 6 7# Update a specific skill 8reskill update skill-name

Global vs Project-Level Installation

ScopeFlagDirectoryUse Case
Project-.skills/ (in project)Team-shared skills, committed to git
Global-g~/.agents/skills/Personal skills, available in all projects
bash
1# Project-level (default) 2reskill install github:user/skill 3 4# Global (personal, all projects) 5reskill install github:user/skill -g 6 7# Personal project-level (not saved to skills.json) 8reskill install github:user/skill --no-save

Diagnosing Issues

bash
1# Run environment diagnostics 2reskill doctor 3 4# JSON output for programmatic use 5reskill doctor --json

The doctor command checks: reskill version, Node.js version, Git availability, cache directory, skills.json validity, skills.lock sync, installed skills integrity, and network connectivity.

Troubleshooting

Error MessageCauseSolution
skills.json not foundProject not initializedRun reskill init
Unknown scope @xyzNo registry configured for this scopeCheck registries in skills.json or use full Git URL
Skill not foundSkill name doesn't exist in registryVerify skill name; check reskill find <query>
Version not foundRequested version doesn't existRun reskill info <skill> to see available versions
Permission deniedAuth issue when publishingRun reskill login; check token scope
Token is invalid or expiredStale authenticationRe-authenticate with reskill login --token <new-token>
Network errorCannot reach Git host or registryCheck network; run reskill doctor for diagnostics
Conflict: directory already existsSkill already installedUse --force to reinstall

Private Repositories

reskill uses your existing git credentials (SSH keys or credential helper). For CI/CD environments:

bash
1# GitLab CI 2git config --global url."https://gitlab-ci-token:${CI_JOB_TOKEN}@gitlab.company.com/".insteadOf "https://gitlab.company.com/"

FAQ & Installation Steps

These questions and steps mirror the structured data on this page for better search understanding.

? Frequently Asked Questions

What is reskill-usage?

Perfect for AI Agents needing efficient skill management and versioning through a Git-based package manager. Teaches AI agents how to use reskill — a Git-based package manager for AI agent skills. Covers CLI commands, install formats, configuration, publishing, and common workflows.

How do I install reskill-usage?

Run the command: npx killer-skills add kanyun-inc/reskill/reskill-usage. It works with Cursor, Windsurf, VS Code, Claude Code, and 19+ other IDEs.

What are the use cases for reskill-usage?

Key use cases include: Installing and managing skills across multiple projects, Sharing skills between teams using Git-based version control, Declaring and locking skill configurations for reproducibility.

Which IDEs are compatible with reskill-usage?

This skill is compatible with Cursor, Windsurf, VS Code, Trae, Claude Code, OpenClaw, Aider, Codex, OpenCode, Goose, Cline, Roo Code, Kiro, Augment Code, Continue, GitHub Copilot, Sourcegraph Cody, and Amazon Q Developer. Use the Killer-Skills CLI for universal one-command installation.

Are there any limitations for reskill-usage?

Requires Node.js version 18.0.0 or higher. Needs Git for version control and package management.

How To Install

  1. 1. Open your terminal

    Open the terminal or command line in your project directory.

  2. 2. Run the install command

    Run: npx killer-skills add kanyun-inc/reskill/reskill-usage. The CLI will automatically detect your IDE or AI agent and configure the skill.

  3. 3. Start using the skill

    The skill is now active. Your AI agent can use reskill-usage immediately in the current project.

Related Skills

Looking for an alternative to reskill-usage or another community skill for your workflow? Explore these related open-source skills.

View All

widget-generator

Logo of f
f

Generate customizable widget plugins for the prompts.chat feed system

149.6k
0
Design

flags

Logo of vercel
vercel

The React Framework

138.4k
0
Browser

pr-review

Logo of pytorch
pytorch

Tensors and Dynamic neural networks in Python with strong GPU acceleration

98.6k
0
AI

antd-commit-msg

Logo of ant-design
ant-design

Generate a single-line commit message for ant-design by reading the projects git staged area and recent commit style. Use when the user asks for a commit message, says msg, commit msg, 写提交信息, or wants

97.8k
0
Design