🎯

read-repo-references

🎯Skill

from eyh0602/skillshub

VibeIndex|
What it does

read-repo-references skill from eyh0602/skillshub

πŸ“¦

Part of

eyh0602/skillshub(14 items)

read-repo-references

Installation

CargoRun with Cargo (Rust)
cargo install skillshub
git cloneClone repository
git clone https://github.com/EYH0602/skillshub
CargoRun with Cargo (Rust)
cargo install --path .
πŸ“– Extracted from docs: eyh0602/skillshub
1Installs
2
-
Last UpdatedJan 20, 2026

Skill Details

SKILL.md

Overview

# Skillshub

Skillshub is a package manager for AI coding agent skills - like Homebrew for skills.

Install skills once and link them to every detected agent so all of your agents stay in sync.

Why Skillshub

  • Direct URL install: Add skills directly from GitHub URLs - no registry needed
  • Tap-based registry: Optionally organize skills into taps (like Homebrew)
  • One install, many agents: A single skills registry in ~/.skillshub/skills
  • One command to sync: skillshub link wires skills into all detected agents
  • Version tracking: Track which commit each skill was installed from
  • Clear skill format: Each skill lives in its own folder with SKILL.md metadata

Installation

From Cargo (recommended)

```bash

cargo install skillshub

```

From Source

```bash

git clone https://github.com/EYH0602/skillshub

cd skillshub

cargo install --path .

```

Quick Start

```bash

# Install from the default tap (bundled skills)

skillshub install EYH0602/skillshub/code-reviewer

# Or add third-party taps and install from them

skillshub tap add anthropics/skills

skillshub install anthropics/skills/frontend-design

skillshub tap add vercel-labs/agent-skills

skillshub install vercel-labs/agent-skills/vercel-deploy

# Link installed skills to every detected agent

skillshub link

# See which agents were detected

skillshub agents

```

Commands

Adding Skills from URLs

The easiest way to add skills is directly from GitHub URLs:

```bash

# Add a skill from any GitHub repository

skillshub add https://github.com/user/repo/tree/main/skills/my-skill

# Add with a specific commit (permalink)

skillshub add https://github.com/user/repo/tree/abc1234/skills/my-skill

```

The skill will be organized under the repository identifier (e.g., owner/repo/my-skill).

Skill Management

```bash

# List all available and installed skills

skillshub list

# Search for skills

skillshub search python

# Install a skill from a tap (format: owner/repo/skill)

skillshub install EYH0602/skillshub/code-reviewer

# Install a specific version (by commit)

skillshub install EYH0602/skillshub/code-reviewer@abc1234

# Show detailed info about a skill

skillshub info EYH0602/skillshub/code-reviewer

# Update installed skills to latest version

skillshub update # Update all

skillshub update EYH0602/skillshub/code-reviewer # Update one

# Uninstall a skill

skillshub uninstall EYH0602/skillshub/code-reviewer

# Install all skills from the default taps

skillshub install-all

```

Tap Management (Optional)

Taps are Git repositories containing skills. Skills are automatically discovered by scanning for folders with SKILL.md files - no special configuration required.

```bash

# List configured taps

skillshub tap list

# Skills column shows installed/available counts (e.g., 2/15 or 1/?)

# Add third-party taps (any GitHub repo with SKILL.md files)

skillshub tap add anthropics/skills

skillshub tap add vercel-labs/agent-skills

# Full URLs also work

skillshub tap add https://github.com/some-org/some-skills

# Add a tap and install all its skills in one command

skillshub tap add anthropics/skills --install

# Update tap registries (re-discover skills)

skillshub tap update # Update all taps

skillshub tap update anthropics/skills # Update specific tap

# Install all skills from a specific tap

skillshub tap install-all anthropics/skills

# Remove a tap

skillshub tap remove vercel-labs/agent-skills

```

Agent Linking

```bash

# Link installed skills to all detected agents

skillshub link

# Show which agents are detected

skillshub agents

```

External Skills Management

Skillshub can discover and sync skills installed through other means (e.g., Claude marketplace, manual installation):

```bash

# List discovered external skills

skillshub external list

# Scan agent directories for external skills

skillshub external scan

# Stop tracking an external skill (doesn't delete it)

More from this repository10

🎯
paper-polish🎯Skill

paper-polish skill from eyh0602/skillshub

🎯
code-reviewer🎯Skill

Automates comprehensive code reviews across multiple languages, providing in-depth analysis, best practices, security checks, and detailed review reports.

🎯
write-unit-tests🎯Skill

Generates comprehensive unit and integration tests for tldraw SDK using Vitest, covering editor functionality, shapes, tools, and test file organization.

🎯
docstring🎯Skill

Generates comprehensive, Sphinx-formatted docstrings for PyTorch functions and methods, following official PyTorch documentation conventions.

🎯
analyze-ci🎯Skill

analyze-ci skill from eyh0602/skillshub

🎯
docs-review🎯Skill

Reviews documentation changes against Metabase's writing style guide, providing structured feedback for markdown files in pull requests or local diffs.

🎯
senior-data-scientist🎯Skill

Guides data science professionals through advanced machine learning techniques, model deployment, and complex data analysis workflows.

🎯
python-packaging🎯Skill

Guides developers through creating, structuring, and publishing Python packages using modern packaging tools and best practices.

🎯
code-change-verification🎯Skill

Verifies code changes by running formatting, linting, type checking, and tests in the OpenAI Agents Python repository.

🎯
uv-package-manager🎯Skill

Manages and installs Python packages from UV package manager with simplified command-line interactions and dependency resolution.