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

# Ultra-fast development

> Priority-aware, edit-scoped verification के साथ multitask करें।

Independent development tasks को concurrently चलाएँ:

```bash theme={null}
arka ultra_fast --iterations 3 \
  --task 'ui|arka "1"|arka "frontend_loop review app.png"|arka "src/components"|pytest tests/test_ui.py' \
  --task 'docs|arka "0"|arka "update_docs"|arka "docs"|arka "pytest tests/test_docs.py'"
```

Task format है `name|priority|build-command|edited-paths|test-command`.

* Priority `1`: प्रत्येक iteration के बाद test चलाएँ जिसमें उसके paths में से एक बदला हो।
* Priority `0`: सभी iterations के बाद केवल एक बार test चलाएँ, और केवल तभी जब उसके paths बदले हों।
* Unedited tasks का कभी test नहीं होता।
* Priority mode डिफ़ॉल्ट रूप से enabled है; इसे disable करने के लिए `--no-priority` का उपयोग करें।
* जब हर task/prompt को priority `1` के रूप में treat किया जाना चाहिए तब `--auto-priority` का उपयोग करें।

Scheduler हर task, exit code और यह report करता है कि क्या इसे edited किया गया था।
Build commands को independent रखें और deployment से पहले generated changes की समीक्षा करें।


## Related topics

- [MCP के ज़रिए हर Arka स्किल इस्तेमाल करें](/hi/guides/mcp-all-skills.md)
- [Sakana Fugu orchestrator](/hi/guides/fugu.md)
- [pytest suite के साथ Arka का Testing](/hi/guides/testing.md)
- [PDF से interactive website](/hi/guides/pdf-interactive.md)
- [multi-provider failover के साथ LLM orchestration](/hi/concepts/llm.md)
