By yutaura
yutaura's personal Claude Code toolkit. Currently bundles skills (tuning / claude-code-rules / repo-kickoff / decision-council / playwright-cli). Will grow to include agents and commands as needed.
Claude Code の rules ファイル(.claude/rules/*.md)を作成・改善するためのスキル。新規プロジェクトへの rules 導入、既存 rules の分析・リファクタリング、条件付きルールの設計に使用。「rules を作成したい」「CLAUDE.md を整理したい」「ルールを追加したい」といった要求時にトリガー。
重要な意思決定を、複数の役割エージェントを並列起動して多角検証する skill。Devil's Advocate を必須枠として、時間軸・立場軸・論理軸・価値軸の 4 カテゴリから固定役を常駐させる。決定の「逆戻り可能性」に応じて 3 役 / 5 役 / 7 役を自動選択し、テーマに応じてアドホック役 (Maintainer / Adversary / Historian など) を追加する。Use when: (1) アーキテクチャ・技術選定など中長期に効く判断、(2) 撤退・廃止・大規模リファクタなど後戻りコストが高い判断、(3) 採用・組織変更・体制変更など人に関わる判断、(4) 「これでいいのか自信がない」と感じる根幹判断。普段の小さな判断には使わない。
Automates browser interactions for web testing, form filling, screenshots, and data extraction. Use when the user needs to navigate websites, interact with web pages, fill forms, take screenshots, test web applications, or extract information from web pages.
新規リポジトリの立ち上げ時に、存在意義・スコープ・ロードマップ・成功条件などを多角的にヒアリングし、README.md / docs/ 配下の設計文書(charter / roadmap / architecture)/ CLAUDE.md を体系的に整備する。文書を「揺るがない部分」と「揺らぎ得る部分」に分離して保守性を高めるのが特徴。Use when: (1) 新しいリポジトリを作成した直後、(2) 既存リポジトリの目的やロードマップを整理し直したいとき、(3) 「このリポジトリって結局何のためにあるんだっけ」が曖昧になったとき。
Claude の振る舞いをユーザーの好みに合わせて調整する。フィードバックや要望を分析し、最適な設定ファイル(skills, rules, CLAUDE.md)を特定して更新案を提示する。Use when: (1) Claude の振る舞いを変えたいとき(「次からこうして」「こうなって欲しい」「これはやめて」), (2) 既存の skill・rules・CLAUDE.md を改善・整理したいとき, (3) 新しいルールや方針を追加したいとき, (4) 設定の整理統合やリファクタリングをしたいとき
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.
Claude Code 向けの個人用 plugin marketplace。 基本的に yutaura 個人で利用する想定。
yutaura-toolkit現状は skills のみ。今後 agents / commands / hooks も必要に応じて追加する。
| Skill | 概要 |
|---|---|
tuning | Claude の振る舞いを設定ファイル(skills / rules / CLAUDE.md)に反映する |
claude-code-rules | .claude/rules/*.md の作成・改善・リファクタ |
repo-kickoff | 新規リポジトリ立ち上げ時の README / docs / CLAUDE.md 整備 |
decision-council | 重要な意思決定を複数役のエージェントで多角検証 |
playwright-cli | playwright-cli を使ったブラウザ自動操作 |
/plugin marketplace add https://github.com/yutaura/claude-marketplace.git
~/.claude/settings.json に記述(nix-darwin で管理している場合は home/common/claude-code.nix 経由):
{
"enabledPlugins": {
"yutaura-toolkit@yutaura-marketplace": true
}
}
Third-party marketplace の auto-update は default で OFF。明示的に有効にする必要がある。
CLI 自体の auto-update を DISABLE_AUTOUPDATER=1 で止めている場合、plugin だけは更新したいので
FORCE_AUTOUPDATE_PLUGINS=1 を併用する(nix-darwin 側は設定済み)。
export DISABLE_AUTOUPDATER=1 # 任意。CLI を手動更新したい場合のみ
export FORCE_AUTOUPDATE_PLUGINS=1
公式に declarative な手段はなく、/plugin UI で marketplace 単位に toggle する:
/plugin
→ Marketplaces タブ
→ yutaura-marketplace を選択
→ Enable auto-update
設定は ~/.claude/plugins/known_marketplaces.json に保存される(user state)。
auto-update を有効にしない場合、または即時反映したい場合:
/plugin marketplace update yutaura-marketplace
/reload-plugins
.
├── .claude-plugin/
│ └── marketplace.json
├── plugins/
│ └── yutaura-toolkit/
│ ├── .claude-plugin/
│ │ └── plugin.json
│ └── skills/
│ ├── claude-code-rules/
│ ├── decision-council/
│ ├── playwright-cli/
│ ├── repo-kickoff/
│ └── tuning/
└── rules/ # nix-darwin から fetch される
├── tdd-guidelines.md
└── documentation-principles.md
将来 agents / commands 等を追加する場合は plugins/yutaura-toolkit/ 直下に
agents/ commands/ hooks/ .mcp.json などを配置する。
.claude/rules/*.md(auto-loaded ルール)は Claude Code plugin の公式配信対象外
(plugin の標準ディレクトリは skills / agents / commands / hooks / mcp / lsp / monitors / bin のみ)。
このため rules は marketplace 配信ではなく、別レーンで配信する:
rules/ ディレクトリ~/.claude/rules/pkgs/yutaura-rules.nix が fetchFromGitHub でこのリポジトリを取得し、home.file で配置nix flake update → darwin-rebuild switch(plugin auto-update とは別系統)つまり Claude Code が auto-load してくれる挙動は維持したまま、ファイルは marketplace と同じリポジトリで履歴管理される。
SKILL.md 等)を編集plugins/yutaura-toolkit/.claude-plugin/plugin.json の version を bump/plugin marketplace update yutaura-marketplace → /reload-pluginsnpx claudepluginhub yutaura/claude-marketplace --plugin yutaura-toolkitUI/UX design intelligence. 67 styles, 161 palettes, 57 font pairings, 25 charts, 15 stacks (React, Next.js, Vue, Svelte, Astro, SwiftUI, React Native, Flutter, Tailwind, shadcn/ui, Nuxt, Jetpack Compose). Actions: plan, build, create, design, implement, review, fix, improve, optimize, enhance, refactor, check UI/UX code. Projects: website, landing page, dashboard, admin panel, e-commerce, SaaS, portfolio, blog, mobile app. Elements: button, modal, navbar, sidebar, card, table, form, chart. Styles: glassmorphism, claymorphism, minimalism, brutalism, neumorphism, bento grid, dark mode, responsive, skeuomorphism, flat design. Topics: color palette, accessibility, animation, layout, typography, font pairing, spacing, hover, shadow, gradient.
Comprehensive skill pack with 66 specialized skills for full-stack developers: 12 language experts (Python, TypeScript, Go, Rust, C++, Swift, Kotlin, C#, PHP, Java, SQL, JavaScript), 10 backend frameworks, 6 frontend/mobile, plus infrastructure, DevOps, security, and testing. Features progressive disclosure architecture for 50% faster loading.
This skill should be used when users need to generate ideas, explore creative solutions, or systematically brainstorm approaches to problems. Use when users request help with ideation, content planning, product features, marketing campaigns, strategic planning, creative writing, or any task requiring structured idea generation. The skill provides 30+ research-validated prompt patterns across 14 categories with exact templates, success metrics, and domain-specific applications.
Develop, test, build, and deploy Godot 4.x games with Claude Code. Includes GdUnit4 testing, web/desktop exports, CI/CD pipelines, and deployment to Vercel/GitHub Pages/itch.io.
Upstash Context7 MCP server for up-to-date documentation lookup. Pull version-specific documentation and code examples directly from source repositories into your LLM context.
A growing collection of Claude-compatible academic workflow bundles. Covers scientific figures, manuscript writing and polishing, reviewer assessment, citation retrieval, data availability, paper reading, literature search, response letters, paper-to-PPTX conversion, and evidence-grounded Chinese invention patent drafting. Rules are organized as reusable skill folders with explicit workflows and quality checks.