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 skills/gerard-labs/superpowers-api-platform/api-platform-paginationnpx skills add gerard-labs/superpowers-api-platform --skill api-platform-paginationgit clone --depth 1 https://github.com/gerard-labs/superpowers-api-platformWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/gerard-labs/superpowers-api-platform/api-platform-pagination)<a href="https://agentmods.dev/skills/gerard-labs/superpowers-api-platform/api-platform-pagination"><img src="https://agentmods.dev/badge/skills/gerard-labs/superpowers-api-platform/api-platform-pagination.svg" alt="Measured on agentmods" height="20"></a>What 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.00693 |
| Opus 5 | $0.00000 | $0.00347 |
| Sonnet 5 | $0.00000 | $0.00139 |
| Haiku 4.5 | $0.00000 | $0.00069 |
Grade A, and why
api-platform-pagination 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 4d ago.
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.
What it actually says
API Platform 4.3 — Pagination
Use when
- The collection can grow to millions of rows and
COUNT(*)is too expensive. - Infinite-scroll / autocomplete needs cursor pagination on a chronologically sortable key.
- Default 30 items per page is wrong for your domain (raise or lower it explicitly).
- Custom paginator needed (search engine, external API, computed projections).
Default workflow
- Verify the 4.x defaults:
pagination_items_per_page: 30,hydra_prefix: false. Adapt tests. - Cap
paginationMaximumItemsPerPage(50-100) per operation — anti-DoS. - For large tables:
paginationPartial: true(no COUNT, nototalItems). - For infinite scroll: identifier = UUID v7 / ULID +
paginationViaCursor+ComparisonFilteron the cursor field. - For non-Doctrine sources: implement a custom
PaginatorInterface.
Guardrails
hydra_prefix: falseis the default — tests must usemember/totalItems/view/next(nohydra:prefix).- Default page size is 30 in 4.x (changed from 20 in 3.x) — fix tests that hard-code 20.
- Always cap the max page size to prevent abusers from requesting
?itemsPerPage=10000. - Cursor pagination requires a stable sort key — UUID v7 / ULID are ideal; auto-increment IDs work but leak volume.
Progressive disclosure
SKILL.mdlists posture and rules.reference.mdcarries the full patterns: 4.x JSON-LD shape, partial pagination, cursor with UUID v7, fetch-join collection / output walkers, custom parameter names, custom paginator, best practices.
Output contract
- Operations declare
paginationItemsPerPage,paginationMaximumItemsPerPage, and where applicablepaginationPartial/paginationViaCursor. - Tests assert the 4.x JSON-LD shape (no
hydra:prefix). - Cursor pagination uses an indexed sort key; performance verified on a representative dataset.
References
reference.md
What ships with it
1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
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.
- 4d ago First seen · 45 lines · 0 tokens per session scan A 9441312c6d39
api-platform-pagination is a skill published in the GitHub repository gerard-labs/superpowers-api-platform (2 stars, last pushed 3mo ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 693 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 skills, from other repositories
symfony:doctrine-events
React to Doctrine entity lifecycle in Symfony with attribute listeners (#[AsDoctrineListener]/#[AsEntityListener], ORM 3) and lifecycle callbacks.
symfony:api-platform-dto-resources
Map entities to API DTOs in API Platform v4 with the Symfony Object Mapper (#[Map], stateOptions) for decoupled input/output contracts.
symfony:api-platform-filters
Implement API Platform filters - v4 Parameters API (QueryParameter) and legacy.
symfony:api-platform-versioning
Evolve API Platform APIs via deprecation (deprecationReason/sunset, RFC 8594/9745), the recommended alternative to versioning; plus path/header strategies.
symfony:bootstrap-check
Verify Symfony project configuration including .env, services.yaml, doctrine settings, and framework requirements.
symfony:brainstorming
Structured brainstorming for Symfony projects - explore requirements, identify components, and plan architecture collaboratively.