Skip to content

Agronod Plugins Marketplace

Which plugins should I install, and what does each one unlock? This guide maps Agronod's plugin ecosystem to the workflows they enable.

Installation

Add the marketplace and install plugins using slash commands:

bash
/plugin marketplace add agronod/claude-plugins
/plugin install dev@agronod-plugins
/plugin install git@agronod-plugins
/plugin install steering@agronod-plugins

After installation, plugins' commands become available as slash commands and agents activate automatically when relevant.

Manage plugins anytime with /plugin.

Foundation and Composition

Install dev first—it's the foundation. It provides seven specialist agents, nineteen skills, and multi-agent team orchestration that other plugins compose against. Once dev is installed, run /dev:setup to validate your environment. See the Dev Plugin reference for the full agent roster, skill list, and activation matrix.

After dev, add git for conventional commits and structured PRs. Specialized plugins (steering, specs, infra, etc.) are installed on demand based on your workflows.

Available Plugins

PluginPurpose
devFoundation: agents, skills, team orchestration
gitConventional commits and structured pull requests
github-adminGitHub workflow setup and repository administration
infraKubernetes diagnostics, pod debugging, log analysis
jiraTrack ticket status and integrate Jira with your workflow
memoryPersist project context and learnings across sessions
metaAdversarial analysis and hypothesis testing
reportingGenerate professional monthly reports for stakeholders
specsSpec-driven development: requirements → plan → implementation
steeringInitialize and sync project AI context for consistency
utilsScratchpads, AI guidance, and feedback tools
analysisData and code analysis workflows
assistantConversation helpers and prompt templates

Key Workflows

Spec-Driven Development

Before you write code, capture intent with the stakeholders. When kicking off a new feature or sizing an unknown problem, /specs:prd runs a Socratic interview that captures problem statement, success criteria, scope, and constraints as a structured artifact. Subsequent phases (/specs:plan, /specs:blueprint, /specs:build) translate that spec into a plan and implementation.

bash
/specs:prd "Feature: add user authentication"

See Spec-Driven Development for the full four-phase workflow and artifact structure.

Git Workflows

When you've finished work, encode it as a conventional commit with full context. /git:commit generates a message that captures the fix or feature and its motivation, making the git history readable. For PRs, /git:pr structures your description so reviewers understand scope and reasoning.

bash
/git:commit "fix: resolve authentication timeout on slow networks"
/git:pr --title "Add caching layer" --body "Improves latency by 40%"

Context Management

When starting a project or after major changes, sync your AI context so Claude understands the codebase's shape and conventions. /steering:init initializes context from scratch; /steering:sync updates it when the codebase has drifted from the documented state.

bash
/steering:init
/steering:sync

Built with VitePress and powered by Claude Code