Guide
Build your first AI agent in Rails.
Fifteen minutes from Gemfile to a live agent. Same path as the docs getting started guide — add the gem, install, restart, open /agents, then build with Kip.
1. Add the gem
# Gemfile
gem "rails-agent-stack", github: "Tiny-Bubble-Company/rails-agents"2. Install
bundle install
bin/rails generate rails_agents:install3. Restart → /agents
bin/dev
# → http://localhost:3000/agents
# Sign up, then chat with Kip to build your first agent4. Agent DSL (or let Kip write it)
class Concierge < RailsAgents::Base
model :auto
instructions "You are a helpful concierge for a Rails SaaS."
end5. Test → Deploy
bundle exec rails-agents run concierge "Hello"
bundle exec rails-agents deploy concierge