<- all tokdocs

The 5 Official Claude Code Plugins Worth Installing Right Now

Watch on TikTok

View on TikTok ->

Anthropic has been shipping official Claude Code plugins, and five of them have become the most widely installed. This video breaks down each one with live demos, ranking them from useful to essential. Every plugin on this list is built and maintained by Anthropic, not a third party.

#5: Commit Commands

The simplest plugin on the list handles one of the most tedious parts of any developer's workflow. Commit Commands automates your entire git commit cycle: writing the commit message, pushing the changes, and opening the pull request. If you are tired of context-switching between your editor and the terminal just to ship a commit, this plugin removes that friction entirely.

#4: Hookify

Claude Code sometimes develops habits you do not want. Maybe it keeps pushing directly to main, or it formats code in a way that breaks your team's conventions. Hookify turns a one-time correction into a permanent hook, so the same mistake cannot happen again. The demo shows it creating a hook that prevents pushes to the main branch. It calls the hookify:hookify and hookify:writing-rules skills, asks clarifying questions about which branches to protect, and then writes the rule into your .claude directory.

#3: Claude Code Setup

Drop this plugin into any repository and it will scan your entire codebase to recommend the right configuration. It tells you which hooks, skills, MCP servers, and sub-agents you should be using based on your project's actual structure. The demo shows it generating a full .claude configuration file with PreToolUse hooks, environment protection rules, and recommendations for custom sub-agents like an RLS auditor and a cost-guardrails reviewer. Instead of guessing at your Claude Code setup, this plugin reads your code and tells you exactly what to wire up.

#2: PR Review Toolkit

A single review pass catches some issues. The PR Review Toolkit runs multiple specialized reviewers that each focus on a different dimension of code quality: tests, types, error handling, and overall code quality. This gives you structured, layered feedback instead of one reviewer trying to catch everything at once.

#1: Feature Dev

The top-ranked plugin handles the full lifecycle of building a feature. Feature Dev explores your codebase, plans the implementation, reviews the changes, and helps you ship from start to finish. The demo shows it running inside DevSwarm on a real branch, executing a multi-phase workflow: discovery (inspecting the commit and branch state), codebase exploration, clarifying questions, architecture design, implementation, quality review, and summary. It reads env file conventions, checks test directories, finds call sites of relevant functions, verifies type checks, and tracks progress through an internal todo list as it works.

Running These in Parallel with DevSwarm

The video creator uses DevSwarm to run these plugins across multiple branches simultaneously in isolated VS Code environments. Each branch gets its own workspace with its own Claude Code agent, so you can have hookify configuring one branch while feature-dev builds out another. The screen recordings show the DevSwarm workspace sidebar with multiple repos and branches running concurrently.

Key Takeaways

  • All five plugins are official Anthropic releases, available through the Claude Code plugin marketplace under claude-plugins-official.
  • Hookify is the best way to enforce team conventions without writing hook scripts by hand. Tell Claude what went wrong once, and it writes the rule for you.
  • Claude Code Setup is the fastest path to a well-configured project. It reads your codebase and recommends hooks, sub-agents, and MCP servers specific to your stack.
  • Feature Dev is the most ambitious plugin on the list. It handles discovery, planning, implementation, and review in a single workflow, and it tracks its own progress through phases.
  • The PR Review Toolkit replaces the single-pass review with specialized reviewers that each check a different quality dimension.

Resources

Published June 11, 2026. Writeup generated from a favorited TikTok.