Skip to content

UserGeneratedLLC/iris-install

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Iris

AI-powered tools for Roblox Studio

Install

macOS / Linux:

curl -fsSL https://raw.githubusercontent.com/UserGeneratedLLC/iris-install/master/install.sh | bash

Windows (PowerShell):

Set-ExecutionPolicy Bypass -Scope Process -Force; irm https://raw.githubusercontent.com/UserGeneratedLLC/iris-install/master/install.ps1 | iex

The installer handles everything -- git, Node.js, GitHub authentication, and Iris itself. Just follow the prompts.

What the installer does

  1. Installs git if you don't have it
  2. Installs Node.js if you don't have it (version 18 or newer)
  3. Connects your GitHub account -- opens your browser so you can authorize Iris (no tokens to copy-paste)
  4. Installs Iris globally so you can use it from any terminal

The installer is safe to run again -- it skips anything already set up.


Updating

iris update

Or manually:

npm update -g @usergeneratedllc/iris

Manual Installation

If you prefer not to use the one-liner, follow these steps manually.

1. Install prerequisites

macOS:

brew install git node

Windows (PowerShell):

winget install --id Git.Git -e --accept-source-agreements --accept-package-agreements
winget install --id OpenJS.NodeJS.LTS -e --accept-source-agreements --accept-package-agreements

Linux (Debian / Ubuntu):

sudo apt update && sudo apt install -y git
curl -fsSL https://deb.nodesource.com/setup_lts.x | sudo -E bash -
sudo apt install -y nodejs

Linux (Fedora / RHEL):

sudo dnf install -y git
curl -fsSL https://rpm.nodesource.com/setup_lts.x | sudo -E bash -
sudo dnf install -y nodejs

Linux (Arch):

sudo pacman -Sy --noconfirm git nodejs npm

2. Configure npm for GitHub Packages

Go to github.com/settings/tokens/new, select read:packages, and generate a token. Then run:

npm config set @usergeneratedllc:registry https://npm.pkg.github.com
npm config set //npm.pkg.github.com/:_authToken YOUR_TOKEN

Replace YOUR_TOKEN with the token you just created.

3. Install Iris

npm install -g @usergeneratedllc/iris

License

Copyright (c) 2025 UserGenerated LLC. All rights reserved. See LICENSE.txt.

About

Installer for Iris

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors