ディレクトリに戻る

skills-link

メンテナンス: メンテナンス中

shanliuling/skills-link

1 コマンドで 41 以上の AI コーディングエージェント間でローカルスキルを同期

インストール方法
$ npm i -g skills-link

189

スター

7

フォーク

TypeScript

言語

MIT

ライセンス

2026-04-12

作成日

2026-05-14

最終プッシュ

MIT ライセンスの CLI。1 つのマスターディレクトリを 41+ の AI コーディングエージェントのスキルフォルダへシンボリックリンクし、GitHub 経由でデバイス間同期。README に DeepSeek Harness の記載はなく、未対応エージェントは universal フォールバックで接続。

DSH 統合

エコシステム関連

作者による申告

安全性監査

未監査

最終検証日

2026-08-21

ライセンス

MIT

01どんなタスクに使えるのか?

  • Maintain a single local skills library shared by every AI coding agent you use

    Every enabled app's `~/.xxx/skills` becomes a symlink to one master directory (`~/AISkills`); add or edit a skill once and every app sees it instantly

    Developers who run multiple AI coding agents (Claude Code, Cursor, Cline, Codex and 37 more) and don't want duplicated skills folders

  • Share the same skills library across machines via GitHub

    `skills-link sync` pushes changes to GitHub on one machine; running `skills-link` on another machine automatically pulls from remote and re-links

    Developers working across multiple machines who want their agent skills to follow them

  • Install community skills straight from GitHub repos

    Skills imported into the master directory via `skills-link add <repo>` — a whole repo or a single skill with `-s`

    Users adopting shared skill repositories such as vercel-labs/agent-skills

02DeepSeek Harness への導入方法

前提条件

  • Node.js 18+ on Windows / macOS / Linux

インストール手順

  1. 01

    Install globally from npm: `npm i -g skills-link`

    $ npm i -g skills-link

  2. 02

    Run `skills-link` — the first run walks you through everything: detect apps, import skills, create links

導入成功の確認

作者は未記載

03DSH 統合と能力の範囲

DSH 統合エコシステム関連

Ecosystem-level CLI that symlinks one master skills folder into 41+ AI coding agents' skills directories; the README does not mention DeepSeek Harness/dsh — unlisted agents can only connect via the `universal` fallback profile

  • Symlink-based skills sync across 41+ agents

    one master directory (`~/AISkills`) configured via `config.yaml`every enabled app's skills folder becomes a symlink to the master directory; one edit is visible in all apps instantly

    creates/replaces each enabled app's skills directory (e.g. `~/.claude/skills`) with a symlink — native symlinks on macOS / Linux, Junction links (no admin rights) on Windows
  • Install skills from GitHub

    a GitHub repo — all skills, or one skill via `-s <name>`skill files imported into the master directory and linked to every enabled app

    downloads skill content from GitHub
  • Cross-device sync via git

    a git remote configured under `git:` in `~/AISkills/config.yaml``skills-link sync` pushes changes to GitHub; another machine's `skills-link` automatically pulls from remote and links

    pushes your skills to the configured git remote (`autoPush: true` option)
  • Rules sync & app management

    `rules-link` command; `skills-link app` / `skills-link list`agent rules synced alongside skills; enabled apps and local skills managed from the CLI

04誰に向いているのか?使うべきでない場面は?

向いている用途

  • Developers who run multiple AI coding agents (Claude Code, Cursor, Cline, Codex and 37 more) and don't want duplicated skills folders
  • Developers working across multiple machines who want their agent skills to follow them
  • Users adopting shared skill repositories such as vercel-labs/agent-skills

不向きな用途

  • DeepSeek Harness (dsh) is not mentioned in the README and is not among the 41+ preconfigured agents; wiring it up would require the `universal` fallback profile or a custom one-line entry in src/core/path-detect.ts, neither of which is documented for dsh.
  • Linking redirects every enabled agent's skills directory to the shared master directory, so all linked apps share one copy — a bad edit or deletion in the master directory affects every app at once.

05互換性・メンテナンス・セキュリティ上の注意

  • DeepSeek Harness (dsh) is not mentioned in the README and is not among the 41+ preconfigured agents; wiring it up would require the `universal` fallback profile or a custom one-line entry in src/core/path-detect.ts, neither of which is documented for dsh.
  • Linking redirects every enabled agent's skills directory to the shared master directory, so all linked apps share one copy — a bad edit or deletion in the master directory affects every app at once.
  • Requires Node.js 18+ and a global npm install (`npm i -g skills-link`); Windows relies on Junction links while macOS / Linux use native symlinks.
2026-04-122026-05-14v1.3.0

MIT · actively maintained (latest release v1.3.0, 2026-04-26)

06よくある質問

Skills-Link は DeepSeek Harness(dsh)に対応していますか?

README に DeepSeek Harness の記載はありません。41+ のエージェント(Claude Code、Cursor、Windsurf、Cline、Codex、Gemini CLI、Qoder など)をプリセットし、一覧にないエージェント向けに universal フォールバックを用意しています。src/core/path-detect.ts に 1 行追加するだけで新しいエージェントも登録できます。

インストールと初期設定はどうすればいいですか?

`npm i -g skills-link`(Node.js 18+ が必要)でインストールし、`skills-link` を実行するだけです。初回実行時にアプリの検出、スキルの取り込み、リンク作成まで案内してくれます。再実行すれば変更の同期とヘルスチェックが行われます。

同期の仕組みはどうなっていますか?

各アプリの `~/.xxx/skills` が 1 つのマスターディレクトリ(`~/AISkills`)へのシンボリックリンクになります。Windows は管理者権限不要のジャンクションリンク、macOS / Linux はネイティブのシンボリックリンクを使用します。

複数マシンでスキルを共有できますか?

できます。`~/AISkills/config.yaml` で git を有効にし、マシン A で `skills-link sync` を実行して GitHub にプッシュ。マシン B で `skills-link` を実行すると、リモートから自動取得してリンクを作成します。

データはどこに送信されますか?

スキルはローカルのマスターディレクトリに保存されます。通信が発生するのは、GitHub からスキルをインストールするとき(`skills-link add`)と、自分で設定した git リモートへのプッシュ/取得のときだけです。

08データと出典

  • 作者による申告github.com26487aee4948…

    Sync your local `skills` across 41+ AI coding agents with a single command.

  • 作者による申告github.com26487aee4948…

    Plus a `universal` fallback for any agent not listed. [Add new agents with one line of code.](src/core/path-detect.ts)

このページは、プロジェクトの公開ドキュメント、リポジトリのメタデータ、および DSH Plugins の構造化解析に基づいて生成されています。最終検証日:2026-08-21。誤りを見つけた場合は、修正を送信してください。

DSH Plugins は DeepSeek Harness プラグインの独立したコミュニティ ディレクトリです。DeepSeek との提携・公認はありません。サードパーティ製プラグインはセキュリティ監査を受けていません。インストール前にソースコードをご確認ください。

DeepSeek Harnessの新着プラグインを毎週お届け。スパムはありません。