https://github.com/nette/claude-code
Official Claude Code plugins for Nette
https://github.com/nette/claude-code
ai claude claude-code llm nette vibe-coding vibecoding
Last synced: 4 days ago
JSON representation
Official Claude Code plugins for Nette
- Host: GitHub
- URL: https://github.com/nette/claude-code
- Owner: nette
- Created: 2026-01-04T00:57:19.000Z (13 days ago)
- Default Branch: master
- Last Pushed: 2026-01-11T13:28:58.000Z (5 days ago)
- Last Synced: 2026-01-11T17:26:09.491Z (5 days ago)
- Topics: ai, claude, claude-code, llm, nette, vibe-coding, vibecoding
- Language: PHP
- Homepage: https://ai.nette.org/en/claude-code
- Size: 84 KB
- Stars: 27
- Watchers: 3
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# Nette Plugins for Claude Code
Plugins for [Claude Code](https://claude.com/product/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.

## 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
```
## Plugins
### `nette` – For Application Developers
Best practices and conventions for building applications with Nette Framework. Includes automatic Latte template and NEON file validation.
| Skill | Description |
|-------|-------------|
| **nette-architecture** | Application architecture, presenters, modules, directory structure |
| **nette-configuration** | DI container, services.neon, autowiring |
| **nette-database** | Database conventions, entities, Selection API, queries |
| **nette-forms** | Form controls, validation, rendering, create/edit patterns |
| **nette-schema** | Data validation and normalization with Expect class |
| **nette-testing** | Nette Tester usage, test structure, assertions |
| **nette-utils** | Utility classes: Arrays, Strings, Image, Finder, DateTime, Json, Validators |
| **frontend-development** | Vite, ESLint, Tailwind, Nette Assets integration |
| **latte-templates** | Latte templating system, layouts, filters, template classes |
| **neon-format** | NEON data format syntax, mappings, sequences, entities |
### `nette-dev` – For Framework Contributors
Coding standards for contributing to the Nette Framework itself. Includes automatic PHP code style fixing.
| Skill | Description |
|-------|-------------|
| **php-coding-standards** | PHP formatting, naming conventions, code style |
| **php-doc** | phpDoc documentation best practices |
| **commit-messages** | Commit message conventions for Nette repositories |
**Optional:** To enable automatic PHP code style fixing, install nette/coding-standard globally:
```
/install-nette-cs
```
## 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..