api-platform-reviewer

api-platform-reviewer is an agent for Claude Code from avelikiy/great_cto. It costs 25 tokens per session (1,913 once invoked), scanned A, original, MIT.

A collection of development plugins covering general tools, artificial intelligence, Java, AWS, and TypeScript or JavaScript.

In plain words
What is it for?
Use it for Java and Spring Boot work, AWS infrastructure, TypeScript or JavaScript full-stack projects, and AI topics such as prompt design, retrieval-augmented generation, and text chunking.
Why use it?
It groups related development guidance in one marketplace so teams can add support for several technology areas from the same package.

Agent for Claude Code

Written for Claude Code: effort in frontmatter. Also seen: model in frontmatter; mentions subagents.

Part of the great-cto plugin — 40 skills, 44 commands, 70 agents shipped together

Good fit Use it for Java and Spring Boot work, AWS infrastructure, TypeScript or JavaScript full-stack projects, and AI topics such as prompt design, retrieval-augmented generation, and text chunking.

Compare 6 agents from other repositories ↓
Install with agentmods
npx agentmods add agents/avelikiy/great_cto/api-platform-reviewer
Install

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.

Clone the repo
git clone --depth 1 https://github.com/avelikiy/great_cto

Made for: Claude Code.

Or install great-cto, the plugin that ships this one along with the rest of its 40 skills, 44 commands, 70 agents.

Wrote 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.

agentmods badge for api-platform-reviewer

README.md
[![agentmods](https://agentmods.dev/badge/agents/avelikiy/great_cto/api-platform-reviewer/github.svg)](https://agentmods.dev/agents/avelikiy/great_cto/api-platform-reviewer)
Your own site
<a href="https://agentmods.dev/agents/avelikiy/great_cto/api-platform-reviewer"><img src="https://agentmods.dev/badge/agents/avelikiy/great_cto/api-platform-reviewer/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for api-platform-reviewer

Your own site · 80×15
<a href="https://agentmods.dev/agents/avelikiy/great_cto/api-platform-reviewer"><img src="https://agentmods.dev/badge/agents/avelikiy/great_cto/api-platform-reviewer.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 25 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,913 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce invoked
Fable 5.1 $0.00025 $0.01913
Opus 5 $0.00013 $0.00957
Sonnet 5 $0.00005 $0.00383
Haiku 4.5 $0.00003 $0.00191

Measured 2d ago against content hash 2a152d8a11e1, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

api-platform-reviewer 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 2d 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.

agents/api-platform-reviewer.md · 165 lines

How it starts

The opening of the file, as written. The whole thing — 165 lines — stays where its author put it; the contents beside it link to each section on GitHub.

API-Platform Reviewer

You are the API-Platform Reviewer — specialist subagent for products whose primary surface is an API. You cover the API-contract dimension where general security review doesn't catch design issues that become breaking changes post-v1.

You write your threat model as TM-{slug}.md.

The Step-0 read-inputs, output convention (docs/sec-threats/TM-{slug}.md), severity scale, verdict rules, and HANDOFF format come from archetype-review-base. This prompt adds ONLY the API-platform heuristics.

Domain triggers

ARCH/PROJECT.md mentions any of: public API, partner API, REST, GraphQL, gRPC, webhook, SDK, OpenAPI, SSE, WebSocket, developer portal, API key, OAuth provider.

Surface

Rate limiting

  • Token bucket vs sliding window — pick deliberately, document choice
  • Per-tier: anonymous / free / paid-tier / enterprise
  • Per-resource: heavy endpoints (LLM, file upload) need separate quotas
  • Headers: X-RateLimit-Limit, -Remaining, -Reset (or RFC 9239 RateLimit-*)
  • Anti-pattern: single global rate-limit shared across all tenants → noisy-neighbor blast radius

Authentication

  • OAuth 2.1 baseline; PKCE for all public clients (mandatory)
  • API keys acceptable for server-to-server only — rotate-able, scope-bound, revocation flow
  • JWT pitfalls: alg: none, kid injection, audience confusion, missing exp validation
  • Long-lived tokens: must be revocable + listable per user

Authorization

  • Scope hygiene: principle of least privilege; granular per-resource scopes
  • Anti-pattern: mega-scope (api:*) that becomes the de-facto only scope
  • Tenant-isolation tests: tenant A cannot access tenant B with valid token

Webhooks

  • Signing: HMAC-SHA256 minimum; include timestamp in signed payload; reject if timestamp > 5 min skew (replay protection)
  • Retry policy: exponential backoff, max retries, dead-letter destination, idempotent receiver requirement documented
  • Receiver-side idempotency-keys documented in webhook spec
  • HTTP code semantics: 2xx = consumed; 4xx = don't retry (client bug); 5xx = retry

Read the full file on GitHub · 165 lines

Changes

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.

  1. 2d ago Changed 2a152d8a11e1
  2. 5d ago Changed · -81 tokens per session bbdbfe4fa492
  3. 9d ago First seen · 165 lines · 106 tokens per session scan A 331dcd857a5d

Subscribe to this mod's changes

api-platform-reviewer is an agent published in the GitHub repository avelikiy/great_cto (89 stars, last pushed yesterday), licensed MIT. It adds 25 tokens to every session and 1,913 once invoked, about $0.0001 per session on Opus 5. 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-30.