Skip to main content

agent-skill-sync

CI PyPI version Python License: MIT

skillsync — scan, classify and sync AI-agent skills (SKILL.md files) across toolchains.

If you use several AI coding agents (OpenAI Codex, Claude Code, WorkBuddy, …), you end up with skill libraries scattered across different directories, in different layouts, some copied, some stale, some requiring dependencies you never installed. skillsync turns that mess into one honest inventory — automatically.

Zero dependencies. Pure Python ≥ 3.11 stdlib.

What it does

┌──────────────┐   ┌──────────────┐   ┌────────────────┐
│ ~/.codex/    │   │ marketplace  │   │ ~/.claude/     │   … any number of
│   skills/    │   │ plugin cache │   │   skills/      │       source roots
└──────┬───────┘   └──────┬───────┘   └───────┬────────┘
       └──────────────┬───┴───────────────────┘
                      ▼
              ┌───────────────┐     classify every skill:
              │  scan + parse │     A portable · B missing deps
              │  frontmatter  │     C rewrite needed · D platform-private
              └───────┬───────┘
                      ▼
              ┌───────────────┐     diff against target:
              │ INDEX.md      │     identical · drifted · missing
              │ inventory.json│
              └───────┬───────┘
                      ▼
              ┌───────────────┐     optional, safe copy:
              │ skillsync sync│     dry-run first, backups, never deletes,
              └───────────────┘     skips .venv/.env/node_modules

The A/B/C/D migration taxonomy

Category Meaning Action
A Portable — no platform-private references, every referenced command exists copy & use
B Portable but missing external deps (a CLI, an MCP server) install deps, then copy
C References another agent's conventions (AGENTS.md, image_gen, …) rewrite for your target
D Bound to the source platform's private runtime don't migrate

Classification is heuristic, conservative, and every decision ships a reason — the index shows why a skill landed in each bucket, and which dependencies are missing (probed live with shutil.which / your [deps] table).

Install

pipx install agent-skill-sync   # recommended: isolated CLI install
pip install agent-skill-sync    # or into your environment

# from source, without installing:
git clone https://github.com/kina-cmd/agent-skill-sync && cd agent-skill-sync
python -m skillsync.cli --help

Usage

# What do I have, and in what state?
skillsync status

# One line per skill: category, sync state, source, missing deps
skillsync scan
skillsync scan --category B          # only the ones needing deps
skillsync scan --json                # machine-readable inventory

# Generate a full index (INDEX.md + inventory.json) you can commit
# or paste into a "tool reuse" skill for your agent to read
skillsync index --out ./output --lang zh

# Sync portable skills into the target root — plan first, always
skillsync sync --dry-run
skillsync sync --categories A
skillsync sync --categories A,B --force    # update drifted copies (backs them up)

Sync safety rules

  • Never overwrites without --force; a forced update first moves the old copy to <target>/.skillsync-backup/ — nothing is ever deleted.
  • .venv/, .env, node_modules/, __pycache__/ are always excluded from copies, so secrets and 500 MB virtualenvs never travel silently.
  • --dry-run prints the exact plan and touches nothing.

Configuration

By default, skillsync auto-discovers the well-known roots on your machine — every major adopter of the Agent Skills open standard:

Root Platform
~/.codex/skills + ~/.codex/plugins/cache OpenAI Codex (+ marketplace plugin caches)
~/.claude/skills Claude Code (reference implementation)
~/.copilot/skills GitHub Copilot
~/.gemini/skills Gemini CLI
~/.cursor/skills Cursor
~/.config/opencode/skills OpenCode

Target defaults to ~/.workbuddy/skills. Roots that don't exist are skipped silently.

Override or extend with skillsync.toml (looked up in ./ then $XDG_CONFIG_HOME/skillsync/):

[target]
label = "workbuddy"
path  = "~/.workbuddy/skills"

[[sources]]
label = "codex"
path  = "~/.codex/skills"

[[sources]]
label = "codex-marketplace"
path  = "~/.codex/plugins/cache"
glob  = "**/skills/*/SKILL.md"

[[sources]]
label  = "codex-system"
path   = "~/.codex/skills/.system"
system = true              # platform-private → always category D

[deps]
# Teach the classifier that a dep is satisfied even if not on PATH:
voicebox = { kind = "path", value = "~/App/Voicebox/voicebox.exe" }
ffmpeg   = "ffmpeg"                                   # shorthand: check PATH
notion   = { kind = "env",  value = "NOTION_TOKEN" }  # check env var

See skillsync.example.toml for a complete example.

Typical workflow: keeping an index skill fresh

Many people maintain a hand-written "local tool reuse" index for their agent. It rots the moment a skill is added upstream. Instead:

skillsync index --out ~/.workbuddy/skills/local-tool-reuse/generated --lang zh

…on a schedule or a git hook, and let the agent read a generated file that is always true. inventory.json is stable, machine-readable output for further tooling.

Development

python -m unittest discover tests -v

Design notes

  • No PyYAML. The frontmatter parser implements exactly the YAML subset skill files use (scalars, folded/literal blocks, inline and block lists), and fails soft — unparsable lines become warnings, never crashes.
  • No network. Everything is local filesystem inspection.
  • Qualified names. Marketplace plugin caches nest skills as <plugin>/<version>/skills/<name>/; these are reported as plugin:name so collisions are visible.

License

MIT © 2026 kina-cmd

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

agent_skill_sync-0.2.0.tar.gz (26.1 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

agent_skill_sync-0.2.0-py3-none-any.whl (27.7 kB view details)

Uploaded Python 3

File details

Details for the file agent_skill_sync-0.2.0.tar.gz.

File metadata

  • Download URL: agent_skill_sync-0.2.0.tar.gz
  • Upload date:
  • Size: 26.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for agent_skill_sync-0.2.0.tar.gz
Algorithm Hash digest
SHA256 7523bda52bd56656a99e81fc6118302555e2432a782ac14b4038bb422d522a87
MD5 d02bbfeb9375b89a562e20b7d4a9fcfc
BLAKE2b-256 8945b965bf30aa14459f9b46b7f799ed65cf1ac1d92b4bf5de22cb8c570e0bbd

See more details on using hashes here.

Provenance

The following attestation bundles were made for agent_skill_sync-0.2.0.tar.gz:

Publisher: publish.yml on kina-cmd/agent-skill-sync

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file agent_skill_sync-0.2.0-py3-none-any.whl.

File metadata

File hashes

Hashes for agent_skill_sync-0.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 bf48483cac6236e35dab8779c1d599a613fed1014b3b80dc5d9d01d782293324
MD5 bf56edb0166835601ce9bbfc6c9290bb
BLAKE2b-256 46e3c0a20c20cfb2daaeb9393f731f7481a6a0a80aaeb9da619dda9b9d8a7956

See more details on using hashes here.

Provenance

The following attestation bundles were made for agent_skill_sync-0.2.0-py3-none-any.whl:

Publisher: publish.yml on kina-cmd/agent-skill-sync

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

0.3.0

2 files

This release

0.2.0 This release

2 files

0.1.0

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page