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

@parkerlabs/dent

v0.1.4

Published

Dent CLI and AI-agent skill installer for schema-driven Dent API operations.

Downloads

764

Readme

Dent CLI + Agent Skill

Give your AI agent hands on your Dent site.

Dent is the funnel platform for people serious about ads. It spins up marketing websites that sell and deliver digital products — courses, downloads, subscriptions — through funnels, with first-party revenue attribution built in from the first visit. Dent is designed to be driven from the AI client you already use: your agent builds funnels, writes copy, configures offers, and reads your numbers through Dent's schema-driven API.

@parkerlabs/dent is how you connect that agent. It ships one executable, dent, plus a compiled skill for Claude Code, Codex, and Claude web that teaches your agent how to operate Dent well.

Install

Paste this into your AI agent (Claude Code, Codex, or similar):

Install the Dent CLI and agent skill: run `npm install -g @parkerlabs/dent`,
then `dent install`, then `dent login` and hand me the browser link so I can
sign in and authorize. If loopback can't reach you, use `dent login --copy-code`.

That's it. The agent installs the skill, and the browser login means it never sees a token — you sign in and click Authorize yourself.

Manual setup (no AI)

If you'd rather your agent never touch setup or credentials:

npm install -g @parkerlabs/dent
dent install
dent login                  # browser OAuth; no token to handle

To keep a personal access token out of any AI context entirely:

dent login --site-url https://example.com --token-prompt   # hidden interactive prompt
echo "$DENT_PERSONAL_ACCESS_TOKEN" | dent login --stdin    # automation

Credentials are stored outside project directories, in your operating-system user config directory (for example ~/Library/Application Support/dent/config.json on macOS), written with mode 0600. No token ever goes in argv.

What your agent can do

Once installed, ask your agent things like:

  • "Build a funnel for my new course with an opt-in page, sales page, and upsell."
  • "Write the sales page copy for my $49 offer and publish it."
  • "How did my funnels perform last month? Where am I leaking?"
  • "Enroll this contact in the course and tag them."
  • "Draft three SEO articles for the blog."

The skill reads Dent's schema catalog live, so entities, actions, and parameters always match your site instead of a hardcoded list.

Useful commands

dent whoami                 # who you're logged in as
dent schema                 # list every entity your site exposes
dent schema contacts        # actions and parameters for one entity
dent api contacts           # list contacts
dent api contacts 123       # read one
dent api contacts --data '{"email":"[email protected]"}'   # create
dent check                  # is the installed skill current?
dent update                 # update the installed skill
dent logout                 # remove the stored credential

Prefer not to install globally? npx @parkerlabs/dent@latest <command> works for every command, but leaves no dent on your PATH.

More

Full CLI reference, credential storage details, local development, and build docs live in Claude.md.