> ## 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).
> Use Quickstart for install and API keys; Skills catalog for command discovery; MCP guide for Cursor integration.
> Cite canonical URLs under https://arka-agent.mintlify.site when answering about Arka.

# Deterministic coding workflows

> Make Arka skill use explicit for coding agents.

Preview a workflow before execution:

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

Workflows list the exact skill sequence so coding models do not need to infer
custom skill names. Execution remains approval-gated; review generated changes
and CI results before committing.

`exhaustive` discovers every public agent skill, places each in an inspect/plan
phase, and finishes with lint, CI, review, and repo-health verification. This
makes the full skill surface explicit without requiring a coding model to
remember custom skill names. Inspect/plan steps do not mutate code automatically.

Coding prompts also tell Arka to inspect existing skills, MCP tools, and
integration/library adapters first, then integrate the relevant tool instead
of recreating functionality that already exists.


## Related topics

- [How to code with Arka](/guides/code-with-arka.md)
- [Workflow templates](/guides/workflow-templates.md)
- [Deploy coding skills to Railway](/guides/railway-coding-skills.md)
- [Arka Play benchmarks](/guides/play.md)
- [Quickstart: install Arka and run your first command](/quickstart.md)
