Token导航 LogoToken导航TokenDH.com
研究检索只读github未标认证来源可访问许可证需确认审计通过

php-conventionsPHP conventions 搜索

Agent Skill

php-conventions 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

329

周安装

14

GitHub Stars

5

下载量

115
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:php-conventions(PHP conventions 搜索)
来源仓库:https://github.com/cosmastech/skills
仓库路径:skills/php-conventions
安装命令:
npx skills add https://github.com/cosmastech/skills --skill php-conventions
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/cosmastech/skills --skill php-conventions

简介

用于查找 PHP 编码规范与最佳实践资料。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中参考命名规则。
  • 可通过 npx 命令从 cosmastech/skills 仓库安装。
  • 建议结合 PSR 标准与项目实际情况调整。
  • 注意团队内部规范的一致性维护。php-conventions 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

PHP Conventions

These are non-negotiable personal conventions unless explicitly overridden by the user.

Language & Syntax

  • Strict types — Every PHP file must declare declare(strict_types=1); at the top. If it is an existing file, you do not need to add it, but mention it to the user.
  • Prefer explicit falsy checks — Use the narrowest comparison that matches the real condition, such as === null, === '', or === 0, instead of broad checks like if (! $someValue). Negation is fine when the value is genuinely bool (for example, if (! $isEnabled)). This avoids surprising type coercion and makes intent clearer to humans and tools.
  • Import function calls and constants — Always use function and constant imports rather than calling global functions inline: use function array_key_exists; use function sprintf; use function count; use const JSON_THROW_ON_ERROR;
  • #[Override] attribute — Always add #[Override] to methods that override a parent or implement an interface method.
  • final readonly classes — Prefer final readonly by default. Drop readonly only when mutability is genuinely needed (e.g., mutable DTOs, test cases). Drop final only when extension is a deliberate design choice. If either worsens developer experience, relax — but call it out.
  • PHPStan generics & iterables — Document iterables and generic types explicitly. Never mark iterables as array<array-key, mixed> — take the time to define the actual shape. Use @phpstan-type annotations when the type will likely be imported by other files: /** * @phpstan-type OrderContext array{orderId: int, shopId: int, items: list<LineItemData>} */ Reference the phpstan-type (phpstan-type-import if defined in another class) instead of duplicating the array shape.
  • Avoid unnecessary nullability — Do not accept null as a function/method argument or make a property nullable unless null carries distinct domain meaning (e.g., "not yet set," "intentionally cleared"). When a parameter is nullable only for convenience or because the caller *might* not have a value, push the null-check to the call site and keep the signature non-nullable. The same applies to return types: prefer throwing or returning a dedicated "empty" value type over returning null when the absence isn't semantically meaningful. Unnecessary nullability spreads defensive === null checks throughout the codebase and weakens type safety.
  • PHPStan discipline — Do not add entries to PHPStan baseline files. Fix the errors properly. When a @phpstan-ignore is genuinely necessary, always include a parenthetical explanation of *why*: // @phpstan-ignore argument.type (We have already verified the type above) A bare @phpstan-ignore without justification is not acceptable.

Class Design & Dependencies

  • Single-use classes over service bloat — Prefer small, focused classes that encapsulate one piece of functionality. These may be called "UseCases" or "Actions" depending on team convention, but when possible, name them as -er nouns that describe what they do: OrderCreator, FinancialOutcomeDeterminer, RefundCalculator. Avoid adding methods to already-large service classes — you will encounter many of these, and they may be acceptable as-is, but don't contribute to the sprawl.
  • Dependency injection over service location — Avoid resolve(), app(), and similar service locator calls inside methods. These obscure dependencies and prevent unit testing. Acceptable only in rare infrastructure-layer bootstrap code — flag it to the user if encountered.
  • Prefer composition over deep inheritance — Avoid complex inheritance hierarchies. Before creating an abstract class with children, ask: could one child be replaceable with another? What is the hierarchy intended to communicate? If the answer is unclear, prefer: Deep inheritance chains make code harder to reason about, test, and extend. Flat, composable designs are almost always preferable.

