skill-share
新しいClaude Skillを開発し、Rubeを使ってSlackでチームに自動共有することで、メンバー間の連携をスムーズにし、お互いのスキルを見つけやすくするSkill。
📜 元の英語説明(参考)
A skill that creates new Claude skills and automatically shares them on Slack using Rube for seamless team collaboration and skill discovery.
🇯🇵 日本人クリエイター向け解説
新しいClaude Skillを開発し、Rubeを使ってSlackでチームに自動共有することで、メンバー間の連携をスムーズにし、お互いのスキルを見つけやすくするSkill。
※ jpskill.com 編集部が日本のビジネス現場向けに補足した解説です。Skill本体の挙動とは独立した参考情報です。
下記のコマンドをコピーしてターミナル(Mac/Linux)または PowerShell(Windows)に貼り付けてください。 ダウンロード → 解凍 → 配置まで全自動。
mkdir -p ~/.claude/skills && cd ~/.claude/skills && curl -L -o skill-share.zip https://jpskill.com/download/16839.zip && unzip -o skill-share.zip && rm skill-share.zip
$d = "$env:USERPROFILE\.claude\skills"; ni -Force -ItemType Directory $d | Out-Null; iwr https://jpskill.com/download/16839.zip -OutFile "$d\skill-share.zip"; Expand-Archive "$d\skill-share.zip" -DestinationPath $d -Force; ri "$d\skill-share.zip"
完了後、Claude Code を再起動 → 普通に「動画プロンプト作って」のように話しかけるだけで自動発動します。
💾 手動でダウンロードしたい(コマンドが難しい人向け)
- 1. 下の青いボタンを押して
skill-share.zipをダウンロード - 2. ZIPファイルをダブルクリックで解凍 →
skill-shareフォルダができる - 3. そのフォルダを
C:\Users\あなたの名前\.claude\skills\(Win)または~/.claude/skills/(Mac)へ移動 - 4. Claude Code を再起動
⚠️ ダウンロード・利用は自己責任でお願いします。当サイトは内容・動作・安全性について責任を負いません。
🎯 このSkillでできること
下記の説明文を読むと、このSkillがあなたに何をしてくれるかが分かります。Claudeにこの分野の依頼をすると、自動で発動します。
📦 インストール方法 (3ステップ)
- 1. 上の「ダウンロード」ボタンを押して .skill ファイルを取得
- 2. ファイル名の拡張子を .skill から .zip に変えて展開(macは自動展開可)
- 3. 展開してできたフォルダを、ホームフォルダの
.claude/skills/に置く- · macOS / Linux:
~/.claude/skills/ - · Windows:
%USERPROFILE%\.claude\skills\
- · macOS / Linux:
Claude Code を再起動すれば完了。「このSkillを使って…」と話しかけなくても、関連する依頼で自動的に呼び出されます。
詳しい使い方ガイドを見る →- 最終更新
- 2026-05-18
- 取得日時
- 2026-05-18
- 同梱ファイル
- 1
📖 Skill本文(日本語訳)
※ 原文(英語/中国語)を Gemini で日本語化したものです。Claude 自身は原文を読みます。誤訳がある場合は原文をご確認ください。
Skill Share
この Skill を使用する場面
この Skill は、以下が必要な場合に使用します。
- 適切な構造とメタデータを持つ新しい Claude skill を作成する
- 配布可能なskill パッケージを生成する
- 作成した skill をチームが確認できるよう、Slack チャンネルで自動的に共有する
- 共有前にskill の構造を検証する
- skill をパッケージ化してチームに配布する
また、以下の場合にもこの Skill を使用します。
- ユーザーが自分の skill を作成/共有したいと言っている
この Skill は以下に最適です。
- チームのワークフローの一部として skill を作成する
- skill の作成とチームへの通知が必要な内部ツールを構築する
- skill 開発パイプラインを自動化する
- チーム通知による共同 skill 作成
主な機能
1. Skill の作成
- SKILL.md を含む、適切に構造化された skill ディレクトリを作成します。
- 標準化された scripts/、references/、および assets/ ディレクトリを生成します。
- 必要なメタデータを含む YAML frontmatter を自動生成します。
- 命名規則(hyphen-case)を適用します。
2. Skill の検証
- SKILL.md の形式と必須フィールドを検証します。
- 命名規則をチェックします。
- パッケージ化前にメタデータの完全性を確認します。
3. Skill のパッケージ化
- 配布可能な zip ファイルを作成します。
- すべての skill アセットとドキュメントを含めます。
- パッケージ化前に自動的に検証を実行します。
仕組み
- 初期化: skill の名前と説明を入力します。
- 作成: 適切な構造で skill ディレクトリが作成されます。
- 検証: skill のメタデータが正しく検証されます。
- パッケージ化: skill が配布可能な形式にパッケージ化されます。
使用例
Claude に "pdf-analyzer" という skill を作成するように依頼した場合:
1. /skill-pdf-analyzer/ を SKILL.md テンプレートで作成します。
2. 構造化されたディレクトリ (scripts/, references/, assets/) を生成します。
3. skill の構造を検証します。
4. skill を zip ファイルとしてパッケージ化します。 📜 原文 SKILL.md(Claudeが読む英語/中国語)を展開
Skill Share
When to use this skill
Use this skill when you need to:
- Create new Claude skills with proper structure and metadata
- Generate skill packages ready for distribution
- Automatically share created skills on Slack channels for team visibility
- Validate skill structure before sharing
- Package and distribute skills to your team
Also use this skill when:
- User says he wants to create/share his skill
This skill is ideal for:
- Creating skills as part of team workflows
- Building internal tools that need skill creation + team notification
- Automating the skill development pipeline
- Collaborative skill creation with team notifications
Key Features
1. Skill Creation
- Creates properly structured skill directories with SKILL.md
- Generates standardized scripts/, references/, and assets/ directories
- Auto-generates YAML frontmatter with required metadata
- Enforces naming conventions (hyphen-case)
2. Skill Validation
- Validates SKILL.md format and required fields
- Checks naming conventions
- Ensures metadata completeness before packaging
3. Skill Packaging
- Creates distributable zip files
- Includes all skill assets and documentation
- Runs validation automatically before packaging
How It Works
- Initialization: Provide skill name and description
- Creation: Skill directory is created with proper structure
- Validation: Skill metadata is validated for correctness
- Packaging: Skill is packaged into a distributable format
Example Usage
When you ask Claude to create a skill called "pdf-analyzer":
1. Creates /skill-pdf-analyzer/ with SKILL.md template
2. Generates structured directories (scripts/, references/, assets/)
3. Validates the skill structure
4. Packages the skill as a zip file