Research · WizSearch

Your personal Google in any AI chat.

WizSearch turns any body of knowledge into a shareable search URL. Drop that URL into Claude, GPT, Gemini — any AI — and it becomes an instant, queryable knowledge base. Built entirely by talking to Claude, over a two-day weekend.

The researcher

I'm Eugene Gordeev, founder of Labs — a venture studio building AI-native companies from first principles. You can find me on X as @egordeev. I build through conversation — chat is my entire stack. This project came together with exactly two tools:

Claude Opus 4.7 GitHub

Pure chat and a repository. That's it.

I have retinitis pigmentosa, type RP25 — a genetic condition that narrows the visual field. Working through voice and chat instead of IDEs, dashboards, and terminals isn't a workaround for me; it's the native mode. That a person with failing vision can build something this involved, by talking, is a real blessing of this moment in AI.

Everything on this page — the engine, three demos, the crawler, the 2,000+ item index — was built inside a two-day weekend sprint. Roughly 24 hours of actual work.

By design

Local & private

Runs fully on your machine. Your index, your corpus, your queries — none of it leaves the browser. Works with sensitive data that should never touch a cloud.

Zero server compute

Everything happens in the browser. The index is static JSON, the search is plain JavaScript. Entirely client-side, from first query to last.

Free to run

GitHub Pages hosts it for free, forever. Free to host, free to query, free to scale.

Static-hostable

GitHub Pages, S3, Cloudflare Pages, even IPFS. If it serves files, it serves WizSearch. Upload the folder and you're live.

Drag-and-drop setup

If you can upload a zip to GitHub, you can run this. A GitHub account is the entire prerequisite; the whole install is drag-and-drop.

Built in chat with Claude

The crawler, the index, the engine, and this page — all written by talking to Claude in a browser tab. Chat is the entire build environment.

Any file type

Text, PDF, Markdown, HTML, code, scraped web pages, transcripts. If the crawler can read it, the index can hold it.

Enriches while indexing

Metadata extraction, structure inference, content cleanup — all during the crawl. The index holds more than the source files.

Humans, agents, and LLMs

One interface serves all three. People browse, agents query programmatically, LLMs ingest the JSON directly.

Any LLM

Claude, GPT, Gemini, Llama, Mistral, your own fine-tune — all consume the same index. Switch models whenever you like; the index stays put.

One-URL install

Paste the search URL into any AI chat — Claude, GPT, Gemini — and the model has a live knowledge base, instantly.

RAG-ready

Use it as a retrieval layer to augment any LLM with your own corpus. Point, query, inject — the URL itself is the retrieval layer.

What it is

WizSearch turns a body of text into a fast, semantic search engine that lives on a static web page. The whole architecture is a JSON index and a little JavaScript, running in the browser. Each demo points the same engine at a different corpus.

How it works

Every demo accepts a ?q= parameter. Append a query to any demo URL and it loads with that search already run. Example: demo3/?q=github opens the page and immediately shows matches for github. That makes results shareable — drop a link, the other person sees what you saw.

The design has a second, more interesting property: drop any of these URLs into any AI — Claude, GPT, Gemini — and it will work with the collected index. The page is static, the index is public JSON, and the search is deterministic. An AI that fetches the page gets a knowledge base on the spot.


Three demos

01

Anthropic Agent Skills

762 chunks · 10 topics · official

The foundation. Indexes Anthropic's own Agent Skills documentation — the canonical, first-party source. This is the corpus that proved the pattern worked, and every later demo is built on what this one taught.

02

Warren Buffett · Berkshire Letters

49 letters · 1977–2025

Same engine, different corpus. Forty-nine years of Buffett's annual letters indexed as one searchable body. Ask about moats, float, capital allocation, mistakes — you get the exact passages, across every year.

03

The evolving Claude skills index

most advanced version · 2,305 chunks · 2,045 skills · 67 sources · 75 topics · community-curated

The furthest-along version of WizSearch. Indexes the full Claude ecosystem — every official Anthropic skill, MCP reference servers, and the 2,000+ community servers from awesome-mcp-servers — in a single shardable corpus. Built so Claude itself can validate: given a task, search here and decide which skill or MCP fits. Grows with the community.

Architectural features coming in v3:

Archive coming soon. The downloadable package for v3 is still being prepared for release. Right now you can test the full engine against the live community-skills index in the demo.

Run it yourself

Drop an archive into a new Claude chat and start working. That's the whole setup. The archives below contain the engine, a sample index, and the crawler. Claude reads them, you ask questions, you ship.

wiz.zip

Original engine archive. Smallest, cleanest version.

Download

wiz2.zip

Current engine archive. Use this one by default.

Download

wizcrawler.zip

The crawler. You start with a short onboarding conversation in any LLM — Claude, Grok, Gemini, ChatGPT — and the crawler produces a curated list of sources, file formats, and scraping strategies. That list then feeds the index-building process.

Download