Nette Plugins for Claude Code

June 5, 2026 · View on GitHub

Plugins for Claude Code – the AI-powered coding assistant by Anthropic. These plugins give Claude deep knowledge of the Nette Framework ecosystem, including best practices, coding conventions, and automatic file validation.

image

Installation

First, add the Nette marketplace to Claude Code (and enable auto-update):

/plugin marketplace add nette/claude-code

Then install the plugin:

/plugin install nette@nette

Optionally, Nette Framework contributors can also install:

/plugin install nette-dev@nette

For automatic PHP code style fixing:

/plugin install php-fixer@nette
/install-php-fixer

Plugins

nette – For Application Developers

Best practices and conventions for building applications with Nette Framework. Includes automatic Latte template and NEON file validation.

SkillDescription
nette-architectureApplication architecture, presenters, modules, directory structure
nette-configurationDI container, services.neon, autowiring
nette-databaseDatabase conventions, entities, Selection API, queries
nette-formsForm controls, validation, rendering, create/edit patterns
nette-schemaData validation and normalization with Expect class
nette-testerNette Tester usage, test structure, assertions
nette-utilsUtility classes: Arrays, Strings, Image, Finder, DateTime, Json, Validators
frontend-developmentVite, ESLint, Tailwind, Nette Assets integration
latte-templatesLatte templating system, layouts, filters, template classes
neon-formatNEON data format syntax, mappings, sequences, entities
tracy-debuggingDebugging PHP errors via Tracy: BlueScreen, Tracy Bar, dump, console output

nette-dev – For Framework Contributors

Coding standards and conventions for contributing to the Nette Framework itself.

SkillDescription
php-coding-standardsPHP formatting, naming conventions, code style
php-docphpDoc documentation best practices
commit-messagesCommit message conventions for Nette repositories
phpstan-analysisPHPStan error resolution, baselines, type tests, common Nette patterns

php-fixer – Automatic PHP Style Fixing

Optional plugin that automatically fixes PHP code style after each edit using nette/coding-standard.

Usage

Skills are automatically activated based on conversation context. For example:

  • Ask about "presenter structure" → activates nette-architecture
  • Ask about "form validation" → activates nette-forms
  • Ask about "Latte templates" → activates latte-templates
  • Etc..