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

# Infographics

> Adaptive listicle and mind-map PNGs — layout follows item count, local Pillow only.

Compose **infographic-style images** locally with Pillow. Arka picks the layout
from how many items you provide — no AI tokens, exact typography.

## Layout auto-selection

| Items | Layout                |
| ----- | --------------------- |
| 1–2   | Horizontal row        |
| 3     | Three-column row      |
| 4     | 2×2 grid              |
| 5–6   | Multi-column grid     |
| 7–9   | 3×3 grid              |
| 10+   | Radial hub (mind-map) |

Override with `--layout radial` (or `grid4`, `row3`, etc.) when you want a
fixed template.

## Quick start

```bash theme={null}
# 4 items → 2×2 grid
arka infographic --title "Types of Headaches" \
  --item Tension --item Migraine --item Cluster --item Sinus

# 10+ items → radial mind-map
arka infographic create --title "GitHub Repos" \
  --item frontend --item backend --item infra --item docs \
  --item mobile --item cli --item docs-site --item playground \
  --item design-system --item analytics --item infra-tools

# Styles: clean (default), doodle, dark, meme
arka infographic --title "Daily habits" --style doodle \
  --items "Walk, Read, Code, Sleep"

# List layouts and styles
arka infographic layouts
arka infographic styles
```

Output defaults to `~/Pictures/arka-generated/` (override with
`IMAGE_OUTPUT_DIR`). Default style: `INFOGRAPHIC_STYLE=clean`.

## Natural language

Phrases like **infographic about …**, **listicle**, or **mind map** route
offline before chat:

```bash theme={null}
arka 'infographic about "Types of Headaches" items: tension, migraine, cluster, sinus'
arka route 'listicle titled "Startup stack" with items: Postgres, Redis, Kafka'
```

## CLI aliases

* `arka infographic …`
* `arka infographic-maker …`
* `arka listicle …`

Each cell uses a simple glyph icon and wrapped label text. For photo-based
memes with stock images, see [Meme templates](/guides/meme-templates).


## Related topics

- [MCP integration for Cursor and Claude](/guides/mcp.md)
- [Week of August 17, 2026](/changelog/2026-08-17.md)
