AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Api Contract

skill-weisser-dev-awesome-opencode-api-contract · by weisser-dev

Generate or validate OpenAPI and AsyncAPI specs from code or requirements with consistent naming, errors, and pagination

No reviews yet
0 installs
42 views
0.0% view→install

Install

$ agentstack add skill-weisser-dev-awesome-opencode-api-contract

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-weisser-dev-awesome-opencode-api-contract)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
5mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Api Contract? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

What I do

  • Generate OpenAPI 3.x or AsyncAPI specs from code or requirements
  • Validate existing API specs for completeness and consistency
  • Enforce consistent naming conventions across endpoints
  • Standardize error response formats and HTTP status codes
  • Define pagination, filtering, and sorting patterns

When to use me

Use this skill when you need to:

  • Design a new REST or async API from requirements
  • Generate an OpenAPI spec from existing route handlers
  • Validate an existing spec for consistency and completeness
  • Standardize error responses across an API
  • Add pagination to collection endpoints

Process

  1. Discover: Analyze existing API code or requirements
  • Scan route definitions, controllers, and handler files
  • Identify existing OpenAPI/Swagger specs if present
  • Note current naming conventions and response patterns
  1. Design resource model: Map domain entities to API resources
  • Use plural nouns for collection endpoints (/users, /orders)
  • Use nested routes for relationships (/users/{id}/orders)
  • Avoid verbs in URLs; use HTTP methods for actions
  1. Define endpoints: Specify each operation
  • HTTP method and path
  • Request parameters (path, query, header, body)
  • Request body schema with required fields
  • Response schemas for each status code
  • Authentication requirements
  1. Standardize patterns: Apply consistent conventions
  1. Generate spec: Produce the OpenAPI/AsyncAPI document
  1. Validate: Check spec for completeness and correctness

Naming Conventions

| Element | Convention | Example | |---------|-----------|---------| | Paths | kebab-case, plural nouns | /api/v1/user-accounts | | Query params | camelCase | ?pageSize=20&sortBy=createdAt | | Request/response fields | camelCase | { "firstName": "Jane" } | | Schema names | PascalCase | UserAccount, OrderItem | | Enum values | UPPERSNAKECASE | "ORDER_PENDING" |

Standard Error Format

{
  "error": {
    "code": "VALIDATION_ERROR",
    "message": "Human-readable description",
    "details": [
      {
        "field": "email",
        "message": "Must be a valid email address",
        "code": "INVALID_FORMAT"
      }
    ],
    "requestId": "req_abc123"
  }
}

HTTP Status Code Usage

| Code | Usage | |------|-------| | 200 | Successful GET, PUT, PATCH | | 201 | Successful POST that creates a resource | | 204 | Successful DELETE with no response body | | 400 | Validation error or malformed request | | 401 | Missing or invalid authentication | | 403 | Authenticated but insufficient permissions | | 404 | Resource not found | | 409 | Conflict (duplicate, state violation) | | 422 | Semantically invalid request | | 429 | Rate limit exceeded | | 500 | Unexpected server error |

Pagination Pattern

# Query parameters
parameters:
  - name: page
    in: query
    schema:
      type: integer
      minimum: 1
      default: 1
  - name: pageSize
    in: query
    schema:
      type: integer
      minimum: 1
      maximum: 100
      default: 20

# Response envelope
PagedResponse:
  type: object
  properties:
    data:
      type: array
      items: { $ref: '#/components/schemas/Item' }
    pagination:
      type: object
      properties:
        page: { type: integer }
        pageSize: { type: integer }
        totalItems: { type: integer }
        totalPages: { type: integer }

Validation Checklist

  • [ ] All endpoints have descriptions
  • [ ] All request parameters have types and constraints
  • [ ] All responses include schema definitions
  • [ ] Error responses follow the standard format
  • [ ] Collection endpoints support pagination
  • [ ] Authentication requirements specified per endpoint
  • [ ] Examples provided for request and response bodies
  • [ ] No breaking changes from previous spec version (if updating)

Rules

  • Always version the API in the URL path (/api/v1/...)
  • Use JSON as the default content type
  • Include requestId in all error responses for traceability
  • Define rate limiting headers (X-RateLimit-Limit, X-RateLimit-Remaining)
  • Document all enum values explicitly in the schema
  • Prefer $ref for reusable schemas over inline definitions

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.