Back to Discover

agent-skills

skill

being-ish

View on GitHub
0 starsSynced Aug 5, 2026

Install to Claude Code

/plugin marketplace add being-ish/agent-skills

README

agent-skills

我々のエージェントスキルを Claude Code のプラグインマーケットプレイス形式で配布するリポジトリー。

インストール

Claude Code で次を実行する。

/plugin marketplace add being-ish/agent-skills
/plugin install <plugin-name>@being-ish

プラグインの追加手順

ディレクトリーを作成する

プラグイン開発ガイドに従い、plugins/<plugin-name>/ を次の構造で作成する。

plugins/<plugin-name>/
├── .claude-plugin/
│   └── plugin.json
└── skills/
    └── <skill-name>/
        └── SKILL.md

plugin.json を書く

plugin.json に最低限の情報を書く。

フィールド内容
name端的に挙動を表す名前とする
description何をするかの概要を書く
version更新はバンプしたときだけ配られるので、リリース時にバンプを忘れないこと
{
  "name": "<plugin-name>",
  "description": "プラグインの説明",
  "version": "1.0.0"
}

marketplace.json にエントリーを追加する

marketplace.jsonplugins 配列にエントリーを追加する。

フィールド内容
nameplugin.json の name と一致させる。違うとユーザーの混乱の元になる
sourceプロジェクトルートからの相対パス
description導入する利点を書く。インストール前の一覧で読まれる
versionplugin.json の値を正とするので、ここには書かない
{
  "name": "<plugin-name>",
  "source": "<plugin-name>",
  "description": "プラグインの説明"
}

Rendered live from being-ish/agent-skills's GitHub README — not stored, always reflects the source repo.

5 Plugins

NameDescriptionCategorySource
plan-tasks複数セッションで対応すべき大きめの課題を分解して作業のベースにできるスキル./plugins/plan-tasks
dev-docsPRD、design doc、ADR、runbook を生成・更新するスキル集./plugins/dev-docs
ja-markdown-style日本語 Markdown 文書を書くためのツール./plugins/ja-markdown-style
coding-style-commonプログラミング言語共通の書き方ルールを提供するプラグイン./plugins/coding-style-common
testing-styleテストの書き方の指針を提供するプラグイン./plugins/testing-style

0 Comments

Login required
Log in to post a comment or update on this repo.

No comments yet — be the first to share an update.