
SYS.PROJECTS
Rifle Configurator: Free AR-15 and Gun Builder
Free firearm builder with a parts compatibility engine, 45 tools, and an AI assistant. 1.2 million visitors in 11 months, now nearly 400,000 a month.
Why Building a Rifle Online Was Broken
Parts compatibility is the whole problem. A handguard, a muzzle device, and a red dot can each be great and still not work together, and most sites leave you to find that out after the order ships.
I've been shooting for over ten years and I've built more than ten AR-pattern rifles. Rifle Configurator started as a personal project, and it turned out a lot of other shooters wanted the same thing.
How the Compatibility Engine Works
Every part carries tags for mounting footprint, thread pitch, caliber, and platform family, and the builder filters out anything that doesn't match the host firearm in real time.
The catalog is plain TypeScript data in the repo, not a database. That sounds primitive, but it means a compatibility rule change is a code review, not a migration, and the same data feeds the builder, the guides, and the search index. It covers AR-15, AR-10, AK, handguns, PCCs, bolt-action rifles, and shotguns, with 4,182 firearms and accessories as of September 2026.
The AI Layer
The site has an AI assistant that answers build and fitment questions against the curated catalog, using RAG (retrieval-augmented generation, where the model only answers from documents it looked up first).
The catalog and guides are embedded with OpenAI's text-embedding-3-small into a prebuilt vector index, and the assistant streams answers through the Vercel AI SDK. If the model is down, it falls back to scripted answers instead of an error, because a builder that breaks when OpenAI hiccups is not a builder.
Behind the scenes there's also an internal MCP server, which lets AI agents query the catalog, check compatibility, and pull recommendations as tool calls. If MCP is new to you, my guide to MCP servers explains it. That server is what makes the content pipeline fast: an agent writing a buying guide can check whether a part actually fits before it recommends it.
How It Got to 400,000 Visitors a Month
Organic search did it. Monthly visitors went from 42,443 in March 2026 to 369,169 in August 2026, and the site passed 1.2 million visitors in its first 11 months.
The strategy is tools plus content. Pure content sites are easy to copy. An interactive builder with 45 free tools (ballistics, recoil, a red dot fit checker, a shot timer annotator) gives people a reason to come back, and every guide links into it. Keyword research, SERP analysis, structured data, and FAQ markup run through scripts, the same SEO tooling I later ported to this site. The build template pages (complete builds with live prices and swap suggestions) are the part competitors can't clone cheaply, because they sit on top of the compatibility data.
I also use it as a test bed for my other products. I built Dream Pixel Forge partly because the site needs product images of gear that most image models have never seen, which I wrote about in the Seattle Tech Week demo post.
Rifle Configurator in the News
USA News profiled Rifle Configurator on September 15, 2026, and Soldier Systems Daily ran our 1.2 million visitor announcement on September 17, 2026.
The USA News piece, "The Firearms Industry Has a Compatibility Problem. Rifle Configurator Wants to Solve It," frames it as a software and data problem, not a media one, and compares the builder to the configurators people already use for cars and PCs. It walks through the fit checkers, the ballistics and training tools, and the post-purchase tools like the shooting logbook and parts inventory. It also quotes me on the AI side: "We are not trying to build another chatbot."
The Soldier Systems Daily post is our press release with the full numbers: 1,223,561 visitors since launch, 391,084 visitors and 576,299 pageviews in the trailing month, and the Rifle Build Index, which ranks parts from 95,228 organic component selections across 25,798 anonymized builder sessions.
What I'd Do Differently
Honestly, not much. Most things worked and scaled well. There are three things I'd change.
First, I'd build the email list earlier. Search traffic can disappear with one algorithm update, and an email list is an audience you own. The newsletter now reaches more than 3,300 subscribers, and I wish I had started collecting emails sooner.
Second, I'd structure the data properly from the start. The compatibility engine, the build templates, and the AI assistant all depend on clean, structured catalog data, so every shortcut there costs you later.
Third, I'd prepare my wallet for the Vercel bills. Hosting cost grows with traffic, and 400,000 visitors a month is not free.
The full story of the agents, the SEO, and the buying guides is in how I vibe coded a site to 1 million+ visitors. If you're building something similar, compare this with Handheld Finder, a smaller picker I built for gaming handhelds, or go try the builder at rifleconfigurator.com.
FREQUENTLY ASKED QUESTIONS
What is Rifle Configurator?
Rifle Configurator is a free online firearm builder at rifleconfigurator.com for AR-15, AR-10, AK, handgun, PCC, bolt-action, and shotgun builds. A compatibility engine filters out parts that won't fit your platform, and every part links to retailer pricing.
Is Rifle Configurator free to use?
Yes. The builder, the 45 tools, and the AI assistant are free with no account required. The site earns money through retailer affiliate links and its own merch, not through subscriptions.
How much traffic does Rifle Configurator get?
Rifle Configurator passed 1.2 million visitors in its first 11 months, with 391,084 visitors in the 30 days before September 12, 2026. Monthly visitors grew from 42,443 in March 2026 to 369,169 in August 2026, mostly from Google organic search.
Has Rifle Configurator been in the news?
Yes. USA News published a profile of Rifle Configurator on September 15, 2026, titled "The Firearms Industry Has a Compatibility Problem. Rifle Configurator Wants to Solve It." Soldier Systems Daily published its 1.2 million visitor press release on September 17, 2026.
Who built Rifle Configurator?
Aditya Bawankule, a Seattle software engineer and former Meta engineer, founded and built Rifle Configurator. He runs its content and SEO pipeline with his own AI tooling, including a RAG assistant and an internal MCP server.

