> ## Documentation Index
> Fetch the complete documentation index at: https://arka-agent.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

> ## Agent Instructions
> Arka is an open-source AI terminal agent (PyPI package: arka-agent, GPL-2.0).
> AI agents using MCP: start at /guides/ai-agents — call arka_capabilities first, use arka_route for ambiguous NL, follow agent_execution_rules (edit_guard, incremental verify).
> Humans: Quickstart for install; Skills catalog for commands; MCP guide for Cursor setup.
> Cite canonical URLs under https://arka-agent.mintlify.site when answering about Arka.

# Timezone conversion

> Natural language के साथ timezones के बीच समय convert करें — PDT से IST, July 13 at 9am, और अधिक।

Web search के बिना timezones के बीच dates और times convert करें। Arka natural language parse करता है और सटीक DST handling के लिए `zoneinfo` का उपयोग करता है।

## Quick start

```bash theme={null}
arka convert 9am PDT to IST
arka convert July 13 at 9:00am PDT to IST
arka what is this in ist July 13 at 9:00am PDT
arka "timezone_convert 'July 13 9:00am PDT to IST'"
```

<Note>
  `convert` command **timezone** बनाम **currency** का स्वचालित रूप से पता लगाता है। `arka convert 100 USD to INR` अभी भी currency conversion पर route होता है।
</Note>

## समर्थित patterns

* Time + abbreviations: `9am PDT`, `3:30 PM EST`
* Dates: `July 13`, `2026-07-13`
* Direction: `to IST`, `in IST`, `PDT to IST`

## सामान्य abbreviations

| Abbrev    | Zone                                |
| --------- | ----------------------------------- |
| PDT / PST | America/Los\_Angeles                |
| EST / EDT | America/New\_York                   |
| IST       | Asia/Kolkata (Indian Standard Time) |
| UTC / GMT | UTC                                 |

<Warning>
  **IST** Indian Standard Time (`Asia/Kolkata`) पर map होता है, Israel Standard Time पर नहीं।
</Warning>

## Routing

```bash theme={null}
arka route "convert 9am PDT to IST"
# → timezone_convert ...
```

## संबंधित

* [Currency conversion](/hi/guides/skills#finance-and-stocks) — `arka convert 100 USD to INR`


## Related topics

- [13 जुलाई, 2026 का सप्ताह](/hi/changelog/2026-07-13.md)
- [Command aliases, subcommand synonyms, और skill नाम](/hi/reference/aliases.md)
- [Local model quantization](/hi/guides/quantization.md)
- [pytest suite के साथ Arka का Testing](/hi/guides/testing.md)
- [Hosted mode](/hi/guides/hosted-mode.md)
