For the complete documentation index, see llms.txt. This page is also available as Markdown.

DeepSeek Reasonix CLI

Integrating DeepSeek Reasonix CLI with FastRouter.

What is DeepSeek Reasonix CLI

DeepSeek Reasonix CLI is an open-source DeepSeek-native AI coding agent that runs in your terminal. It supports any DeepSeek-compatible model provider, including FastRouter, allowing you to leverage FastRouter's unified API gateway, provider failover, unified observability, BYOK (Bring Your Own Key) support, and organizational controls while using Reasonix's agentic coding workflows.

Install DeepSeek Reasonix CLI

Start by installing Reasonix on your local machine. Follow the installation instructions for your operating system.

Install command

npm install -g reasonix

Create a FastRouter API key

Sign up or log in to your FastRouter account to access models through FastRouter's unified AI gateway.

  1. Navigate to API Keys (keys page).

  2. Create a new API key.

  3. Copy and securely store your API key.

Configure DeepSeek Reasonix CLI to use FastRouter

Edit the ~/.reasonix/config.json file to connect to FastRouter:

{
  "apiKey": "sk-v1-***",
  "baseUrl": "https://api.fastrouter.ai/api/v1",
  "model": "deepseek/deepseek-v3.2"
}

Start DeepSeek Reasonix CLI

Alternative: install Reasonix CLI with FastRouter

One-line install script

In the commands below, replace $API_KEY with your actual FastRouter API key.

Or download, inspect, then run:

Install Reasonix with the FastRouter skill file

Install using skill.md:

Or ask Reasonix to install FastRouter:

Why use DeepSeek Reasonix CLI with FastRouter

Configure DeepSeek Reasonix CLI to use your FastRouter API key and endpoint. Once configured, you can access models through FastRouter and take advantage of:

Unified API — Access models from multiple AI providers through a single, consistent API interface.

Provider failover & routing — Automatically route requests to available providers and fail over during outages or rate limits.

Unified observability — Monitor requests, latency, costs, and usage across all providers from a centralized dashboard.

Troubleshooting — Debug API requests, authentication, routing, and provider responses faster with FastRouter's audit logs.

BYOK (Bring Your Own Key) — Use your own provider API keys while maintaining centralized routing and management.

Organization controls — Manage organizations, projects, keys, and API usage with enterprise-grade governance controls.

References

You can find the skill.md file attached below, or at https://fastrouter.ai/reasonix/skill.md.


Last updated