Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,15 @@
"nette/tester": "^2.5"
},
"scripts": {
"tester": "vendor/bin/tester tests -s"
"tester": [
"vendor/bin/tester tests -s",
"@validate-plugins"
],
"validate-plugins": [
"claude plugin validate plugins/nette",
"claude plugin validate plugins/nette-lint",
"claude plugin validate plugins/nette-dev",
"claude plugin validate plugins/php-fixer"
]
}
}
2 changes: 1 addition & 1 deletion plugins/nette-dev/.claude-plugin/plugin.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "nette-dev",
"version": "1.0.7",
"version": "1.0.8",
"description": "Coding standards and conventions for Nette Framework contributors",
"author": {"name": "David Grudl"},
"keywords": ["php", "nette", "coding-standards", "phpdoc", "contributor"],
Expand Down
3 changes: 2 additions & 1 deletion plugins/nette-dev/skills/commit-messages/SKILL.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
---
name: commit-messages
description: Invoke BEFORE committing changes. Provides commit message conventions: lowercase, past tense, subject:description format. Use this skill whenever the user commits, creates commit messages, stages changes, uses /commit, tags releases, or discusses commit style - even for simple one-liner commits.
description: >-
Invoke BEFORE committing changes. Provides commit message conventions: lowercase, past tense, subject:description format. Use this skill whenever the user commits, creates commit messages, stages changes, uses /commit, tags releases, or discusses commit style - even for simple one-liner commits.
---

## Commit Message Style
Expand Down
3 changes: 2 additions & 1 deletion plugins/nette-dev/skills/php-coding-standards/SKILL.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
---
name: php-coding-standards
description: Invoke BEFORE writing or modifying any PHP code. Provides coding standards and naming conventions for Nette repos: TABs, single quotes, strict_types, PSR-12 modifications, use statement ordering. Use this whenever creating, modifying, or refactoring any PHP code - even small bug fixes or one-line changes.
description: >-
Invoke BEFORE writing or modifying any PHP code. Provides coding standards and naming conventions for Nette repos: TABs, single quotes, strict_types, PSR-12 modifications, use statement ordering. Use this whenever creating, modifying, or refactoring any PHP code - even small bug fixes or one-line changes.
---

## PHP Coding Standards
Expand Down
3 changes: 2 additions & 1 deletion plugins/nette-dev/skills/php-doc/SKILL.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
---
name: php-doc
description: Invoke BEFORE writing phpDoc. Provides Nette conventions for docblocks: when to skip documentation, class/method/property/exception docs, generic array types (array<T>, list<T>), conditional return types. Use this whenever writing or editing any /** */ comment - even when the user just says "document this" without mentioning phpDoc.
description: >-
Invoke BEFORE writing phpDoc. Provides Nette conventions for docblocks: when to skip documentation, class/method/property/exception docs, generic array and list types, conditional return types. Use this whenever writing or editing any /** */ comment - even when the user just says "document this" without mentioning phpDoc.
---

## Documentation (phpDoc)
Expand Down