openapi: 3.1.0
info:
  title: Looming Public Discovery API
  version: 1.0.0
  description: Public, read-only discovery endpoints for Looming AI fashion design assets. These endpoints expose website metadata for AI agents and directories; they do not provide private user data or hidden automation hooks.
servers:
  - url: https://looming.cn
paths:
  /llms.txt:
    get:
      operationId: getLlmsTxt
      summary: Get concise AI-readable product context
      responses:
        '200':
          description: Plain-text llms.txt content
          content:
            text/plain:
              schema:
                type: string
  /llms-full.txt:
    get:
      operationId: getLlmsFullTxt
      summary: Get full AI-readable product documentation
      responses:
        '200':
          description: Plain-text long-form product context
          content:
            text/plain:
              schema:
                type: string
  /.well-known/ai-agents.json:
    get:
      operationId: getAiAgentsManifest
      summary: Get the AI agent discovery manifest
      responses:
        '200':
          description: AI agent manifest
          content:
            application/json:
              schema:
                type: object
                additionalProperties: true
  /.well-known/ai-plugin.json:
    get:
      operationId: getAiPluginManifest
      summary: Get the AI plugin manifest
      responses:
        '200':
          description: AI plugin manifest
          content:
            application/json:
              schema:
                type: object
                additionalProperties: true
  /pricing.html:
    get:
      operationId: getPricingPage
      summary: Get the public pricing page
      responses:
        '200':
          description: Public pricing page
          content:
            text/html:
              schema:
                type: string
  /ai-fashion-design-software.html:
    get:
      operationId: getAiFashionDesignSoftwareGuide
      summary: Get the public AI fashion design software recommendation guide
      responses:
        '200':
          description: Public recommendation-style guide for AI fashion design software queries
          content:
            text/html:
              schema:
                type: string
