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

# Tool Integrations

> Supported AI coding tools in AiOS, onboarding flow, and extension guidance.

# Tool Integrations

> The repository does not currently ship the `aios agent ...` subcommands shown on this page. They are retained only as future CLI/agent integration direction.

## Audience

This page is for users integrating Codex, Claude, opencode, or additional AI coding tools.

## Goal and Scope

This page explains onboarding flow, tooling recommendations, and extension guidance.

## Supported Tools

* Codex CLI
* Claude CLI
* opencode CLI

## Planned Onboarding Flow (Not Yet Implemented)

```bash theme={null}
aios agent tool add codex --token $CODEX_TOKEN
aios agent tool add claude --token $CLAUDE_TOKEN
aios agent tool add opencode --token $OPENCODE_TOKEN

aios agent tool list
aios agent tool test codex
```

## Tooling Recommendations

* assign an independent profile for each tool
* choose default tools by workload type
* pin and record versions for reproducibility

## Extending New Tools

1. implement a unified adapter for I/O semantics
2. support session create/run/stream/terminate lifecycle
3. plug into scheduler and audit pipelines

```bash theme={null}
aios agent adapter register mytool --cmd mytool-cli
```

## Related Pages

* [Agent Overview](/en/agent/index)
* [CLI Reference](/en/reference/cli-reference)
* [FAQ](/en/agent/faq)
