Skip to content

ryota-kishimoto/plugsync

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

23 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

plugsync

Sync skills, agents, and commands from GitHub repositories to a local directory.

Install

# uv (recommended)
uv tool install git+https://github.com/ryota-kishimoto/plugsync

# pipx
pipx install git+https://github.com/ryota-kishimoto/plugsync

Usage

Create .plugsync.yaml in any directory and run:

plugsync                         # auto-discovers .plugsync.yaml or .plugsync.yml
plugsync --dry-run               # preview without copying
plugsync --config /path/to/file  # explicit config path

Configuration

See examples/plugsync.yaml.

target: ~/.claude  # ~ paths are expanded; other paths are relative to this file

repos:
  - url: https://github.com/anthropics/skills
    skills:
      - skills/skill-creator
      - skills/frontend-design

  - url: https://github.com/obra/superpowers
    ref: main  # optional: pin to a specific branch or tag
    skills:
      - skills/brainstorming
      - src: skills/using-superpowers  # optional: rename with "name"
        name: superpowers
    agents:
      - agents/code-reviewer.md
    commands:
      - commands/brainstorm.md

After running plugsync, files are placed under target:

~/.claude/
├── skills/
│   ├── skill-creator
│   ├── frontend-design
│   └── brainstorming
├── agents/
│   └── code-reviewer.md
└── commands/
    └── brainstorm.md

Custom paths

Use paths: to place files anywhere under target.

See examples/dotfiles/plugsync.yaml.

# target: "." means the same directory as this config file
target: .

repos:
  - url: https://github.com/mathiasbynens/dotfiles
    paths:
      - path: .
        src:
          - .editorconfig

  - url: https://github.com/stevemao/github-issue-templates
    paths:
      - path: .github
        src:
          - PULL_REQUEST_TEMPLATE.md
          - src: PULL_REQUEST_TEMPLATE.md  # optional: rename (subdirs allowed)
            name: pull_request_template/feature.md

Skill

A skill that lets your AI agent understand and run plugsync for you.

skills/plugsync/SKILL.md

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages