{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "name": "VedaVerse Agent Skills Index",
  "version": "1.0.0",
  "publisher": "VedaVerse (VedaSeek)",
  "url": "https://www.vedaseek.com",
  "description": "Structured catalog of AI search and content retrieval capabilities for AI agents on VedaVerse.",
  "skills": [
    {
      "id": "scripture-ai-search",
      "name": "AI Scripture & Concept Search",
      "description": "Perform conceptual search across Bhagavad Gita, 108 Upanishads, Yogasutra, and Vedic scriptures.",
      "endpoint": "/search",
      "method": "GET",
      "parameters": [
        {
          "name": "q",
          "type": "string",
          "required": true,
          "description": "Search query or philosophical concept (e.g. 'Karma Yoga', 'Nachiketa', 'AUM')"
        }
      ]
    },
    {
      "id": "fetch-scripture-catalog",
      "name": "Fetch Scripture Catalog",
      "description": "Retrieve static index of all Vedic books, Upanishads, Bhagavad Gita, and metadata.",
      "endpoint": "/books",
      "method": "GET",
      "parameters": []
    },
    {
      "id": "fetch-verse-content",
      "name": "Fetch Verse & Commentary",
      "description": "Fetch existing pre-stored verse text, Sanskrit Devanagari, transliteration, and commentary in 17+ languages.",
      "endpoint": "/api/vedas",
      "method": "GET",
      "parameters": [
        {
          "name": "book",
          "type": "string",
          "required": true,
          "description": "Scripture slug (e.g. 'gita', 'katha-upanishad')"
        },
        {
          "name": "chapter",
          "type": "integer",
          "required": false,
          "description": "Chapter number"
        },
        {
          "name": "verse",
          "type": "integer",
          "required": false,
          "description": "Verse number"
        }
      ]
    },
    {
      "id": "glossary-lookup",
      "name": "Vedic Glossary Lookup",
      "description": "Fetch canonical definitions and cross-references for Vedic philosophical terms.",
      "endpoint": "/explore/glossary",
      "method": "GET",
      "parameters": [
        {
          "name": "term",
          "type": "string",
          "required": false,
          "description": "Sanskrit term (e.g. 'Brahman', 'Atman', 'Dharma')"
        }
      ]
    },
    {
      "id": "get-chapter-summary",
      "name": "Get Chapter Summary",
      "description": "Fetch pre-rendered chapter themes, key insights, and historical context.",
      "endpoint": "/api/explain-metadata",
      "method": "GET",
      "parameters": [
        {
          "name": "slug",
          "type": "string",
          "required": true,
          "description": "Scripture book slug (e.g. 'gita', 'yogasutra')"
        }
      ]
    }
  ]
}
