audit-realworld

audit-realworld is a skill for Claude Code, Codex from kensaurus/cursor-kenji. It costs 67 tokens per session (3,175 once invoked), scanned A, original, MIT.

A read-only comparison of a full-stack application with RealWorld, also called Conduit, a standard demo specification and shared end-to-end test suite for a social blogging app.

In plain words
What is it for?
Use it to check API behavior, full-stack feature parity, and end-to-end flows against the RealWorld reference.
Why use it?
It turns “is the app complete?” into a check against a documented API and tests, while separating feature matching from production concerns such as security and deployment.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

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.

agentmods
npx agentmods add skills/kensaurus/cursor-kenji/audit-realworld
Any agent
npx skills add kensaurus/cursor-kenji --skill audit-realworld
Clone the repo
git clone --depth 1 https://github.com/kensaurus/cursor-kenji

Made for: Claude Code, Codex.

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 audit-realworld

README.md
[![agentmods](https://agentmods.dev/badge/skills/kensaurus/cursor-kenji/audit-realworld.svg)](https://agentmods.dev/skills/kensaurus/cursor-kenji/audit-realworld)
Your own site
<a href="https://agentmods.dev/skills/kensaurus/cursor-kenji/audit-realworld"><img src="https://agentmods.dev/badge/skills/kensaurus/cursor-kenji/audit-realworld.svg" alt="Measured on agentmods" height="20"></a>
Per session 67 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,175 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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.00067 $0.03175
Opus 5 $0.00034 $0.01588
Sonnet 5 $0.00013 $0.00635
Haiku 4.5 $0.00007 $0.00317

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

Security

Grade A, and why

audit-realworld 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.

skills/audit-realworld/SKILL.md · 287 lines

How it starts

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

audit-realworld — Full-Stack Gap Audit vs the RealWorld Reference

Degree of freedom: MIXED — Mode, parity, and routing [HIGH freedom]; Phase 4 contract-suite run [LOW freedom — run exactly] when a server or suite exists.

Read-only. Findings and a prioritized gap report only — no code changes. Remediation goes to the skill named per finding.

RealWorld ("Conduit") is an objectively testable full-stack benchmark: formal API spec, shared E2E suite, shared CSS theme, hosted API at api.realworld.show.

The RealWorld API spec and its E2E suite are the source of truth — not any single community implementation. Reference repos vary; the spec and the passing suite do not.

RealWorld is a demo spec, not a production bar. It omits rate limiting, observability, caching, CI/CD, secrets, and deployment. Report feature/ pattern parity, then delegate hardening to audit-security, plan-security-audit, plan-perf-audit, plan-rls-audit, and full-stack-ship-discipline.

How to reason — Observe → Interpret → Classify → Severity

  1. Observe — quote the spec contract (or pattern) and the repo's file:line (or suite result)
  2. Interpret — does this layer implement the contract, or only the UI/route?
  3. Classify — Implemented / Partial / Missing / Diverges — or Bow-out if the repo is not a web CRUD+auth app
  4. Severity — core Conduit / authz / list-contract gaps = High; production-omitted concerns are routed, not scored as RealWorld misses

Worked example

Observe: Conformance mode. GET /api/articles returns { articles } with no articlesCount and no limit/offset (app/api/articles/route.ts). Bruno list request fails the count assertion. Auth header is Token <jwt>. Interpret: the list contract is partial; clients cannot paginate. Auth scheme matches the spec. Classify: Partial (pagination / articlesCount); auth Implemented. Severity: High — feed is a core Conduit surface. Finding: Article list | no pagination / articlesCount | High | complete-everything

Read the full file on GitHub · 287 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 First seen · 287 lines · 67 tokens per session scan A 859007c259f9

Subscribe to this mod's changes

audit-realworld is a skill published in the GitHub repository kensaurus/cursor-kenji (9 stars, last pushed 8d ago), licensed MIT. It adds 67 tokens to every session and 3,175 once invoked, about $0.0003 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-09-03.

Related

Other skills, from other repositories

devlab-integration-fullstack

全栈集成测试专家技能。支持多服务 Docker Compose 部署场景,基于 Testcontainers + Mock Server 实现端到端集成测试。.

seed-forge/harness-ai-kit · 42 tokens

api-test-suite-generator

Generates comprehensive API test suites using Jest, Vitest, or Supertest from Express, Next.js, Fastify, or other API routes. Creates integration tests, contract tests, and edge case coverage. Use when users request "generate api tests", "create endpoint tests", "api test suite", or "integration tests for api".

patricio0312rev/skills · 72 tokens

api-mock-server

Creates mock API servers for testing and development with MSW, json-server, or custom handlers. Use when users request "API mocking", "mock server", "MSW setup", "test fixtures", or "mock API responses".

patricio0312rev/skills · 51 tokens

contract-testing-builder

Implements API contract testing to ensure provider-consumer compatibility using Pact or similar tools. Prevents breaking changes with contract specifications and bi-directional verification. Use for "contract testing", "API contracts", "Pact", or "consumer-driven contracts".

patricio0312rev/skills · 54 tokens

api-tester

Test and document API endpoints - validate responses, check status, generate examples.

gooseworks-ai/goose-skills · 18 tokens

api-tester

依据真实 OpenAPI、路由实现和现有测试生成并验证 API 测试。用于用户要求测试接口、补集成测试、验证 API 契约、生成回归用例或排查接口兼容性时;区分“生成测试”和“执行请求”的授权,不猜测状态码、响应结构或 SLA,不在未确认环境中发送写请求。.

laolaoshiren/claude-code-skills-zh · 86 tokens