- Interfaces with traits that fulfill them, giving concrete classes opt-in behavior. - Coordinator/orchestrator classes that accept an interface and act upon it, rather than embedding orchestration logic in an abstract parent.

  • Rich, contextual exceptions — Exceptions should carry meaningful messages and contextual data. Custom exception classes are good, but they shine when they expose public properties with the relevant context — the entity being operated on, whether the failure is retryable, the external request/response that caused it, etc. This also makes testing easier since you can assert against those properties rather than parsing message strings. When helpful, add static factory methods that build a default message and set properties from the inputs: final class ShopifyFailure extends RuntimeException {public function __construct(string $message, public readonly Response $response, public readonly bool $isRetryable = false,) {parent::__construct($message);} public static function fromResponse(Response $response): self {return new self(message: sprintf('Shopify returned %d: %s', $response->status(), $response->body()), response: $response, isRetryable: $response->status() >= 500,);}}
  • Domain knowledge as comments — When a planning doc, JIRA ticket, or external context reveals domain knowledge not obvious from the code, add it as a comment. This helps future developers and LLM agents. These are among the most valuable comments possible.
  • Not everything needs an interface - If there is likely going to be exactly one instance of an implementation, an interface may not be necessary. Remember: hand-rolled mocks/spies/stubs/fakes used in testing are a second implementation. Not using an interface may potentially make testing harder, so you'll need to weigh these tradeoffs. Since this requires taste, you may need input from the user.

Testing Philosophy

  • Prefer PHPUnit (unit) tests — Unit tests are dramatically faster than feature tests. When writing *new* code, design it to be unit-testable: use dependency injection, avoid Laravel facades in business logic, accept interfaces. If code is untestable without booting Laravel, that's a design signal worth discussing.
  • Avoid mocking frameworks — Mocking frameworks (Mockery, PHPUnit mocks) usually test the wrong layer and indicate a design flaw. Acceptable uses: If you find yourself reaching for a mock, pause and discuss refactoring opportunities with the user before proceeding. Mocks are a last resort.

- Stubs: providing a canned return value from a dependency - Classical mocks: verifying a specific interaction that *is* the point of the test (e.g., "did we dispatch this event?")

  • NEVER mock Data objects. NEVER mock Laravel models. — Instantiate them. If a Data object or Model is hard to construct, that's a test-design or code-design problem to address, not a reason to mock.
  • Test structure — Delimit test sections with comments: // Given a user without permissions $user = User::factory()->create(['role' => 'viewer']); // When they attempt to update settings $response = $this->actingAs($user)->put('/settings', ['theme' => 'dark']); // Then the request is forbidden $response->assertForbidden(); Add a brief description after Given, When, or Then when it clarifies intent.
  • Test method naming - The method of a test name should be {condition}_{theMethodBeingCalled}_{then} and should use the #[Test] attribute rather than prefixing the method with test_. Be descriptive, but avoid making the test method name more than 60 characters.
  • Reference assertion methods statically - PHPUnit allows you to call either $this->assertEquals() or self::assertEquals(). Unless the rest of the test class is already using $this->assert*, prefer calling them statically.
  • Mark tests as final - This is the recommendation from PHPUnit's creator.
  • Never test private/protected methods directly — If you feel the need to test a private or protected method on code we own, that's a design smell. Extract the logic into a collaborator class with public methods and test that instead. The need to reach into private internals means the class is doing too much or the boundaries are wrong.
  • Don't assert against log statements — Unless you're testing a logger or logging infrastructure itself, avoid asserting that specific log messages were produced. Logs are observability, not behavior.

Working in Existing Code

  • Accept the team's conventions — When modifying existing code, follow the conventions already in place in that area. You may *mention* that refactoring opportunities exist and how the current code conflicts with these rules, but deliver value first. Being opinionated is secondary to shipping.

Observability

  • Metrics cardinality — Be mindful of high-cardinality tags on metrics (e.g., user IDs, order IDs). These explode storage costs and degrade query performance.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

32.66%
按下载量换算38

Claude

31.74%
按下载量换算37

Cursor

18.53%
按下载量换算21

Gemini CLI

8.49%
按下载量换算10

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills