review-php
3
总安装量
3
周安装量
#60944
全站排名
安装命令
npx skills add https://github.com/nesnilnehc/ai-cortex --skill review-php
Agent 安装分布
qoder
3
kilo
3
gemini-cli
3
antigravity
3
github-copilot
3
codex
3
Skill 文档
Skill: Review PHP
Purpose
Review code in PHP for language and runtime conventions only. Do not define scope (diff vs codebase) or perform security/architecture analysis; those are handled by scope and cognitive skills. Emit a findings list in the standard format for aggregation. Focus on strict types and declarations, error handling, resource management, PSR standards (PSR-4, PSR-12), namespaces, null safety, generators and iterables, PHP version compatibility, and testability.
Use Cases
- Orchestrated review: Used as the language step when review-code runs scope â language â framework â library â cognitive for PHP projects.
- PHP-only review: When the user wants only language/runtime conventions checked (e.g. after adding a new PHP file).
- Pre-PR PHP checklist: Ensure type safety, resource cleanup, and PSR compliance are correct.
When to use: When the code under review is PHP and the task includes language/runtime quality. Scope is determined by the caller or user.
Behavior
Scope of this skill
- Analyze: PHP language and runtime conventions in the given code scope (files or diff provided by the caller). Do not decide scope; accept the code range as input.
- Do not: Perform scope selection, security review, or architecture review; do not review non-PHP files for PHP-specific rules unless explicitly in scope.
Review checklist (PHP dimension only)
- Strict types and declarations:
declare(strict_types=1)usage; typed properties and parameters; return type declarations; avoid implicit type coercion pitfalls. - Error handling: Exceptions vs errors;
Throwablehierarchy; proper try-catch and rethrow; avoid empty catch or overly broad catch;error_reportingand error-to-exception conversion where relevant. - Resource management:
fopen/fclose, database connections, streams; ensure resources are closed (try-finally or short-lived scope); avoid resource leaks. - PSR standards: PSR-4 autoloading and namespace-to-path mapping; PSR-12 coding style (indentation, braces, visibility); class and method naming.
- Namespaces and autoloading: Proper
usestatements; avoid global namespace pollution; composer autoload alignment. - Null safety: Null coalescing (
??), null-safe operator (?->); avoid@error suppression;issetvsarray_key_existsfor arrays. - Generators and iterables: Correct
yieldusage; proper iterator implementation; memory-efficient iteration for large datasets. - PHP version compatibility: Features used vs
phpconstraint in composer.json; deprecated APIs and migration paths. - Testability: Dependency injection; static and singleton usage; constructor injection; seams for mocking.
Tone and references
- Professional and technical: Reference specific locations (file:line). Emit findings with Location, Category, Severity, Title, Description, Suggestion.
Input & Output
Input
- Code scope: Files or directories (or diff) already selected by the user or by the scope skill. This skill does not decide scope; it reviews the provided PHP code for language conventions only.
Output
- Emit zero or more findings in the format defined in Appendix: Output contract.
- Category for this skill is language-php.
Restrictions
- Do not perform security, architecture, or scope selection. Stay within PHP language and runtime conventions.
- Do not give conclusions without specific locations or actionable suggestions.
- Do not review non-PHP code for PHP-specific rules unless explicitly in scope.
Self-Check
- Was only the PHP language/runtime dimension reviewed (no scope/security/architecture)?
- Are strict types, error handling, resources, PSR, namespaces, null safety, generators, version compatibility, and testability covered where relevant?
- Is each finding emitted with Location, Category=language-php, Severity, Title, Description, and optional Suggestion?
- Are issues referenced with file:line?
Examples
Example 1: Resource leak
- Input: PHP function that opens a file with
fopen()and does not close it in all code paths. - Expected: Emit a finding for resource management; suggest try-finally or ensure
fclose()in all paths. Category = language-php.
Example 2: Missing strict types
- Input: New PHP file without
declare(strict_types=1)and parameters/return types missing. - Expected: Emit finding(s) for type safety; suggest adding strict types and typed parameters where feasible. Category = language-php.
Edge case: Mixed PHP and SQL
- Input: PHP file with embedded SQL strings for database queries.
- Expected: Review only PHP conventions (resource handling, error handling, types). Do not emit SQL-injection findings here; that is for review-security or review-sql.
Appendix: Output contract
Each finding MUST follow the standard findings format:
| Element | Requirement |
|---|---|
| Location | path/to/file.ext (optional line or range). |
| Category | language-php. |
| Severity | critical | major | minor | suggestion. |
| Title | Short one-line summary. |
| Description | 1â3 sentences. |
| Suggestion | Concrete fix or improvement (optional). |
Example:
- **Location**: `src/Service/FileLoader.php:34`
- **Category**: language-php
- **Severity**: major
- **Title**: File handle not closed in exception path
- **Description**: The resource from fopen() may leak if an exception is thrown before fclose().
- **Suggestion**: Use try-finally to ensure fclose() is called, or use SplFileObject which manages the handle.