BlueBox Production
Studio Games Shader Graph Bluegent Rupor Join the community
Tools

Bluegent
our AI agent

An AI agent that installs with one line and runs on your own machine. We built it for our game pipeline, then kept it open in every other terminal too.

01 / What it is

An agent, not a chat window

Bluegent works where your files are. It reads the project in front of it, runs the commands you would have typed, and reports back in the same terminal.

One line to install

No wizard, no sign-up form, no licence key. Paste a single command and the agent is on your machine.

Local by design

It runs on your hardware, next to your files. Windows, macOS and Linux use the same agent.

Terminal native

PowerShell, zsh, bash — whatever you already have open. No separate app to keep in the dock.

Inspectable

The install scripts sit at a fixed URL as plain text. Open them in a browser first — that is the point.

02 / Install

Pick your platform

Copy the line for your system and paste it into a terminal. That is the whole installation.

Windows · PowerShell
PS>irm https://blueboxproduction.ru/bluegent/ | iex

If PowerShell complains about the execution policy, use the explicit script file instead:

Windows · explicit file
PS>irm https://blueboxproduction.ru/bluegent/install.ps1 | iex
macOS
$curl -fsSL https://blueboxproduction.ru/bluegent/install.sh | bash
Linux
$curl -fsSL https://blueboxproduction.ru/bluegent/install.sh | bash
macOS and Linux share the same installer. If curl is missing on a minimal distribution, install it from your package manager first.
03 / Before you run it

Piping to a shell deserves a look

Every one of these commands downloads a script and executes it. That is convenient, and it is also exactly the pattern you should be careful with — including here.

  • Open the URL in a browser first

    The installers are plain text. Read what they do before you hand them a shell.

  • Check the domain

    Only blueboxproduction.ru over HTTPS. If a link points anywhere else, it is not ours.

  • Execution policy is a signal, not an obstacle

    If Windows blocks the first command, use the explicit install.ps1 form above rather than disabling protection system-wide.

Inspect first
# read the Windows installer
PS>irm https://blueboxproduction.ru/bluegent/install.ps1
# read the macOS / Linux installer
$curl -fsSL https://blueboxproduction.ru/bluegent/install.sh | less
Same URLs, no pipe to a shell. Read the script, then decide.

Questions about the agent?

We answer them in the community, usually faster than in an inbox.