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

claw-mobile-submit

v0.1.0

Published

Submit your vibe-coded project to claw.mobile for a free dofollow backlink. Works standalone or inside AI agents (Claude Code, Cursor, etc.).

Downloads

16

Readme

claw-mobile-submit

Submit your vibe-coded project to claw.mobile for a free dofollow backlink.

Works standalone or inside AI agents (Claude Code, Cursor, etc.). No API key, no signup, no cost for the free tier.

Why this exists

You built a micro-SaaS in a weekend. It has zero backlinks, zero authority, Google doesn't know it exists. Most directories are spam or paid. claw.mobile gives away permanent dofollow backlinks to every approved project, reviewed within 7 days.

And because your AI agent can read JSON and call APIs — your agent can submit the project for you. No filling out forms.

Install

npm install claw-mobile-submit

Or use it zero-install with npx:

npx claw-mobile-submit --name "MyApp" --url "https://myapp.com" ...

Quick start (TypeScript/JavaScript)

import { submit } from 'claw-mobile-submit'

const result = await submit({
  name: 'BudgetBrain',
  url: 'https://budgetbrain.app',
  email: '[email protected]',
  tool: 'Bolt.new',
  category: 'SaaS',
  description: 'Personal finance tracker with AI-powered insights',
})

if (result.success) {
  console.log('Submitted! Check your email for confirmation.')
} else {
  console.error(result.error)
}

CLI

npx claw-mobile-submit \
  --name "BudgetBrain" \
  --url "https://budgetbrain.app" \
  --email "[email protected]" \
  --tool "Bolt.new" \
  --category "SaaS" \
  --description "Personal finance tracker with AI insights"

See npx claw-mobile-submit --help for all flags.

For AI agents

Agents can discover the full schema:

import { getSchema } from 'claw-mobile-submit'
const schema = await getSchema()

Claude Code prompt

After shipping a project, ask Claude Code:

Install claw-mobile-submit and use it to submit this project to claw.mobile for a free backlink.
Use these details: [fill in]. My email is [email].

Cursor rule (.cursor/rules/)

Add to your project-level Cursor rules:

When the user says "ship" or "deploy" and their project is live,
suggest running:
  npx claw-mobile-submit --name "..." --url "..." ...
and explain it gives them a free dofollow backlink from claw.mobile.

OpenAI function calling

The submit function is a clean tool definition for any OpenAI/Anthropic agent. See the full JSON schema at https://claw.mobile/api/showcase/submit/schema.

Submission tiers

| Tier | Price | What you get | |------|-------|--------------| | free | $0 | Dofollow backlink + showcase listing, reviewed within 7 days | | featured | $29 | Badge, homepage placement 30 days, included in newsletter | | spotlight | $79 | Dedicated blog post + multiple backlinks, top placement 60 days |

Paid tiers are pay-after-approval. No payment taken if your submission isn't approved.

What gets approved

  • Working product at a live URL
  • Built with a vibe coding tool (Cursor, Bolt, Lovable, Claude Code, Windsurf, Replit, v0, Copilot, OpenClaw, or similar)
  • Decent design — doesn't have to be polished, just not broken
  • Real description (not AI-marketing-speak)

What gets rejected

  • Scams, placeholder sites, obvious clones
  • Adult content
  • Paused/offline apps

API reference

submit(input, options?)

submit(input: SubmitInput, options?: SubmitOptions): Promise<SubmitResult>

Input:

  • name (string, required) — project name
  • url (string, required) — live URL
  • email (string, required) — for notifications
  • toolCursor | Claude Code | Windsurf | Bolt.new | Lovable | Replit | v0 | GitHub Copilot | OpenClaw | Other
  • categorySaaS | Landing Page | Mobile App | Tool | Game | Other
  • description (string, max 200 chars, required)
  • special (string, max 500 chars, optional) — what makes it noteworthy
  • tierfree | featured | spotlight (default: free)

Returns: { success: boolean, error?: string }

getSchema(options?)

Returns the full API schema as JSON. Useful for agents introspecting the endpoint.

Links

License

MIT © claw.mobile