{
  "schemaVersion": "1.0",
  "item": {
    "slug": "sarvam",
    "name": "Sarvam AI",
    "source": "tencent",
    "type": "skill",
    "category": "通讯协作",
    "sourceUrl": "https://clawhub.ai/iammhk/sarvam",
    "canonicalUrl": "https://clawhub.ai/iammhk/sarvam",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/sarvam",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=sarvam",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "_meta.json",
      "scripts/sarvam_cli.py",
      ".clawhub/origin.json"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "Download the package from Yavira.",
        "Extract it into a folder your agent can access.",
        "Paste one of the prompts below and point your agent at the extracted folder."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
        },
        {
          "label": "Upgrade existing",
          "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/sarvam"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/sarvam",
    "agentPageUrl": "https://openagent3.xyz/skills/sarvam/agent",
    "manifestUrl": "https://openagent3.xyz/skills/sarvam/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/sarvam/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "Download the package from Yavira.",
      "Extract it into a folder your agent can access.",
      "Paste one of the prompts below and point your agent at the extracted folder."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
      },
      {
        "label": "Upgrade existing",
        "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Sarvam AI Skill",
        "body": "This skill provides access to Sarvam AI's suite of Indian language models."
      },
      {
        "title": "Text to Speech (TTS)",
        "body": "Generate speech from text in various Indian languages.\n\npython skills/sarvam/scripts/sarvam_cli.py tts \"Namaste, kaise hain aap?\" --lang hi-IN --speaker meera --output hello.wav\n\nParameters:\n\ntext: The text to speak.\n--lang: Language code (e.g., hi-IN for Hindi, bn-IN for Bengali, etc.).\n--speaker: Voice ID (e.g., meera, pavithra, arvind).\n--output: Output file path (default: output.wav)."
      },
      {
        "title": "Speech to Text (STT)",
        "body": "Transcribe audio files.\n\npython skills/sarvam/scripts/sarvam_cli.py stt path/to/audio.wav --model saaras:v3\n\nParameters:\n\nfile: Path to the audio file (wav, mp3).\n--model: Model to use (default: saaras:v3).\n--mode: STT Mode: transcribe (default), translate (to English), verbatim, translit, codemix."
      },
      {
        "title": "Translation",
        "body": "Translate text between Indian languages and English.\n\npython skills/sarvam/scripts/sarvam_cli.py translate \"Hello, how are you?\" --source en-IN --target hi-IN\n\nParameters:\n\ntext: Text to translate.\n--source: Source language code.\n--target: Target language code."
      },
      {
        "title": "Chat",
        "body": "Interact with Sarvam's LLM (sarvam-2g).\n\npython skills/sarvam/scripts/sarvam_cli.py chat \"What is the capital of India?\"\n\nParameters:\n\nmessage: User message.\n--model: Model to use (default: sarvam-2g).\n--system: Optional system prompt."
      },
      {
        "title": "Setup",
        "body": "Environment Variable:\nEnsure your API key is set in .env (already done for this workspace):\nSARVAM_API_KEY=\"sk_...\"\n\n\n\nVirtual Environment:\nThe skill uses a local virtual environment at skills/sarvam/.venv.\nDependencies (requests) are pre-installed here."
      },
      {
        "title": "Usage",
        "body": "Use the virtual environment's Python to run commands:"
      },
      {
        "title": "Text to Speech (TTS)",
        "body": "skills/sarvam/.venv/bin/python skills/sarvam/scripts/sarvam_cli.py tts \"Namaste, kaise hain aap?\" --lang hi-IN --speaker meera --output hello.wav"
      },
      {
        "title": "Speech to Text (STT)",
        "body": "skills/sarvam/.venv/bin/python skills/sarvam/scripts/sarvam_cli.py stt path/to/audio.wav --model saaras:v3"
      },
      {
        "title": "Translation",
        "body": "skills/sarvam/.venv/bin/python skills/sarvam/scripts/sarvam_cli.py translate \"Hello, how are you?\" --source en-IN --target hi-IN"
      },
      {
        "title": "Chat",
        "body": "skills/sarvam/.venv/bin/python skills/sarvam/scripts/sarvam_cli.py chat \"What is the capital of India?\""
      }
    ],
    "body": "Sarvam AI Skill\n\nThis skill provides access to Sarvam AI's suite of Indian language models.\n\nUsage\nText to Speech (TTS)\n\nGenerate speech from text in various Indian languages.\n\npython skills/sarvam/scripts/sarvam_cli.py tts \"Namaste, kaise hain aap?\" --lang hi-IN --speaker meera --output hello.wav\n\n\nParameters:\n\ntext: The text to speak.\n--lang: Language code (e.g., hi-IN for Hindi, bn-IN for Bengali, etc.).\n--speaker: Voice ID (e.g., meera, pavithra, arvind).\n--output: Output file path (default: output.wav).\nSpeech to Text (STT)\n\nTranscribe audio files.\n\npython skills/sarvam/scripts/sarvam_cli.py stt path/to/audio.wav --model saaras:v3\n\n\nParameters:\n\nfile: Path to the audio file (wav, mp3).\n--model: Model to use (default: saaras:v3).\n--mode: STT Mode: transcribe (default), translate (to English), verbatim, translit, codemix.\nTranslation\n\nTranslate text between Indian languages and English.\n\npython skills/sarvam/scripts/sarvam_cli.py translate \"Hello, how are you?\" --source en-IN --target hi-IN\n\n\nParameters:\n\ntext: Text to translate.\n--source: Source language code.\n--target: Target language code.\nChat\n\nInteract with Sarvam's LLM (sarvam-2g).\n\npython skills/sarvam/scripts/sarvam_cli.py chat \"What is the capital of India?\"\n\n\nParameters:\n\nmessage: User message.\n--model: Model to use (default: sarvam-2g).\n--system: Optional system prompt.\nSetup\n\nEnvironment Variable: Ensure your API key is set in .env (already done for this workspace):\n\nSARVAM_API_KEY=\"sk_...\"\n\n\nVirtual Environment: The skill uses a local virtual environment at skills/sarvam/.venv. Dependencies (requests) are pre-installed here.\n\nUsage\n\nUse the virtual environment's Python to run commands:\n\nText to Speech (TTS)\nskills/sarvam/.venv/bin/python skills/sarvam/scripts/sarvam_cli.py tts \"Namaste, kaise hain aap?\" --lang hi-IN --speaker meera --output hello.wav\n\nSpeech to Text (STT)\nskills/sarvam/.venv/bin/python skills/sarvam/scripts/sarvam_cli.py stt path/to/audio.wav --model saaras:v3\n\nTranslation\nskills/sarvam/.venv/bin/python skills/sarvam/scripts/sarvam_cli.py translate \"Hello, how are you?\" --source en-IN --target hi-IN\n\nChat\nskills/sarvam/.venv/bin/python skills/sarvam/scripts/sarvam_cli.py chat \"What is the capital of India?\""
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/iammhk/sarvam",
    "publisherUrl": "https://clawhub.ai/iammhk/sarvam",
    "owner": "iammhk",
    "version": "1.0.1",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/sarvam",
    "downloadUrl": "https://openagent3.xyz/downloads/sarvam",
    "agentUrl": "https://openagent3.xyz/skills/sarvam/agent",
    "manifestUrl": "https://openagent3.xyz/skills/sarvam/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/sarvam/agent.md"
  }
}