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

# Use Neuro documentation with coding agents

> Give coding agents current Neuro context through skill.md, llms.txt, or the documentation MCP server

Neuro publishes its documentation in formats that coding agents can search and retrieve. These documentation tools are separate from the **Agent API**, Neuro's main HTTP API.

## Choose a documentation interface

| Need                                                       | Use                                                         |
| ---------------------------------------------------------- | ----------------------------------------------------------- |
| Install reusable Neuro instructions into a coding agent    | [`skill.md`](https://docs.neuro-tech.io/skill.md)           |
| Discover documentation pages and their descriptions        | [`llms.txt`](https://docs.neuro-tech.io/llms.txt)           |
| Retrieve the complete documentation corpus                 | [`llms-full.txt`](https://docs.neuro-tech.io/llms-full.txt) |
| Let an AI tool search and retrieve current pages on demand | [Documentation MCP](https://docs.neuro-tech.io/mcp)         |

## Install the Neuro skills

Run the skills CLI from the project where you want to use Neuro:

```bash theme={null}
npx skills add https://docs.neuro-tech.io
```

The published skill index includes only instructions that pass the repository's documentation checks. Other capabilities remain available as regular documentation.

## Give an agent a task

State the intended outcome, runtime, and environment. For example:

```text theme={null}
Use the Neuro documentation skill to add a server-side health check that logs in
through the Agent API and reads the account information. Use Node.js 20 in the
development environment. Keep credentials and the returned JWT out of logs.
```

Review the generated change against the selected guide and API reference. Do not let a coding agent infer missing endpoints or fields from similar operations.

## Distinguish coding agents from the Agent API

The **Agent API** is Neuro's HTTP interface. A caller acts through a Neuron's Agent endpoint rather than connecting directly through XMPP and managing the account's private keys. The term is unrelated to artificial intelligence.

Use **AI agent** or **coding agent** only when referring to artificial intelligence. Use **MCP** when an AI application connects to supported Neuro tools through Model Context Protocol.

## Next

* [Choose an integration](/get-started/choose-integration)
* [Agent API quickstart](/neuron-api/quickstart)
* [SDKs](/developer-tools/sdks)
