How to install cue on Windows

cue does what Cluely does, and Cluely costs $149.99/mo. This guide gets you the free one.

What you end up with

cue installed like any other app on your Windows PC. It is free, and it stays free — there is no account, no trial and no subscription at the end of this.

Time
About 12 minutes
Steps
13
Cost
Free

Before you start

These are one-time installs. If you have used PowerShell before, you may have them already — the first step checks.

  1. Install Git

    Run the installer, then reopen PowerShell.

    Open installer

    You know this worked when: Git responds with a version number

  2. Install Node LTS

    Run the LTS installer, then reopen PowerShell.

    Open download

    You know this worked when: Node responds with a version number

Install cue

  1. Open PowerShell

    Keep it open beside this page.

    You know this worked when: PowerShell is open

  2. Check Git and Node

    Git and the current Node LTS are required.

    Type this into PowerShell, then press Enter.

    git --version
    node --version

    You know this worked when: Git and Node respond with version numbers

  3. Copy cue to this PC

    Type this into PowerShell, then press Enter.

    cd ~
    if [ ! -d cue/.git ]; then
    git clone https://github.com/Blueturboguy07/cue.git
    fi

    You know this worked when: A cue folder appears

  4. Open the cue folder

    If it says no such file or directory, the clone step above didn't run — do that one first.

    Type this into PowerShell, then press Enter.

    cd cue

    You know this worked when: Your terminal prompt is inside the cue folder

  5. Use the reviewed version

    Type this into PowerShell, then press Enter.

    git checkout 90aa366ce27e8ae9f5b86f8cffa791338abdd9a2

    You know this worked when: Git reports the reviewed commit

  6. Install dependencies

    Type this into PowerShell, then press Enter.

    npm.cmd ci

    You know this worked when: The command finishes without an error

  7. Build the installer

    Type this into PowerShell, then press Enter.

    npm.cmd run dist:win

    You know this worked when: A cue Setup .exe appears in dist

  8. Install cue

    The command runs the installer electron-builder just produced — click through it.

    Type this into PowerShell, then press Enter.

    $setup = Get-ChildItem dist -Filter *.exe | Select-Object -First 1
    Start-Process -FilePath $setup.FullName -Wait

    You know this worked when: The installer finishes

  9. Open cue

    Launches cue from its default install location.

    Type this into PowerShell, then press Enter.

    Start-Process "$env:LOCALAPPDATA\Programs\cue\cue.exe"

    You know this worked when: cue launches from its normal system shortcut

  10. Allow microphone access

    Approve it when Windows asks.

    You know this worked when: cue opens without a permission warning

  11. Add your own AI key

    Open Settings from the ••• button, pick a provider, paste the key.

    You know this worked when: cue answers a test question

If something goes wrong

Nothing here can damage your computer, and every step can be run again safely. If a command fails, the usual cause is the step before it not having finished.

Still stuck? Tell us what happened and we will fix the guide. Include the step number and we can usually reproduce it.

Have a different setup?

This guide follows Blueturboguy07/cue at the reviewed version 90aa366. Pinning the version is why the commands here keep working after the project changes.

Back to cue