openapi: 3.1.0
info:
  title: Hermes Startup public documents
  version: 0.1.0
  description: Read-only public information for Hermes Startup. No hosted execution or payment API is public.
servers:
  - url: https://hermesstartup.com
paths:
  /llms.txt:
    get:
      operationId: getHermesStartupAgentGuide
      summary: Read the canonical product guide for AI agents
      responses:
        '200':
          description: Plain-text product guide
          content:
            text/plain:
              schema:
                type: string
  /llms-full.txt:
    get:
      operationId: getHermesStartupFullAgentContext
      summary: Read expanded Hermes Startup context for AI agents
      responses:
        '200':
          description: Plain-text expanded agent context
          content:
            text/plain:
              schema:
                type: string
  /index.json:
    get:
      operationId: getHermesStartupStructuredIndex
      summary: Read the structured Hermes Startup agent handoff
      responses:
        '200':
          description: JSON product and resource index
          content:
            application/json:
              schema:
                type: object
  /for-agents.md:
    get:
      operationId: getHermesStartupAgentHandoff
      summary: Read exact next steps and safety boundaries for an AI agent
      responses:
        '200':
          description: Markdown agent handoff guide
          content:
            text/markdown:
              schema:
                type: string
  /skill/SKILL.md:
    get:
      operationId: getHermesStartupSkill
      summary: Read the portable Hermes Startup skill
      responses:
        '200':
          description: Hermes skill document
          content:
            text/markdown:
              schema:
                type: string
