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

@seoagent/core

v0.1.5

Published

Core library for SEOAgent — keyword research, rank tracking, site audits, competitor analysis, backlink intelligence, and AI-powered SEO strategy

Downloads

640

Readme

@seoagent/core

Core library for SEOAgent — the open-source, agent-first SEO toolkit.

All business logic lives here. The CLI, MCP server, and dashboard are thin wrappers over this package.

Install

npm install @seoagent/core

Requires Node.js >= 20.

What's inside

| Module | Description | |--------|-------------| | auditCrawl | Crawl a site up to 50k pages via sitemap + BFS | | auditPage | Audit a single URL for SEO issues | | auditReport | Aggregate crawl results into a scored report | | keywordResearch | Search volumes, difficulty, CPC via DataForSEO | | keywordSuggestions | Related keyword suggestions from a seed | | rankTrackAdd | Add keywords to rank tracking | | rankTrackCheck | Fetch current SERP positions | | rankTrackReport | Movers, gainers, losers since last check | | competitorKeywords | Keywords a competitor ranks for | | contentGaps | Keywords competitors rank for that you don't | | domainReputation | DR score, backlinks, referring domains | | backlinkProfile | Full backlink profile for a domain | | backlinkOpportunities | Link building targets from competitor backlinks | | strategyGenerate | AI-powered or rule-based SEO strategy | | strategyRefresh | Re-run strategy with latest data | | gscSync | Sync Google Search Console data | | gscPerformance | Clicks, impressions, CTR, position | | gscQueries | Top queries from GSC | | gscPages | Top pages from GSC | | openDatabase | Open per-project SQLite database | | loadConfig / saveConfig | Read/write ~/.seoagent/config.json |

Usage

import { openDatabase, auditCrawl, auditReport, strategyGenerate } from '@seoagent/core'

const db = openDatabase('~/.seoagent/projects/mysite/seoagent.db')

// Crawl the site
await auditCrawl('mysite.com', db, { maxPages: 1000 })

// Get a report
const report = auditReport(db)
console.log(report.score, report.issues)

// Generate strategy
const strategy = await strategyGenerate(db, { provider: 'anthropic', apiKey: '...' })
console.log(strategy.actions)

Data sources

  • Free: Google Search Console, local crawler
  • Paid: DataForSEO (~$0.001/query) for keyword volumes, SERP data, backlinks
  • Derived: content gaps, rank deltas, audit scores, strategy

Updating

npm install @seoagent/core@latest

Links

License

MIT