The missing services for agent-first development
The Agent First website describes the company’s search and browsing products.
The site is developed using Node.js 22.x (due to Amazon Linux 2023 availability), Yarn, React, Chakra UI, and Vite. Follow the steps below to run the site on Amazon Linux or macOS.
sudo yum update -y
sudo yum install -y git
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.3/install.sh | bash
cd
. .nvm/nvm.sh
nvm install --lts
sudo curl https://dl.yarnpkg.com/rpm/yarn.repo -o /etc/yum.repos.d/yarn.repo
sudo yum install -y yarn/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
cd
echo -e '\neval "$(/opt/homebrew/bin/brew shellenv)"' >> .zprofile
source .zprofile
brew install node@22 yarn supabase/tap/supabase
echo 'export PATH="/opt/homebrew/opt/node@22/bin:$PATH"' >> .zshrc
source .zshrcgit clone https://github.com/agentfirstdev/www
cd www
yarnyarn devyarn buildyarn previewsupabase init
supabase login
supabase secrets set STRIPE_PRIVATE_KEY=[your Stripe publishable key]
supabase secrets set STRIPE_SIGNING_SECRET=[your Stripe webhook secret]
supabase functions deploy init-checkout
supabase functions deploy complete-checkout
supabase functions deploy verify-checkoutCopyright 2025– Agent First Dev, LLC.
This program is free software, excluding the brand features and third-party portions of the program identified in the Exceptions below: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
The Agent First logos, trademarks, domain names, and other brand features used in this program cannot be reused without permission and no license is granted thereto.
Further, these third-party portions of the program and any use thereof are subject to their own licensing terms:

