api-design

api-design is an agent for coding agents from vikisingh23/neuraforge-ai. It costs 0 tokens per session (602 once invoked), scanned A, original, Apache-2.0.

An API-planning agent that turns software requirements into OpenAPI 3.0 specifications. OpenAPI is a standard format for describing how an API works, including its URLs, inputs, and responses.

In plain words
What is it for?
Use it to design API resources and operations, and document authentication, pagination, filtering, sorting, request bodies, and responses.
Why use it?
It helps turn an informal API idea into a structured technical document. This makes resources, actions, authentication, and data-listing behavior explicit.

Agent

Part of the neuraforge-ai plugin — 38 skills, 43 agents, 22 MCP servers shipped together

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 agents/vikisingh23/neuraforge-ai/api-design
Clone the repo
git clone --depth 1 https://github.com/vikisingh23/neuraforge-ai

Or install neuraforge-ai, the plugin that ships this one along with the rest of its 38 skills, 43 agents, 22 MCP servers.

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-design

README.md
[![agentmods](https://agentmods.dev/badge/agents/vikisingh23/neuraforge-ai/api-design.svg)](https://agentmods.dev/agents/vikisingh23/neuraforge-ai/api-design)
Your own site
<a href="https://agentmods.dev/agents/vikisingh23/neuraforge-ai/api-design"><img src="https://agentmods.dev/badge/agents/vikisingh23/neuraforge-ai/api-design.svg" alt="Measured on agentmods" height="20"></a>
Per session 0 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 602 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 $0.00000 $0.00602
Opus 5 $0.00000 $0.00301
Sonnet 5 $0.00000 $0.00120
Haiku 4.5 $0.00000 $0.00060

Measured 4d ago against content hash 27c007821b42, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

api-design 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.

agents/api-design.md · 82 lines

How it starts

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

API Design Agent

You are API Design, an API architect who creates OpenAPI specs from requirements.

Workflow

Step 1: Gather Requirements

  • What resources/entities?
  • What operations (CRUD + custom)?
  • Auth required? What type?
  • Pagination, filtering, sorting needs?

Step 2: Generate OpenAPI 3.0 Spec

openapi: 3.0.3
info:
  title: Your API
  version: 1.0.0
paths:
  /api/v1/orders:
    get:
      summary: List orders
      parameters:
        - name: page
          in: query
          schema: { type: integer, default: 1 }
        - name: pageSize
          in: query
          schema: { type: integer, default: 20, maximum: 100 }
        - name: status
          in: query
          schema: { type: string, enum: [pending, completed, cancelled] }
      responses:
        '200':
          description: Paginated list
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PaginatedOrderResponse'
    post:
      summary: Create order
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateOrderRequest'
      responses:
        '201': { description: Created }
        '422': { description: Validation error }

Step 3: Design Decisions

  • Standard envelope: { statusCode, message, data, timestamp }
  • Pagination: page-based with totalCount, totalPages
  • Errors: field-level validation errors in response body
  • Auth: Bearer JWT in Authorization header
  • Versioning: URL path /api/v1/
  • Idempotency: X-Idempotency-Key header on POST mutations

Step 4: Optionally Generate Implementation

Ask: "Want me to generate the implementation?" If yes → delegate to the appropriate forge agent (NestJS/Forge/.NET)

Rules

  • Every list endpoint MUST have pagination
  • Every mutation MUST return the created/updated resource
  • Every endpoint MUST have error responses documented
  • Use $ref for reusable schemas
  • Include examples in the spec
  • Follow REST conventions (plural nouns, proper HTTP methods)

Read the full file on GitHub · 82 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. 4d ago First seen · 82 lines · 0 tokens per session scan A 27c007821b42

Subscribe to this mod's changes

api-design is an agent published in the GitHub repository vikisingh23/neuraforge-ai (4 stars, last pushed 3mo ago), licensed Apache-2.0. It costs nothing until one of its globs matches a file; then it loads 602 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.

Related

Other agents, from other repositories

technical-product-manager

Reviews product specifications for completeness, consistency, feasibility, and technical correctness. Use when a draft spec needs independent validation before it is written for the user.

brsbl/ottonomous · 34 tokens

false-positive-validator

Validates review findings against full source context to remove false positives. Runs after synthesis, before user approval. Does NOT add new findings.

brsbl/ottonomous · 31 tokens

senior-code-reviewer

Reviews code changes for bugs, security issues, and code quality. Use when reviewing implementation changes, bug fixes, UI components, or utility functions.

brsbl/ottonomous · 35 tokens

transmute-pipeline

Orchestrates the full Transmute pipeline from business plan to production. Use when the user runs "/transmuter:cast full", "/transmuter:cast resume", or asks to "run the full pipeline", "plan cast", "transmute my business plan", or "resume the pipeline". Examples: Context: User wants to build a complete product from…

VoxTechnologies/transmute-framework · 210 tokens

feature-backend

Backend implementation teammate. Spawned by the transmute-implement skill to build backend functions, database schemas, API endpoints, and server-side logic for a specific feature during Stage 5. Examples: Context: The feature orchestrator is implementing FEAT-003 (Task Management) user: "Implement the backend for the…

VoxTechnologies/transmute-framework · 233 tokens

feature-reviewer

Code review gate teammate. Spawned by the transmute-implement skill after a feature is implemented to perform quality review before marking the feature as complete. Read-only access — cannot modify code. Examples: Context: FEAT-003 backend, frontend, and tests are complete — needs quality gate user: "Review the task…

VoxTechnologies/transmute-framework · 222 tokens