npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

form-rag-js

v1.2.20

Published

One AI form. Any small business. Powered by Grok.

Readme

form-rag-js

One AI form. Any small business. Powered by Grok.


Install

npm install form-rag-js

Quick Start

import { FormRAG } from 'form-rag-js';
import { RealEstateProTemplate } from 'form-rag-js/templates/pro';

<FormRAG template={RealEstateProTemplate} apiKey={process.env.GROK_API_KEY} />

What You Get

| Feature | Details | |--------|--------| | Smart Form | Adapts fields based on input | | AI Chat | Full conversation with Grok | | Lead Export | Auto-downloads .json on submit | | Clean Output | No **, ###, or links — plain text | | Downloads | Per-message or full chat (.txt) |


Key Exports

| Export | Use | |------|-----| | <FormRAG /> | Drop-in React component | | constructPrompt() | Build RAG prompts manually | | UniversalSMBTemplate | Pick business → auto-form | | *Template | Ready-to-use SMB agents | | RealEstateProTemplate | Pro real estate with comps + export |


Pro Template: RealEstateProTemplate

import { RealEstateProTemplate } from 'form-rag-js/templates/pro';
  • Captures: Name, email, phone, ZIP, budget, timeline
  • Generates: Mini-CMA with live comps (/api/comps)
  • Exports: Jane_Doe_realestate_pro.json
  • Clean: No Markdown
  • Rules: Flags luxury, prioritizes ASAP

Build Your Own Template

// templates/coffee.js
export const CoffeeTemplate = {
  name: "Coffee Order",
  form: () => [/* fields */],
  prompt: (data) => `Order: ${data.drink}... Total: $${total}`,
  rules: { size: (v) => v === "large" ? "- Add pastry" : null },
  exportLead: (data, messages) => ({ lead: data, chat: messages })
};
import { CoffeeTemplate } from './templates/coffee.js';
<FormRAG template={CoffeeTemplate} apiKey="..." />

Included Templates

| Template | Best For | |--------|---------| | UniversalSMBTemplate | Pick any business | | LandscaperTemplate | Lawn care | | CleaningTemplate | Room pricing | | HandymanTemplate | Job estimates | | AutomotiveTemplate | Diagnostics | | RealEstateTemplate | Basic real estate | | RealEstateProTemplate | Pro real estate + comps + export |


Headless Mode

import { constructPrompt } from 'form-rag-js';
import { RealEstateProTemplate } from 'form-rag-js/templates/pro';

const prompt = constructPrompt(formData, RealEstateProTemplate);
// Use in serverless, email, etc.

Get API Key

https://console.x.aigrok-3-beta


form-rag-js © 2025 StudioVoice2FlyMIT License

Start with a template. End with a business engine.