AgentStack
SKILL verified MIT Self-run

Team Api Conventions

skill-davila7-claude-with-skills-claude-only-context · by davila7

API design conventions for this codebase. Use whenever writing or reviewing API endpoints, route handlers, or HTTP clients.

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

Install

$ agentstack add skill-davila7-claude-with-skills-claude-only-context

✓ 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.

Are you the author of Team Api Conventions? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Team API conventions

Apply these conventions whenever you write, review, or modify API endpoints, route handlers, request validation, or HTTP client code in this codebase.

REST naming

  • Use lowercase, hyphen-separated resource names in URLs: /user-profiles, not /userProfiles or /user_profiles.
  • Resources are plural nouns: /invoices, /line-items, not /invoice, /lineItem.
  • Nested resources express ownership: /invoices/{id}/line-items.
  • Actions that do not map cleanly to CRUD use a verb suffix on the resource: /invoices/{id}/send, /invoices/{id}/void.
  • Query parameters are camelCase: ?pageSize=20&startAfter=abc.

Response format

All API responses use a consistent envelope:

{
  "data": {},
  "meta": {
    "requestId": "uuid",
    "timestamp": "ISO-8601"
  }
}

List responses add pagination to meta:

{
  "data": [],
  "meta": {
    "requestId": "uuid",
    "timestamp": "ISO-8601",
    "pagination": {
      "total": 142,
      "pageSize": 20,
      "nextCursor": "opaque-string-or-null"
    }
  }
}

Do not return bare arrays or bare objects at the top level.

Error format

{
  "error": {
    "code": "INVOICE_NOT_FOUND",
    "message": "No invoice with id 'xyz' exists.",
    "requestId": "uuid"
  }
}
  • code is SCREAMINGSNAKECASE and stable across releases. Client code switches on this value.
  • message is human-readable and may change between releases.
  • HTTP status codes: 400 for client errors, 401 for unauthenticated, 403 for unauthorized, 404 for not found, 409 for conflicts, 422 for validation failures, 500 for server errors. Do not use 200 with an error body.

Versioning

  • Version in the URL path: /v1/invoices, /v2/invoices.
  • Never version individual endpoints separately. When a breaking change is needed, version the entire API surface together.
  • Maintain at least one prior major version for six months after a new version is released.

Authentication

  • All authenticated requests use the header Authorization: Bearer .
  • Never accept tokens as query parameters. Log warnings if a query parameter token is detected (it may have been sent by an older client).
  • Service-to-service calls use X-Service-Token instead of Authorization and are validated differently at the gateway.

When reviewing API code

Flag any of the following as review comments:

  • Bare array or bare object response bodies
  • Missing requestId in responses
  • Error bodies that return 200 OK
  • Tokens accepted via query parameters
  • Inconsistent resource naming (mixed plural/singular, mixed casing)

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.