FyrxAIDrop-in AI Support Agent for Discord Bots
Add an AI-powered support agent to your own discord.js bot in minutes — configured entirely from Discord, no code edits, no environment variables.
Add an AI-powered support agent to your own discord.js bot in minutes — configured entirely from Discord, no code edits, no environment variables.
FyrxAI is a small library, not a hosted service — you install it into your own bot. Give it one or more documentation sites with /fyrxai wiki add and it crawls them, extracts keywords, and starts answering questions in your support channels automatically. No dataset to prepare by hand.
Point /fyrxai wiki add at a single page and it discovers the rest via llms.txt, sitemap.xml, or by following same-origin links.
Exact match, then fuzzy (typo-tolerant) match, then a local offline embedding model — no AI call spent figuring out what a question is about.
WaveSpeed, OpenRouter, Google AI Studio, or Claude Platform — pick one per server, configured with an ephemeral slash command reply.
Every channel, wiki, provider, and permission is set from Discord chat. Install the package and it ships with zero configuration files.
npm install github:FyrxLab/fyrx-ai// CommonJS
const setupFyrxAI = require('fyrxai');
setupFyrxAI(client);// ES modules
import setupFyrxAI from 'fyrxai';
setupFyrxAI(client);Continue to Configuration for the Discord-side setup.