{
  "markdown": "# claude-plugins\n\nA collection of Claude Code plugins by Yohei Nakanishi. New plugins are added over time as new workflows and use cases emerge.\n\n## Plugins\n\n### [ci-forge](./plugins/ci-forge) `v1.0.0`\n\nInstall self-contained GitHub Actions CI into any repository with one command.\n\n`/ci-forge:init` detects whether the repo is a Claude plugin marketplace, asks which CI profile to enable (marketplace validation, repo hygiene, or both), and writes complete workflow files — no reusable-workflow references, no secrets, zero runtime dependency on this repository.\n\n```\n/plugin install ci-forge\n```\n\n### [devteam](./plugins/devteam) `v1.1.0`\n\nMulti-agent development team orchestration with file-based message queues.\n\nAssemble an AI-powered team where an Orchestrator delegates tasks to specialized agents — implementers, reviewers, evaluators, doc managers, and release managers — all coordinated via sprint contracts and a structured chain of command.\n\n```\n/plugin install devteam\n```\n\n### [dev-forge](./plugins/dev-forge) `v3.0.3`\n\nHuman As The Architect — integrated setup, knowledge base, and completion criteria for AI-assisted development.\n\nThree capabilities in one plugin: **Setup** places agent team templates so the pipeline is ready in under a minute; **Guide** stores your guidelines, decisions, and domain concepts and injects the catalogue at every session start; **Gate** turns your completion criteria into machine-verifiable pass/fail checks with executable commands.\n\n```\n/plugin install dev-forge\n```\n\n### [git-flow](./plugins/git-flow) `v1.0.0`\n\nGit workflow guardrails: warns on main-branch commits, creates PRs gated by /code-review, and sets up your GitHub noreply git identity.\n\nKeep commits off `main` with an advisory branch-first hook, gate every pull request behind a `/code-review` pass before it is opened, and configure a privacy-preserving `<id>+<login>@users.noreply.github.com` commit identity — all in one plugin.\n\n```\n/plugin install git-flow\n```\n\n### [genpptx](./plugins/genpptx) `v1.4.4`\n\nGenerates PowerPoint presentations from content files (meeting notes, memos).\n\nProvide a content file and the plugin designs a story-driven slide structure, produces a `spec.yaml`, and outputs `.pptx` + `.html` — end to end.\n\n```\n/plugin install genpptx\n```\n\n### [mcpa](./plugins/mcpa) `v1.0.0`\n\nAdd a stdio MCP server to Claude Code interactively or with arguments.\n\nA wrapper around `claude mcp add` that guides you through server name, command, args, env vars, and scope — or accepts them all as flags for one-shot registration.\n\n```\n/plugin install mcpa\n```\n\n### [mcpd](./plugins/mcpd) `v1.0.1`\n\nDiagnose MCP server configuration, connectivity, and available tools.\n\nReads all MCP configuration files (global and project-level), checks environment variables, verifies server connectivity, and lists available tools — all in one command.\n\n```\n/plugin install mcpd\n```\n\n### [mcpg](./plugins/mcpg) `v1.0.0`\n\nGenerate MCP server scaffold and tool implementation code from a natural language description.\n\nDescribe what tools you want in plain language, choose TypeScript or Python, and get a working server skeleton — complete with input schemas and handler logic — ready to install.\n\n```\n/plugin install mcpg\n```\n\n### [mcpl](./plugins/mcpl) `v1.0.0`\n\nTail and display MCP server stderr logs in real time.\n\n引数なしで設定済み全サーバーのログを統合表示、`--server` 指定で特定サーバーに絞ってリアルタイム監視する。\n\n```\n/plugin install mcpl\n```\n\n### [mcpr](./plugins/mcpr) `v1.0.0`\n\nRun MCP server tools directly and inspect their responses.\n\nCall any tool with explicit arguments for scripted use, or use interactive mode to walk through server → tool → argument input step by step.\n\n```\n/plugin install mcpr\n```\n\n### [mcpx](./plugins/mcpx) `v1.0.0`\n\nInteractively explore MCP server tools and their input schemas.\n\nDrill down from server → tool → schema to inspect parameter names, types, and descriptions — without writing any code.\n\n```\n/plugin install mcpx\n```\n\n### [obsidian-archive](./plugins/obsidian-archive) `v1.0.0`\n\nAutomatically generates session summaries and saves them to an Obsidian vault.\n\nCaptures what you built, decided, and carried over — at session end or on a configurable interval — as structured Markdown notes in your vault.\n\n```\n/plugin install obsidian-archive\n```\n\n### [slide-revive](./plugins/slide-revive) `v1.0.0`\n\nRebuild NotebookLM slide PDFs as fully editable PPTX files using Vision AI.\n\nNotebookLM exports embed each slide as a flat image with no editable content. slide-revive runs every page through Claude's Vision AI, reconstructs titles, bullets, and tables as native PPTX objects, and outputs `.pptx` + `.html` — no external API key required.\n\n```\n/plugin install slide-revive\n```\n\n## Installation\n\nAdd the marketplace once, then install any plugin by name:\n\n```\n/plugin marketplace add yn01/claude-plugins\n/plugin install <plugin-name>\n```\n\n## Versioning\n\nVersions follow [Semantic Versioning](https://semver.org/) (`MAJOR.MINOR.PATCH`):\n\n| Increment | When to use |\n|-----------|-------------|\n| `MAJOR` | Breaking changes — commands renamed/removed, behavior changed incompatibly |\n| `MINOR` | New features added in a backward-compatible manner |\n| `PATCH` | Bug fixes, documentation updates, minor refinements |\n\nVersion is declared in each plugin's `.claude-plugin/plugin.json`. If omitted, Claude Code falls back to the git commit SHA.\n\n## Changelog\n\n### 2026-07-05\n- Fix **dev-forge** to v3.0.3 — plugin directory resolution in init/team/gate/guide commands used the nonexistent `claude plugin path`; now resolved via `claude plugin list --json` installPath\n- Add **ci-forge** v1.0.0 — `/ci-forge:init` installs self-contained GitHub Actions CI (marketplace-validate, repo-hygiene) into any repo\n- Add **git-flow** v1.0.0 — branch-first guard hook, review-gated /git-flow:pr, and /git-flow:setup-git-identity\n- Fix **dev-forge** to v3.0.2 — use version-independent `${CLAUDE_PLUGIN_ROOT}` for hook paths; the SessionStart guide auto-injection and PreToolUse(Bash) gate warning were broken by a hardcoded `3.0.0/` cache path\n\n### 2026-07-04\n- Fix **dev-forge** to v3.0.1 — add architecture diagram to README\n- Update **dev-forge** to v3.0.0 — integrated release; absorbs dev-guide and dev-gate into a single plugin; adds `/dev-forge:guide` and `/dev-forge:gate` commands; removes dependency on sister plugins; project files moved to `.dev-forge/guide/` and `.dev-forge/gate/`\n- Remove **dev-gate** — functionality integrated into dev-forge v3.0.0\n- Remove **dev-guide** — functionality integrated into dev-forge v3.0.0\n\n### 2026-06-27\n- Fix **dev-gate** to v1.0.1 — hooks.json script path updated to plugin cache directory\n- Fix **dev-guide** to v1.0.1 — hooks.json script path updated to plugin cache directory\n- Fix **dev-forge** to v2.0.2 — bump plugin.json version to match README (missed in v2.0.1)\n- Fix **dev-forge** to v2.0.1 — add hooks.json with script paths pointing to plugin cache directory\n\n### 2026-05-29\n- Update **dev-forge** to v2.0.0 — complete rewrite as Human As The Architect starter kit; removes tmux/SQLite/PM/Bug Council infrastructure; adds init + team commands with fullstack/backend-only/minimal presets\n- Add **dev-gate** v1.0.0 — machine-verifiable completion criteria with automatic pass/fail verification; commands: define, verify, list, template\n- Add **dev-guide** v1.0.0 — human-authored knowledge base with automatic session-start injection; commands: add, list, query, inject\n\n### 2026-04-27\n- Update **dev-forge** to v1.5.1 — fix project-manager missing from bulk agent operations; update sprint-workflow and escalation-rules docs\n\n### 2026-04-26\n- Update **dev-forge** to v1.5.0 — cross-team agent re-routing to Project Manager, Orchestrator scope tightened, explorer re-classified as shared resource\n\n### 2026-04-25\n- Update **dev-forge** to v1.4.0 — Project Manager agent (PMBOK 8th edition), role redistribution between Orchestrator and PM, updated communication hierarchy\n\n### 2026-04-19\n- Update **dev-forge** to v1.2.0 — model profiles (economy/balanced/quality), runtime model switching without restart, `/dev-forge:model` command, model aliases (opus/sonnet/haiku)\n\n### 2026-04-17\n- Update **dev-forge** to v1.1.0 — auto-assign learning numbers, add `learn status` subcommand, add Key Concepts glossary to README\n\n### 2026-04-07\n- Add **dev-forge** v1.0.0 — SQLite-backed multi-agent development team with wiki, learnings, and bug council escalation\n\n### 2026-04-05\n- Add **slide-revive** v1.0.0 — rebuild NotebookLM slide PDFs as editable PPTX using Vision AI\n\n### 2026-04-03\n- Add **mcpl** v1.0.0 — tail and display MCP server stderr logs in real time\n\n### 2026-04-02\n- Add **mcpa** v1.0.0 — add stdio MCP servers to Claude Code interactively or with arguments\n- Add **mcpg** v1.0.0 — generate MCP server scaffold from natural language description\n- Add **mcpr** v1.0.0 — run MCP server tools directly and inspect responses\n- Add **mcpx** v1.0.0 — interactive MCP server tool explorer\n\n### 2026-04-01\n- Add **mcpd** v1.0.0 — MCP server diagnostic plugin\n\n### 2026-03-28\n- Update **devteam** to v1.1.0 — sprint contracts, evaluator agents, communication rules\n\n### 2026-03-17\n- Add **devteam** v1.0.0 — multi-agent development team orchestration\n- Add **genpptx** v1.0.0 — PowerPoint generation from content files\n- Add **obsidian-archive** v1.0.0 — automatic session archiving to Obsidian\n\n",
  "bytes": 9368,
  "sha": "a2d36364979ccadd473668bd49cf30cc17081bd5030b9b5de0fca5ab2d3f54a6",
  "repo_slug": "yn01/claude-plugins",
  "fonte": "repo",
  "truncated": false,
  "api": "https://agentalog.com/api/listings/plg_yn01_claude_plugins_mcpa_f9d98fcc/readme"
}