Skip to main content

Set up your workstation

Use this guide to install AITrax and start capturing development activity. You'll set up your development tool, then confirm the result.

  • Deployment: SaaS, On-premises

Before you begin

You need all of the following:

1. Set up your development tool

Every developer is sent a workstation setup link as part of onboarding — see Onboard a developer. Open that link, or, if you already have portal access, open Setup in the portal sidebar instead. If you have neither, ask your administrator to send you a setup link or grant you portal access. Either path takes you to the Workstation Setup page, which has a tab for each supported editor. Select the tab for your editor and follow the steps it shows.

The following table lists the available tabs:

TabUse it for
JetBrainsIntelliJ IDEA, GoLand, PyCharm, WebStorm, and other JetBrains IDEs
VS Code-basedVisual Studio Code, Cursor, and other VS Code-compatible editors
Visual StudioMicrosoft Visual Studio
EclipseEclipse IDE
OthersEditors not in this table, or command-line AI agents and MCP (Model Context Protocol) clients
Important

Install the CodeTogether AI plugin using the company-provided installation source on that page. Do not install the plugin from your IDE's marketplace — that version is not configured for your organization.

Installing the plugin is the whole job for a supported IDE: it detects that setup is missing and configures your workstation the first time it runs.

Using a terminal instead

Use a terminal instead if you do not use one of the supported IDEs, or if you work primarily through command-line AI agents such as Claude Code, Codex CLI, or Copilot CLI, and MCP clients such as Claude Desktop. On the Workstation Setup page, this is the Others tab. Open a terminal, then run the command for your platform.

curl -fsSL https://aitrax.codetogether.io/setup | sh -s -- system

The command detects your operating system and architecture, downloads the aitrax binary to ~/.codetogether/tracker, and runs aitrax setup system.

To review the script before it runs — a policy at many organizations for any piped installer — download it to a file first, read it, then run it:

curl -fsSL https://aitrax.codetogether.io/setup -o aitrax-setup.sh
less aitrax-setup.sh
sh aitrax-setup.sh system

On Windows, save it with Invoke-RestMethod https://aitrax.codetogether.io/setup.ps1 -OutFile aitrax-setup.ps1, review it, then run .\aitrax-setup.ps1 system. The script is a thin delegator: it downloads the binary and runs aitrax setup, and every configuration change is made by that command, not by the script. See How setup works.

2. Confirm setup completed

Run the status command:

aitrax setup check

The output reports system status. If it shows as configured, your workstation is ready and activity is captured from your next session. If it does not, see Setup reports not configured.

Terminal
$ aitrax setup check
{
  "system": {
    "configured": true,
    "missing": [],
    "loginCleanup": {
      "state": "clean"
    }
  }
}

3. Confirm activity reaches the portal

Make a commit, or run an AI session in your editor, then open the portal.

Activity does not appear instantly. Processing and rollups run asynchronously, so allow time before treating an empty view as a fault. See No activity appears for a developer.

ScreenshotPortal activity view showing the developer's first captured commit appearing after setup.

Next steps