Playwright自動化のベストプラクティス。要素操作、待機戦略、ナビゲーションパターン、ロケータ使用法をカバー
自分専用の 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 playwright-best-practices開発全般で使える汎用スキル集。コーディング規約、デバッグ手順、リファクタリング指針、コードレビュー観点、テスト戦略をカバー
Astro 5.x静的ブログ構築のベストプラクティス。Islands Architecture、Content Layer API、画像最適化、SEOなど
GitHub Agentic Workflowsの作成・運用ベストプラクティス。フロントマター仕様、セキュリティ、デザインパターン
Advanced Playwright skills for end-to-end testing, test architecture, and test automation best practices.
Production-grade Playwright testing toolkit. Generate tests from specs, fix flaky failures, migrate from Cypress/Selenium, sync with TestRail, run on BrowserStack. 55+ ready-to-use templates, 3 specialized agents, smart reporting that plugs into your existing workflow.
Playwright automation toolkit with MCP integration, specialized agent for browser control, and best practice skills
Playwright E2E test debugging and interactive browser exploration. Runs tests with action capture (DOM snapshots, network, console, screenshots), diagnoses failures, and provides browser tools for navigating, clicking, and inspecting pages through ARIA snapshots.
Claude Code Skill for general-purpose browser automation with Playwright. Auto-detects dev servers, writes clean test scripts to /tmp, and autonomously handles any browser automation task.
Ultra-compressed communication mode. Cuts ~75% of tokens while keeping full technical accuracy by speaking like a caveman.