開発全般で使える汎用スキル集。コーディング規約、デバッグ手順、リファクタリング指針、コードレビュー観点、テスト戦略をカバー
Git操作(add, commit, switch, push)とGitHub CLI(PR作成・編集、Issue作成、コメント取得)を実行。コミット作成、ブランチ管理、プルリクエスト作成・編集、Issue管理が必要な場合に使用。「コミットして」「PRを作成」「Issueを作成」「ブランチを切って」などのリクエストで起動。
テストの設計・実装・レビューを行うスキル。単体テスト・統合テスト・E2Eテストすべてに対応する。 テストケースの洗い出し、テストコードの実装、既存テストのレビュー(不要テストの削除含む)の3フェーズで作業する。 テスト作成、テスト修正、テストケース選定、テストレビュー、テスト戦略の相談、 「このコードのテストを書いて」「テストを見直して」「何をテストすべきか」といったリクエストで使用する。 テストに関する作業が発生したら積極的にこのスキルを使うこと。
自分専用の Claude Code プラグインマーケットプレイス。
cd suntory-n-water-marketplace
git init
git add .
git commit -m "Initial marketplace setup"
gh repo create suntory-n-water-marketplace --public --source=. --push
Claude Code 内で以下を実行:
/plugin marketplace add Suntory-N-Water/suntory-n-water-marketplace
Claude Code 内で /plugin install を実行:
# Playwright ベストプラクティス
/plugin install playwright-best-practices@suntory-n-water-marketplace
# Astro 5.x ブログ構築
/plugin install building-astro5-blogs@suntory-n-water-marketplace
# GitHub Agentic Workflows
/plugin install gh-aw-best-practice@suntory-n-water-marketplace
# Git/GitHub ワークフロー管理
/plugin install managing-git-github-workflow@suntory-n-water-marketplace
plugins/
└── my-plugin/
├── .claude-plugin/
│ └── plugin.json # 必須: プラグインメタデータ
├── commands/ # スラッシュコマンド (任意)
│ └── my-command.md
├── agents/ # エージェント定義 (任意)
│ └── my-agent.md
├── skills/ # スキル定義 (任意)
│ └── my-skill/
│ └── SKILL.md
├── hooks/ # フック定義 (任意)
│ └── hooks.json
├── .mcp.json # MCP サーバー設定 (任意)
└── README.md
{
"name": "my-plugin",
"description": "プラグインの説明",
"version": "1.0.0",
"author": {
"name": "作者名"
}
}
.claude-plugin/marketplace.json の plugins 配列に追加:
{
"name": "my-plugin",
"description": "プラグインの説明",
"version": "1.0.0",
"author": { "name": "作者名" },
"source": "./plugins/my-plugin",
"category": "development"
}
git add .
git commit -m "Add my-plugin"
git push
プラグインのバージョンを semver 形式でバンプするスクリプトを用意している。
bun run version-bump <plugin-name> <major|minor|patch>
# パッチ: 1.0.0 -> 1.0.1
bun run version-bump playwright-best-practices patch
# マイナー: 1.0.0 -> 1.1.0
bun run version-bump building-astro5-blogs minor
# メジャー: 1.0.0 -> 2.0.0
bun run version-bump gh-aw-best-practice major
Own this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimOwn this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimBased on adoption, maintenance, documentation, and repository signals. Not a security audit or endorsement.
npx claudepluginhub suntory-n-water/suntory-n-water-marketplace --plugin general-dev-skillsAstro 5.x静的ブログ構築のベストプラクティス。Islands Architecture、Content Layer API、画像最適化、SEOなど
Playwright自動化のベストプラクティス。要素操作、待機戦略、ナビゲーションパターン、ロケータ使用法をカバー
GitHub Agentic Workflowsの作成・運用ベストプラクティス。フロントマター仕様、セキュリティ、デザインパターン
Editorial "Essentials" bundle for Claude Code from Antigravity Awesome Skills.
Core skills: ecosystem guide, skill creator, research patterns, session reflection, and plugin development. Includes UserPromptSubmit hook for forced skill evaluation.
Core skills library for Claude Code: TDD, debugging, collaboration patterns, and proven techniques
Complete plugin development toolkit for creating, refactoring, and validating Claude Code plugins and agents. Use when creating new plugins/skills/agents, refactoring existing plugins/skills, validating frontmatter, or restructuring plugin components. Includes specialized agents for assessment, planning, execution, and validation workflows.
Flagship+ skill pack for Cursor IDE - 30 skills for AI code completion, composer workflows, and IDE mastery
Comprehensive UI/UX design plugin for mobile (iOS, Android, React Native) and web applications with design systems, accessibility, and modern patterns