By sumik5
sumik Claude Code Plugin (ai) — AI/LLM/エージェント開発スキル群(GenAIデザインパターン/AIエージェント構築/Web AI統合/promptfoo評価)
AIエージェント構築ガイド(LangChain/LangGraph・Google ADK・リアルタイムマルチモーダル)。 Use when building AI agents with LangChain, LangGraph, Google ADK, or Gemini Live API. フレームワーク選択、ツール定義、マルチエージェント、A2A、リアルタイム音声/動画を含む。 For framework-agnostic GenAI design patterns, use designing-genai-patterns. For JS/Vercel AI SDK web integration, use integrating-ai-web-apps. For MCP protocol/server design, use developing-mcp.
32 production-grade GenAI design patterns covering content control (Logits Masking, Grammar, Style Transfer), RAG architecture, model capabilities (Chain of Thought, Adapter Tuning), reliability (LLM-as-Judge, Reflection, Prompt Optimization), agentic systems (Tool Calling, Multiagent Collaboration), deployment optimization (SLM, Prompt Caching, Inference Optimization), safety guardrails (Self-Check, Guardrails), RAG implementation (11 source types, chunking, vector stores), and LLMOps/AgentOps (maturity L0–2, Tool/Agent Registry, Memory Governance, LLM metrics, LLMSecOps). Also covers AI performance (GPU/CUDA, LLM inference) via PERF- references. Use when designing GenAI applications, choosing RAG strategies, implementing agent architectures, optimizing LLM reliability, or operating AI systems in production. For web AI (Vercel AI SDK, LangChain.js), use integrating-ai-web-apps. For GCP-specific ML (BigQuery ML, Vertex AI), use developing-google-cloud.
LLM evaluation and red-teaming toolkit using promptfoo. Covers promptfooconfig.yaml configuration, 40+ assertion types (deterministic, model-graded, RAG), provider setup (OpenAI, Anthropic, Google, Ollama, HTTP, custom JS/Python), red teaming (134+ plugins, jailbreak strategies, compliance frameworks), CLI commands, caching, and CI/CD integration. Use when writing promptfooconfig.yaml, designing LLM test suites, running adversarial red team evaluations, or integrating LLM quality gates in CI/CD. Detects: promptfooconfig.yaml or promptfoo in package.json. For general LLMOps operations, use designing-genai-patterns. For general test methodology (TDD/AAA), use testing-code.
Comprehensive guide to integrating generative AI into web applications using Vercel AI SDK, LangChain.js, and MCP with React/Next.js. Use when building AI-powered web features (streaming chat, RAG, tool calling, structured data generation) in JavaScript/TypeScript projects. For RAG system internals, use designing-genai-patterns. For MCP protocol development, use developing-mcp. For Next.js framework specifics, use developing-nextjs. For Python LangChain/LangGraph agent development, use building-ai-agents. For framework-agnostic GenAI design patterns (32 patterns covering content control through safety guardrails), use designing-genai-patterns.
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 / Codex の開発ワークフローを強化する包括的なプラグインシステム
LLMの開発効率を最大化するためのプラグイン。Agent、コマンド、スキル、フック、MCPサーバー統合を含み、並列実行モデル、トークン効率化、型安全性、セキュリティファーストのアプローチを実現します。
/plugin install devkit@sumik
/plugin install studio@sumik
/plugin install lang@sumik
/plugin install cloud@sumik
/plugin install ai@sumik
/plugin install design@sumik
codex plugin marketplace add https://github.com/sumik5/sumik-llm-plugin.git --ref main
codex plugin add devkit@sumik-marketplace
codex plugin add studio@sumik-marketplace
codex plugin add lang@sumik-marketplace
codex plugin add cloud@sumik-marketplace
codex plugin add ai@sumik-marketplace
codex plugin add design@sumik-marketplace
sumik-llm-plugin/ # GitHub repo(Codex はここを git clone)
├── .agents/
│ └── plugins/
│ └── marketplace.json # Codex marketplace manifest(marketplace 名 sumik-marketplace / plugin 名 devkit + studio + lang + cloud + ai + design)
├── .cache/
│ └── sumik-marketplace/
│ ├── devkit -> ../.. # Codex marketplace から repo root の plugin を指す symlink
│ ├── studio -> ../../plugins/studio # Codex marketplace から studio plugin を指す symlink
│ ├── lang -> ../../plugins/lang # Codex marketplace から lang plugin を指す symlink
│ ├── cloud -> ../../plugins/cloud # Codex marketplace から cloud plugin を指す symlink
│ ├── ai -> ../../plugins/ai # Codex marketplace から ai plugin を指す symlink
│ └── design -> ../../plugins/design # Codex marketplace から design plugin を指す symlink
├── .claude-plugin/
│ └── marketplace.json # claude.ai が読む(marketplace 名 sumik / plugin 名 devkit + studio + lang + cloud + ai + design / source ./plugins/<p>)
├── .codex-plugin/
│ └── plugin.json # Codex CLI プラグインマニフェスト(plugin 名 devkit / skills ./plugins/devkit/skills/ / version 同期必須)
├── .mcp-codex.json # Codex 用 MCPサーバー設定(command ./plugins/devkit/bin/... / cwd ".")
├── README.md
├── CLAUDE.md
└── plugins/
├── devkit/ # Claude Code プラグイン本体(claude.ai が取り込む清潔な範囲)
│ ├── .claude-plugin/
│ │ └── plugin.json # プラグインメタデータ(plugin 名 devkit / .codex-plugin/ と version 同期必須)
│ ├── .mcp.json # Claude 用 MCPサーバー設定(${CLAUDE_PLUGIN_ROOT}/bin/...)
│ ├── agents/ # Agent定義 (28体、カテゴリ別プレフィックス: core/lang/fw/fe/cloud/qa/data/doc/str)
│ ├── commands/ # スラッシュコマンド (12個)
│ ├── hooks/ # イベントフック (4個)
│ ├── bin/ # MCPサーバー起動ラッパー (npx-mise.sh, uvx-mise.sh)
│ ├── scripts/ # ヘルパースクリプト (3個)
│ └── skills/ # ナレッジスキル (28個)
├── studio/ # コンテンツ制作プラグイン(slides/diagrams/flashcards/LaTeX 等)
│ ├── .claude-plugin/
│ │ └── plugin.json # プラグインメタデータ(plugin 名 studio / version 同期必須)
│ ├── .mcp.json # Claude 用 MCPサーバー設定(drawio・${CLAUDE_PLUGIN_ROOT}/bin/...)
│ ├── .codex-plugin/
│ │ └── plugin.json # Codex CLI プラグインマニフェスト(plugin 名 studio / skills ./skills/)
│ ├── .mcp-codex.json # Codex 用 MCPサーバー設定(drawio・command ./bin/... / cwd ".")
│ ├── README.md
│ ├── bin/ # MCPサーバー起動ラッパー (npx-mise.sh)
│ ├── commands/ # スラッシュコマンド (2個)
│ ├── scripts/ # ヘルパースクリプト (pdf-to-markdown, epub-fix-cover.sh)
│ └── skills/ # ナレッジスキル (11個)
├── lang/ # 言語・フレームワーク・フロントエンド実装プラグイン(skills-only)
│ ├── .claude-plugin/
│ │ └── plugin.json # プラグインメタデータ(plugin 名 lang / version 同期必須)
│ ├── .codex-plugin/
│ │ └── plugin.json # Codex CLI プラグインマニフェスト(plugin 名 lang / skills ./skills/ / mcpServers なし)
│ ├── README.md
│ └── skills/ # ナレッジスキル (14個)
├── cloud/ # クラウド・インフラ・アーキテクチャプラグイン(skills-only)
│ ├── .claude-plugin/
│ │ └── plugin.json # プラグインメタデータ(plugin 名 cloud / version 同期必須)
│ ├── .codex-plugin/
│ │ └── plugin.json # Codex CLI プラグインマニフェスト(plugin 名 cloud / skills ./skills/ / mcpServers なし)
│ ├── README.md
│ └── skills/ # ナレッジスキル (11個)
├── ai/ # AI/LLM/エージェント開発プラグイン(skills-only)
│ ├── .claude-plugin/
│ │ └── plugin.json # プラグインメタデータ(plugin 名 ai / version 同期必須)
│ ├── .codex-plugin/
│ │ └── plugin.json # Codex CLI プラグインマニフェスト(plugin 名 ai / skills ./skills/ / mcpServers なし)
│ ├── README.md
│ └── skills/ # ナレッジスキル (4個)
npx claudepluginhub sumik5/sumik-llm-plugin --plugin aisumik Claude Code Plugin (design) — UX/デザイン戦略スキル群(UXデザイン/AIエクスペリエンス/デザイン思考/データビジュアライゼーション/デザインシステム/行動デザイン)
sumik Claude Code Plugin (studio) — slides, diagrams, flashcards, EPUB/PDF conversion, LaTeX, content & training creation
sumik Claude Code Plugin (lang) — 言語・フレームワーク・フロントエンド実装スキル群(Python/Go/Bash/React/Next.js/フルスタックJS/DB/Web API/MCP/Tailwind/Figma実装/ブラウザ自動化)
sumik Claude Code Plugin
sumik Claude Code Plugin (cloud) — クラウド・インフラ・アーキテクチャスキル群(AWS/Google Cloud/Terraform/Firebase/DevOps/オブザーバビリティ/認可/Keycloak/インフラ・データ設計/マルチテナントSaaS)
Ultra-compressed communication mode. Cuts ~75% of tokens while keeping full technical accuracy by speaking like a caveman.
Frontend design skill for UI/UX implementation
Comprehensive UI/UX design plugin for mobile (iOS, Android, React Native) and web applications with design systems, accessibility, and modern patterns
Memory compression system for Claude Code - persist context across sessions
Marketing skills for AI agents — conversion optimization, copywriting, SEO, paid ads, ad creative, and growth
Standalone image generation plugin using Nano Banana MCP server. Generates and edits images, icons, diagrams, patterns, and visual assets via Gemini image models. No Gemini CLI dependency required.