Plugin Claude Code
Plugin marketplace listing 1 plugin: devkit.
Plugin Claude Code
Plugin marketplace listing 1 plugin: devkit.
Plugin Claude Code
A Claude Code plugin with debugging, code analysis, and developer productivity commands.
Agent
Analyzes codebase implementation details. Call when you need to understand how specific components work, trace data flow, or map execution paths. The more detailed your prompt, the better the analysis.
Agent
Locates files, directories, and components relevant to a feature or task. Call with a human language prompt describing what you're looking for — a "Super Grep/Glob/LS tool" for when you need to search across multiple patterns.
Agent
Finds similar implementations, usage examples, or existing patterns that can be modeled after. Like codebase-locator but also extracts concrete code examples and shows how patterns are used.
Agent
Checks a code diff against a repo's documented conventions (CLAUDE.md, .claude/codebase/.md, CONTRIBUTING.md, STYLE.md). Surfaces matches and deviations with file:line references and severity. Reusable across pr-review, address-pr, and pre-PR review tools.
Agent
Writes one unit test file for one source file, runs it, and retries failures. Per-file scope. Always operates within a platform adapter loaded by /devkit:cover. Returns structured JSON describing what landed.
Agent
Researches questions using web search when codebase context alone isn't enough. Use for library docs, known issues, API references, best practices, or any information that might only be discoverable on the web.
Command
Read reviewer comments on a PR, classify them, draft fixes for change-requests and replies for questions, commit and post — with author approval at every step.
Command
Scaffold and generate unit tests for a package or file. Platform-aware (react-native, node, android).
Command
Auto-instrument React Native library components with testID and accessibilityLabel forwarding plus default derivation.
Command
Generate a senior-architect-level review brief for a pull request — pre-answers "why" questions from git history, triages files by attention need, surfaces conventions and risks.
Command
Split a large set of changes — an open PR or a local branch — into smaller, dependency-aware PRs. SUGGEST plans, DRAFT creates branches, EXECUTE also opens PRs.
Command
Auto-instrument code with trace logs, capture output, and fix the bug.
Command
Explain why a piece of code exists. Walks line history to find the originating substantive commit (skips typo fixes, formatting, rename refactors), pulls in the merging PR, linked JIRA ticket, and review-thread debate. Replaces the manual git blame + GitHub click-through dance.
Skill Claude CodeCodex
This skill auto-triggers when the user is manually adding debug logs or print statements to trace code execution. Trigger phrases: "add a log", "print statement", "console.log", "Log.d", "logger.debug", "trace this", "add some logging", "where is this called", "which path is executing", "let me add a log here", "not…