> ## 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.

# Clipboard history

> Terminal से हाल की clipboard entries सहेजें, सूचीबद्ध करें और restore करें।

Clipboard snippets का rolling history रखें — तब उपयोगी जब आप terminals और apps के बीच copy-paste करते हैं।

## Natural language

```bash theme={null}
arka save clipboard to history
arka show clipboard history
arka paste clipboard entry 2
arka clear clipboard history
```

## CLI commands

| Command                                    | विवरण                                       |
| ------------------------------------------ | ------------------------------------------- |
| `clipboard_history save`                   | वर्तमान clipboard को history में सहेजें     |
| `clipboard_history list`                   | हाल की entries सूचीबद्ध करें (सबसे नई पहले) |
| `clipboard_history paste <index>`          | Entry को system clipboard पर restore करें   |
| `clipboard_history paste <index> --stdout` | Entry को stdout पर print करें               |
| `clipboard_history clear`                  | History मिटाएँ                              |

Platform clipboard tools का उपयोग करता है (macOS पर `pbcopy`/`pbpaste`, Linux पर `xclip` या `wl-copy`)। आपकी Arka config directory में 50 entries तक store करता है।

<Note>
  Basic `clipboard` fish skill अभी भी वर्तमान clipboard को copy या show करता है। जब आप persistent recall चाहते हैं तो `clipboard_history` का उपयोग करें।
</Note>


## Related topics

- [13 जुलाई, 2026 का सप्ताह](/hi/changelog/2026-07-13.md)
- [Cursor और Claude के लिए MCP integration](/hi/guides/mcp.md)
- [pytest suite के साथ Arka का Testing](/hi/guides/testing.md)
- [Session memory, heartbeat, और skill gates](/hi/guides/openclaw-features.md)
- [Arka CLI command और flag reference](/hi/guides/cli.md)
