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

# 确定性编码工作流

> 让 Arka 的技能使用对编码智能体变得明确。

在执行前预览一个工作流：

```bash theme={null}
arka coding-workflow feature --task "add rate limiting"
arka coding-workflow bugfix --task "fix the timeout regression" --run
arka coding-workflow frontend --task "implement the approved screenshot" --run
arka coding-workflow exhaustive --task "audit and improve this project"
```

工作流会列出确切的技能调用序列，这样编码模型就无需推断自定义
技能名。执行仍然需要审批；在提交前请审阅生成的修改和 CI 结果。

`exhaustive` 会发现所有公开的智能体技能，把每一项放入 inspect/plan
阶段，并以 lint、CI、review 和仓库健康检查作为收尾。这样能在
不要求编码模型记忆自定义技能名的情况下明确暴露完整技能面。
Inspect/plan 步骤不会自动改动代码。

编码提示词也会告诉 Arka 先审视现有技能、MCP 工具以及集成/库
适配器，然后集成相关工具，而不是重新实现已经存在的功能。


## Related topics

- [开发者循环](/cn/guides/dev.md)
- [Arka 与其他智能体的对比](/cn/concepts/comparison.md)
- [n8n 工作流自动化](/cn/guides/n8n.md)
- [AI 智能体指南 — 通过 MCP 使用 Arka](/cn/guides/ai-agents.md)
- [2026 年 8 月 17 日当周](/cn/changelog/2026-08-17.md)
