Agents, skills, tools, connectors, schedules — all just files in a repo. Edit them in your IDE, run them locally, ship to the cloud with one
name = "acme-ops"
[sandbox]
image = ".nurax/Dockerfile"
[[agents]]
name = "support-triage"
model = "anthropic/claude-opus-4-8"
skills = ["ticket-triage", "nurax-memory"]
[[triggers]]
type = "cron"
schedule = "0 8 * * *"
agent = "support-triage"
[connectors]
slack = true
linear = trueDescribe intent, an agent edits files, you review the diff. Nurax runs that same loop for support, ops, and research.
Агенты — это песочницы
Каждый агент запускается в собственной изолированной облачной ВМ, на своей git-ветке. Запускайте тысячи параллельно — между запусками нет общего состояния.
Работа — это код
Агенты, навыки, триггеры, коннекторы и политики — это обычные файлы в одном репозитории. Сравнивайте версии, ревьюите в change request, откатывайте назад.
Стек принадлежит вам
Открытый, с доступным исходным кодом. Разверните тот же стек у себя, используйте свою среду выполнения и свои ключи моделей. Никакого чёрного ящика, никакой привязки к вендору.
One repo, one config, one command. The whole path, top to bottom.
One line installs the CLI. nurax init scaffolds nurax.toml and .nurax/, wired to your coding agent.
An agent is markdown — a persona, its model, and its tools. Skills are folders it loads on demand. Edit them by hand, or describe what you w
---
description: Acme's support agent. Resolves tickets end to end.
mode: primary
model: anthropic/claude-opus-4-8
tools:
lookup_order: true
---
You are Acme's support agent. Resolve customer tickets
end to end, with full product and order context.
Issue refunds under $500 on your own. Anything higher
goes to a human for approval.nurax.toml holds secrets, sandbox images, triggers, connectors, and channels. Versioned from the first commit.
nurax_version = 1
[project]
name = "acme"
# the OpenCode runtime config dir
[opencode]
config_dir = ".nurax/opencode"
# a trigger runs itself, on a schedule
[[triggers]]
slug = "daily-digest"
type = "cron"
agent = "research"
cron = "0 0 9 * * 1-5"
prompt = "Summarize yesterday across Slack & Linear"
# connect a tool's API as agent tools
[[connectors]]
slug = "stripe"
provider = "http"
base_url = "https://api.stripe.com"
# answer where your team works
[[channels]]
platform = "slack"
agent = "support"nurax ship commits, pushes, builds the sandbox, and prompts for missing secrets. Triggers and channels go live immediately — no separate in
Every session is its own VM on its own branch, booting the runtime and your repo. Spawn thousands in parallel — zero interference. A change
Sessions run on an open runtime. Bring your own keys — Anthropic, OpenAI, local — or use Nurax compute. Nothing about the runtime is hidden
Scaffold, ship, run, automate, connect and review — one CLI does it all. The same binary is pre-authenticated inside every sandbox, so agent
$ nurax initСоздать nurax.toml + .nurax/
$ nurax shipЗакоммитить, запушить, связать и запустить
$ nurax validateПроверить типы в манифесте
$ nurax sessionsСоздавать и управлять сессиями песочницы
$ nurax chatОбщаться с агентом сессии
$ nurax filesПросматривать репозиторий, диффы и ветки
$ nurax triggersАвтоматизации по cron и webhook
$ nurax channelsПодключить Slack и чат-интерфейсы
$ nurax connectorsПодключить 3 000+ инструментов
$ nurax secretsУправлять зашифрованными секретами
$ nurax envВыгрузить / загрузить как dotenv
$ nurax crОткрывать, ревьюить и принимать change requests
$ nurax accessПриглашать, выдавать и отзывать доступ
$ nurax self-hostЗапустить своё облако Nurax
$ nurax hosts useПереключаться облако ↔ локально
$ nurax providersИспользовать свои ключи моделей
Every session runs in its own isolated sandbox — real, isolated compute — on its own Git branch off main. Spin up millions in parallel; noth
Nurax connectors put 3,000+ apps — plus any MCP, OpenAPI, GraphQL or raw HTTP endpoint — behind a single Executor interface your agents cal
+ 3,000 more via Pipedream
Because everything is code in a repo, the system can read its own blueprint, extend itself, and stay healthy as it grows. 100% extensible, c
Агенты, навыки, инструменты, коннекторы и расписания живут в репозитории. Редактируйте в IDE, в веб-интерфейсе или дайте агенту отредактировать их.
Опишите изменение, и агент доставит его — ссылаясь на существующее, переиспользуя паттерны, открывая PR для вашего ревью.
Нетехнические специалисты публикуют навыки как markdown; Nurax обрабатывает ветку, PR и слияние за кулисами. Версионировано, ревьюируемо, аудируемо.
Когда истекает токен или сервис сбоит, Nurax обновляет его или просит переподключиться понятным языком — никаких загадочных ошибок.
Проверки типов, линтер, валидация документации и дедупликация выполняются до слияния — быстрая, написанная агентами кодовая база остаётся связной.
Интерфейс — это справка, а не требование. Всё, что можно сделать в меню, можно сделать сообщением.