Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add rules/mitas/cursor-rules/php-8.0git clone --depth 1 https://github.com/mitas/cursor-rulesWhat it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00000 | $0.02164 |
| Opus 5 | $0.00000 | $0.01082 |
| Sonnet 5 | $0.00000 | $0.00433 |
| Haiku 4.5 | $0.00000 | $0.00216 |
Grade A, and why
php-8.0 scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured yesterday.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 302 lines — stays where its author put it; the contents beside it link to each section on GitHub.
PHP 8.0 Features and Best Practices
Overview
PHP 8.0 represents a major leap forward with significant new features, performance improvements, and better type safety. This document outlines the key features introduced in PHP 8.0 and how to effectively use them in your code.
Key Language Features
Named Arguments
Named arguments allow you to pass values to a function by specifying the parameter name, making function calls more readable and maintainable.
// Without named arguments
htmlspecialchars($string, ENT_QUOTES | ENT_SUBSTITUTE, 'UTF-8', false);
// With named arguments
htmlspecialchars(
string: $string,
flags: ENT_QUOTES | ENT_SUBSTITUTE,
encoding: 'UTF-8',
double_encode: false
);
Best Practices:
- Use named arguments for functions with numerous or optional parameters
- Especially useful for parameters that have default values
- Improves code readability when calling functions with boolean flags
- Allows skipping optional parameters in the middle of the parameter list
- Consider parameter names as part of your public API when designing functions
Union Types
Union types allow a parameter or return value to be of multiple different types.
function process(string|int $id): int|float {
if (is_string($id)) {
return (int) $id;
}
return $id * 1.5;
}
Best Practices:
- Use union types to specify multiple valid types for parameters and returns
- Combine with nullable types using
?(e.g.,?string|intis equivalent tostring|int|null) - Keep union types as narrow as possible for better type safety
- Don't overuse - if a function accepts too many different types, reconsider its design
- Document behavior for different types to make functionality clear
Constructor Property Promotion
Constructor property promotion simplifies class definitions by combining property declarations with constructor parameters.
// Before PHP 8.0
class User {
private string $name;
private int $age;
public function __construct(string $name, int $age) {
$this->name = $name;
$this->age = $age;
}
}
// With PHP 8.0
class User {
public function __construct(
private string $name,
private int $age
) {}
}
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- yesterday First seen · 302 lines · 2,164 tokens per session scan A e4bbd07026b3
php-8.0 is a cursor rule published in the GitHub repository mitas/cursor-rules (2 stars, last pushed 1y ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 2,164 tokens. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other cursor rules, from other repositories
angular-20
This rule provides comprehensive best practices and coding standards for Angular development, focusing on modern TypeScript, standalone components, signals, and performance optimizations.
dev-standard
Apache Superset development standards and guidelines for Cursor IDE.
typescript
Changes to these high-fan-out internals can affect every message, delta, element, or rerun. Keep work in them minimal, and benchmark changes with representative stress-test apps.
coolify-ai-docs
Master reference to all Coolify AI documentation in .ai/ directory.
python_lib
Tips and guidelines specific to the development of the Streamlit Python library, not applicable to scripts and e2e tests.
specs
This directory contains product and tech specs for Streamlit features.