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

@talocode/geolane

v0.1.1

Published

AI Search Visibility Intelligence API — GEO audit, AI crawler access, citation readiness, llms.txt, domain compare

Readme

GeoLane

AI Search Visibility Intelligence API — know if ChatGPT, Claude, Perplexity, and other AI systems can crawl and cite your site.

GeoLane is a Talocode product. Point it at a URL and get:

  • Composite GEO score + grade
  • AI crawler access matrix (GPTBot, ClaudeBot, PerplexityBot, Google-Extended, …)
  • Citation readiness (structure, schema, E-E-A-T, passage length)
  • llms.txt detect / score / ready-to-publish draft
  • Domain compare with winner + insights
  • Prioritized action plan

v0.1 — Deterministic intelligence engine (HTTP + heuristics). No headless browser. Hosted on Talocode Cloud at /v1/geolane/*.


Install

npm install @talocode/geolane
export TALOCODE_API_KEY=tc_...
# optional
export TALOCODE_BASE_URL=https://api.talocode.site

Quick start (SDK)

import { GeoLaneClient } from '@talocode/geolane'

const geo = new GeoLaneClient({ apiKey: process.env.TALOCODE_API_KEY })

const report = await geo.audit({ url: 'https://example.com' })
console.log(report.score, report.grade, report.actions)

const draft = await geo.llmsTxt({ url: 'https://example.com' })
console.log(draft.draft)

Methods

| Method | Credits | Description | |--------|---------|-------------| | health() | — | Health check | | pricing() | — | Credit pricing | | capabilities() | — | Schema + endpoints | | audit({ url }) | 40 | Full GEO audit | | crawlers({ url }) | 15 | AI crawler allow/block matrix | | llmsTxt({ url }) | 20 | Score + draft llms.txt | | citationReadiness({ url }) | 25 | Page citation score | | compare({ urlA, urlB }) | 50 | Domain comparison |

Talocode Cloud SDK

import { Talocode } from '@talocode/sdk'

const tc = new Talocode({ apiKey: process.env.TALOCODE_API_KEY })
const report = await tc.geolane.audit({ url: 'https://talocode.site' })

CLI

npx geolane audit --url https://example.com
npx geolane crawlers --url https://example.com
npx geolane llms-txt --url https://example.com
npx geolane citation --url https://example.com
npx geolane compare --a https://a.com --b https://b.com
npx geolane pricing
npx geolane capabilities

Local engine commands (audit/crawlers/etc.) fetch public URLs from your machine — no API key required for local analysis.


Local server

GEOLANE_ALLOW_LOCAL_UNAUTH=true pnpm dev
# http://0.0.0.0:3030

| Method | Path | Credits | |--------|------|---------| | GET | /health | — | | GET | /v1/geolane/health | — | | GET | /v1/geolane/pricing | — | | GET | /v1/geolane/capabilities | — | | POST | /v1/geolane/audit | 40 | | POST | /v1/geolane/crawlers | 15 | | POST | /v1/geolane/llms-txt | 20 | | POST | /v1/geolane/citation-readiness | 25 | | POST | /v1/geolane/compare | 50 |

With TALOCODE_API_KEY set, POST routes charge Talocode Cloud credits.


Library (offline engine)

import {
  analyzeCitationReadiness,
  parseRobotsForBot,
  generateLlmsTxt,
  scoreLlmsTxt,
} from '@talocode/geolane'

const citation = analyzeCitationReadiness(html, 'https://example.com')
const draft = generateLlmsTxt({
  domain: 'example.com',
  title: 'Example',
  description: 'Demo site',
  url: 'https://example.com',
})

MCP (Talocode Cloud)

When connected to Talocode MCP:

  • geolane_health / geolane_pricing / geolane_capabilities
  • geolane_audit · geolane_crawlers · geolane_llms_txt
  • geolane_citation_readiness · geolane_compare

Limitations (v0.1)

  • HTTP fetch only (no Playwright / JS rendering)
  • robots.txt root allow/disallow heuristic
  • Does not scrape live ChatGPT/Perplexity answer panels for citations

License

MIT

Support

Open-source Talocode products are built and maintained by Abdulmuiz Adeyemo.

Sponsor: https://github.com/sponsors/Abdulmuiz44