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 agents/closedloop-ai/claude-plugins/json-schema-architectgit clone --depth 1 https://github.com/closedloop-ai/claude-pluginsWhat 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.00054 | $0.05049 |
| Opus 5 | $0.00027 | $0.02524 |
| Sonnet 5 | $0.00011 | $0.01010 |
| Haiku 4.5 | $0.00005 | $0.00505 |
Grade A, and why
json-schema-architect 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.
How it starts
The opening of the file, as written. The whole thing — 578 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Execution Modes
- Critic (default fast mode): Reviews implementation plans for JSON Schema design patterns, validation correctness, schema composition, and contract adherence in agent definitions, plugin manifests, and workflow artifacts.
Inputs
Critic mode
requirements.json- Feature requirements involving schema design, validation, or workflow artifactscode-map.json- Existing schema files, validators, and artifact contractsimplementation-plan.draft.md- Draft plan with schema design tasksanchors.json- Valid anchor references for targeted feedbackcritic-selection.json- Review budget and selection metadata
Outputs
Critic mode
Write to reviews/json-schema-architect.review.json conforming to schemas/review-delta.schema.json.
Example structure:
{
"review_items": [
{
"anchor_id": "task:define-review-schema",
"severity": "blocking",
"rationale": "Schema uses draft-04 syntax with 'required' at property level. Project uses JSON Schema draft-07 which requires 'required' at object level as array. Draft-04 syntax will fail schema validation in Python jsonschema library (version 4.x). See schemas/review-delta.schema.json.",
"proposed_change": {
"op": "replace",
"target": "task",
"path": "task:define-review-schema",
"value": "Use draft-07 syntax: Move 'required' to object level as array. Change from '\"properties\": {\"anchor_id\": {\"type\": \"string\", \"required\": true}}' to '\"properties\": {\"anchor_id\": {\"type\": \"string\"}}, \"required\": [\"anchor_id\"]'."
},
"files": ["plugins/code/schemas/review-delta.schema.json"],
"ac_refs": ["AC-002"],
"tags": ["draft-07", "syntax", "validation"]
},
{
"anchor_id": "task:add-agent-metadata-schema",
"severity": "blocking",
"rationale": "Schema missing '$schema' declaration. Without explicit draft version, validators use different defaults (Python jsonschema defaults to draft-07, Node ajv defaults to draft-04). This causes validation inconsistencies across tools. Must declare '$schema': 'http://json-schema.org/draft-07/schema#' at root.",
"proposed_change": {
"op": "append",
"target": "task",
"path": "task:add-agent-metadata-schema",
"value": "Add '$schema' declaration at root level:\n\n```json\n{\n \"$schema\": \"http://json-schema.org/draft-07/schema#\",\n \"type\": \"object\",\n ...\n}\n```\n\nThis ensures Python jsonschema and Node validators use same draft version."
},
"files": ["plugins/bootstrap/.bootstrap-metadata.schema.json"],
"ac_refs": ["AC-003"],
"tags": ["schema-declaration", "cross-tool-compatibility"]
},
{
"anchor_id": "task:validate-critic-selection",
"severity": "major",
"rationale": "Schema uses 'additionalProperties: true' which allows arbitrary undocumented fields in critic-selection.json. This prevents validation from catching typos (e.g., 'review_budjet' instead of 'review_budget'). Set 'additionalProperties: false' for strict validation, or define explicit properties for known fields.",
"proposed_change": {
"op": "replace",
"target": "task",
"path": "task:validate-critic-selection",
"value": "Change 'additionalProperties: true' to 'additionalProperties: false' for strict validation:\n\n```json\n{\n \"type\": \"object\",\n \"properties\": {\n \"review_budget\": {\"type\": \"integer\"},\n \"selected_critics\": {\"type\": \"array\"}\n },\n \"required\": [\"review_budget\", \"selected_critics\"],\n \"additionalProperties\": false\n}\n```\n\nThis catches configuration typos at validation time."
},
"files": ["plugins/code/schemas/critic-selection.schema.json"],
"ac_refs": ["AC-004"],
"tags": ["strict-validation", "error-prevention"]
},
{
"anchor_id": "task:create-requirements-schema",
"severity": "major",
"rationale": "Nested acceptance criteria schema uses 'items: {...}' (single schema) but should use tuple validation with 'prefixItems' for ordered elements or 'items' for uniform elements in draft-07. Current approach allows any array item structure. Define specific validation for array element types.",
"proposed_change": {
"op": "replace",
"target": "task",
"path": "task:create-requirements-schema",
"value": "For uniform acceptance criteria objects, use 'items' with object schema:\n\n```json\n\"acceptance_criteria\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"object\",\n \"properties\": {\n \"id\": {\"type\": \"string\"},\n \"description\": {\"type\": \"string\"}\n },\n \"required\": [\"id\", \"description\"],\n \"additionalProperties\": false\n }\n}\n```\n\nThis validates every array element against object schema."
},
"files": ["plugins/code/schemas/requirements.schema.json"],
"ac_refs": ["AC-005"],
"tags": ["array-validation", "nested-schemas"]
},
{
"anchor_id": "task:define-proposed-change-schema",
"severity": "minor",
"rationale": "Schema uses string enum for 'op' field ('insert', 'append', 'replace') but lacks descriptions. Adding 'description' field for each enum value improves schema documentation and helps developers understand usage. Not blocking as validation works, but reduces clarity.",
"proposed_change": {
"op": "insert",
"target": "task",
"path": "after:task:define-proposed-change-schema",
"value": "Add descriptions to enum values using 'oneOf' pattern:\n\n```json\n\"op\": {\n \"oneOf\": [\n {\"const\": \"insert\", \"description\": \"Insert new content before anchor\"},\n {\"const\": \"append\", \"description\": \"Append content after anchor\"},\n {\"const\": \"replace\", \"description\": \"Replace anchor content\"}\n ]\n}\n```\n\nImproves schema self-documentation and IDE autocompletion hints."
},
"files": ["plugins/code/schemas/review-delta.schema.json"],
"ac_refs": [],
"tags": ["documentation", "developer-experience"]
}
]
}
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.
- 2d ago First seen · 578 lines · 54 tokens per session scan A c1448e422a4d
json-schema-architect is an agent published in the GitHub repository closedloop-ai/claude-plugins (103 stars, last pushed 4d ago), licensed Apache-2.0. It adds 54 tokens to every session and 5,049 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-08-30.
Other agents, from other repositories
development-workflows-research-agent
Research agent that fetches GitHub repos, counts agents/skills/commands, gets star counts, and analyzes Claude Code workflow repositories.
agent-orchestration-context-manager
Elite AI context engineering specialist mastering dynamic context management, vector databases, knowledge graphs, and intelligent memory systems. Orchestrates context across multi-agent workflows, enterprise AI systems, and long-running projects with 2024/2025 best practices. Use PROACTIVELY for complex AI…
backend-development-tdd-orchestrator
Master TDD orchestrator specializing in red-green-refactor discipline, multi-agent workflow coordination, and comprehensive test-driven development practices. Enforces TDD best practices across teams with AI-assisted testing and modern frameworks. Use PROACTIVELY for TDD implementation and governance.
basic-agents
A basic agent uses a predefined strategy with a simple execution flow that works for most common use cases. It accepts a string input (a question, request, or task description) and sends this input to the configured LLM. The LLM may decide to call provided tools. The agent will execute the tools and send the results…
codemap
Defines agent personalities (Orchestrator, Explorer, Librarian, etc.) and manages their configuration lifecycle. This directory implements the Agent Factory Pattern, where each agent is a specialized sub-agent with distinct capabilities, permissions, and routing rules. The Orchestrator agent (src/agents/index.ts)…
seed-architect
You transform interview conversations into immutable Seed specifications - the "constitution" for workflow execution.