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

@gosniffy/aso-knowledge

v0.3.0

Published

MCP server for curated App Store Optimization best practices. Three tools: list topics, get a topic's primary-source citation, and look up the best topic match for free-form text. No payment, no wallet — pure knowledge.

Downloads

475

Readme

@gosniffy/aso-knowledge

Curated App Store Optimization best practices as an MCP server. Pure knowledge — no wallet, no payment, no network.

@gosniffy/aso-knowledge is the standalone-knowledge surface for Sniffy. It pairs with @gosniffy/mcp (paid ASO diagnoses over x402) but ships independently so agents can ground their ASO recommendations in primary-source citations without configuring a wallet.

Install

npm i -g @gosniffy/aso-knowledge

Or use npx:

npx -y @gosniffy/aso-knowledge

MCP config (Claude Desktop / Cursor)

{
  "mcpServers": {
    "sniffy-aso-knowledge": {
      "command": "npx",
      "args": ["-y", "@gosniffy/aso-knowledge"]
    }
  }
}

No env vars required — knowledge is free.

Tools

| Tool | Args | Returns | |---|---|---| | aso_knowledge_list_topics | none | Every curated topic with its summary and primary-source citation. Use to ground a new ASO conversation. | | aso_knowledge_get_topic | { topic } | Full curated entry for a specific topic key, or topic_not_found when the key is unknown. | | aso_knowledge_lookup | { text } | Best-fit topic for free-form text (a question, a metadata field, recommendation prose) or { match: null } when nothing fits. |

What's in the corpus

Twelve topics across the canonical ASO surface:

  • Title — keyword weight, 30-char cap
  • Subtitle — distinct keywords (don't repeat title)
  • Keyword field (iOS) — comma-no-space format, no redundant terms
  • Description — iOS not indexed for search, Android indexed
  • Screenshots — captions are indexed by Apple's semantic search
  • Localization — per-storefront metadata
  • Ratings — ranking signal weight
  • Promotional text — refreshable without App Review
  • Match granularity — exact-phrase > scattered tokens

Every entry cites a primary source: Apple Human Interface Guidelines, Apple Search Ads docs, App Store Connect Help, Play Store Help, or the App Store Review Guidelines. Summaries paraphrase the source — never verbatim quotes. Third-party blogs and competing tool-vendor docs are explicitly excluded.

The corpus carries a stable ASO_KNOWLEDGE_VERSION fingerprint that bumps any time topics, summaries, or sources change.

TypeScript surface

import {
  ASO_KNOWLEDGE_BASE,
  ASO_KNOWLEDGE_VERSION,
  inferKnowledgeTopic,
  getKnowledgeByTopic,
  listKnowledgeTopics,
  type KnowledgeEntry,
} from "@gosniffy/aso-knowledge";

Relationship to @gosniffy/mcp

@gosniffy/mcp returns paid ASO diagnoses; each recommendations[] item it emits already carries an optional knowledge citation drawn from this same corpus. This package gives agents the same citation library to query outside a diagnose call — for prep work, post-hoc explanations, or knowledge-only chats where no wallet is configured.

The two packages share their canonical data source (see the dual source-of-truth note at the top of src/data.ts). They are independently installable.

License

MIT.