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 skills add LuuOW/meridian-mcp --skill schema-authoritygit clone --depth 1 https://github.com/LuuOW/meridian-mcpWrote 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/luuow/meridian-mcp/schema-authority)<a href="https://agentmods.dev/skills/luuow/meridian-mcp/schema-authority"><img src="https://agentmods.dev/badge/skills/luuow/meridian-mcp/schema-authority/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.
<a href="https://agentmods.dev/skills/luuow/meridian-mcp/schema-authority"><img src="https://agentmods.dev/badge/skills/luuow/meridian-mcp/schema-authority.svg" alt="Reviewed on agentmods" width="80" 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.1 | $0.00063 | $0.02916 |
| Opus 5 | $0.00032 | $0.01458 |
| Sonnet 5 | $0.00013 | $0.00583 |
| Haiku 4.5 | $0.00006 | $0.00292 |
Grade A, and why
schema-authority scanned grade A with 1 finding 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 8d 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.
Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
curl http://localhost:8000/openapi.json > openapi.json How it starts
The opening of the file, as written. The whole thing — 375 lines — stays where its author put it; the contents beside it link to each section on GitHub.
schema-authority
Core principle: one definition is the truth. Everything else — types, validators, docs, mocks, test fixtures, client SDKs — is derived from it. Never write the same shape twice.
If two places describe the same data, one of them is already wrong and you just don't know it yet.
1) Pydantic as canonical model → derive everything
# models/article.py ← THE truth. Touch this file, regenerate everything else.
from pydantic import BaseModel, Field
from typing import Literal
from datetime import datetime
from uuid import UUID
class ArticleBase(BaseModel):
title: str = Field(..., min_length=3, max_length=200)
slug: str = Field(..., pattern=r"^[a-z0-9-]+$")
status: Literal["draft", "published", "archived"] = "draft"
class ArticleCreate(ArticleBase):
body_markdown: str
class ArticleRead(ArticleBase):
id: UUID
created_at: datetime
word_count: int
model_config = {"from_attributes": True} # ORM → Pydantic without extra code
FastAPI auto-generates the OpenAPI spec from these models — no separate spec file to maintain.
# main.py
from fastapi import FastAPI
app = FastAPI(title="Content API", version="1.0.0")
@app.post("/articles", response_model=ArticleRead, status_code=201)
async def create_article(body: ArticleCreate, db: AsyncSession = Depends(get_db)):
...
Export the spec once, drive everything downstream from it:
# Export spec
curl http://localhost:8000/openapi.json > openapi.json
# Generate TypeScript types (frontend consumes these — never writes its own)
npx openapi-typescript openapi.json -o src/types/api.ts
# Generate a typed fetch client
npx openapi-fetch --input openapi.json --output src/lib/client
2) SQLModel: one class for ORM + API schema
# SQLModel collapses Pydantic model + SQLAlchemy ORM model into one definition.
# The database schema IS the Pydantic schema. Drift is structurally impossible.
from sqlmodel import SQLModel, Field
from typing import Optional
from uuid import UUID, uuid4
class Article(SQLModel, table=True):
id: UUID = Field(default_factory=uuid4, primary_key=True)
title: str = Field(index=True, max_length=200)
slug: str = Field(unique=True)
status: str = Field(default="draft")
body_markdown: str
class ArticleCreate(SQLModel): # request body — no id, no status
title: str
slug: str
body_markdown: str
class ArticleRead(Article): # response — full row
pass
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.
- 8d ago First seen · 375 lines · 63 tokens per session scan A 4150e35ca3d4
schema-authority is a skill published in the GitHub repository LuuOW/meridian-mcp (0 stars, last pushed today), licensed MIT. It adds 63 tokens to every session and 2,916 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.
Other skills, from other repositories
fastapi-expert
Expert-level FastAPI development for high-performance Python APIs with async support. Use when the user mentions Python, API, async, REST, OpenAPI, or Pydantic, or when the task involves FastAPI Features.
fastapi
Build and test FastAPI services with Pydantic models, dependency injection, async routes, OpenAPI, and authentication hooks.
OpenAPI Contract Completeness
Ensure OpenAPI specs define consistent request/response schemas, error model, auth, pagination, and backward compatibility.
fastapi-docs
FastAPI 0.115+ — path/query params, Pydantic, dependency injection, OAuth2/JWT, middleware, WebSocket, testing.
graphql-api-development
Comprehensive guide for building GraphQL APIs including schema design, queries, mutations, subscriptions, resolvers, type system, error handling, authentication, authorization, caching strategies, and production best practices.
prisma-8
Use when working in a project that depends on @prisma/orm-postgres, @prisma/orm-sqlite, or @prisma/orm-mongo (Prisma 8, formerly Prisma Next): editing contract.prisma or a contract.ts builder, running prisma contract emit, planning or applying migrations, editing migration.ts, writing db.orm / db.sql / db.query…