> ## Documentation Index
> Fetch the complete documentation index at: https://docs.nuon.co/llms.txt
> Use this file to discover all available pages before exploring further.

# AI and App Building

> Use AI agents to generate and manage your Nuon app configuration.

You can use any terminal-based AI agent to build Nuon app configurations — instead of writing TOML files by hand, describe your application and let the agent scaffold everything for you.

## Getting started

Clone the [example apps repo](https://github.com/nuonco/example-app-configs) and start your agent from that directory. The repo includes an `AGENTS.md` file (with a `CLAUDE.md` symlink) that gives any agent the context it needs: links to the Nuon OSS repo, example configs, and sandbox infrastructure references.

```bash theme={null}
git clone https://github.com/nuonco/example-app-configs
cd example-app-configs
claude  # or: gemini, amp, etc.
```

When starting the agent, also point it at your own resources — Helm charts, Terraform modules, and any relevant documentation — so it can tailor the config to your stack.

<Tip>
  Works with any agent: Claude Code, Google Gemini CLI, Amp Code, and others. For agents that don't read `CLAUDE.md`, create a symlink — e.g., `ln -s AGENTS.md GEMINI.md`.
</Tip>

## Claude Code

Claude Code users can also load the [nuon-plugin](https://github.com/nuonco/nuon-plugin) for deeper integration, or install individual [skills](https://github.com/nuonco/skills) from the Nuon skills library.

The plugin adds `/nuon:init`, `/nuon:convert`, and `/nuon:validate` slash commands directly in your Claude session. The skills (`nuon-creator`, `nuon-app-config`, `nuon-actions`, `nuon-policy`) provide focused, auto-invoked assistance for specific tasks like config generation, action scripting, and policy authoring.

```bash theme={null}
npx skills add nuonco/skills
```
