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

# 极速开发

> 以优先级感知、限定改动范围的方式进行并行验证。

并发运行相互独立的开发任务：

```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'"
```

任务格式为 `name|priority|build-command|edited-paths|test-command`。

* 优先级 `1`：只要某次迭代中它的任一路径发生变化，就在迭代后运行其测试。
* 优先级 `0`：仅在所有迭代结束后运行一次测试，且必须有路径被修改。
* 未被修改的任务永远不会被测试。
* 优先级模式默认启用；使用 `--no-priority` 关闭。
* 使用 `--auto-priority` 可将所有任务/提示都视为优先级 `1`。

调度器会汇报每个任务、退出码，以及它是否被修改过。请保持
构建命令彼此独立，并在部署前审阅生成的改动。


## Related topics

- [通过 MCP 使用每一项 Arka 技能](/cn/guides/mcp-all-skills.md)
- [快速开始：安装 Arka 并运行第一条命令](/cn/quickstart.md)
- [输出查看器](/cn/guides/output-viewer.md)
- [Arka 简介](/cn/index.md)
- [开发者循环](/cn/guides/dev.md)
