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

@artsnlabs/dotagents

v0.4.0

Published

Unified CLI for managing agent assets (prompts, skills, configs) from one home source across projects, local agents, and sync workflows.

Readme

dotagents

npm version npm downloads license CI

dotagents is a unified CLI for managing agent assets (prompts, skills, configs) from one home source across projects, local agents, and sync workflows.

Features

  • Create prompts and skills in a tracked home repo.
  • Optionally install newly created assets to project or configured global agent paths.
  • Add prompts and skills into the current project quickly.
  • Scan agent directories to find unsynced assets.
  • Sync skills using a registry-driven workflow.
  • Delegate skill package operations to the upstream skills CLI.

Requirements

  • Node.js 18+
  • npm
  • npx skills available for dotagents skill ... passthrough and sync flows

Install

npm i -g @artsnlabs/dotagents

Homebrew (tap):

brew tap moehaje/tap
brew install dotagents

Homebrew one-command install:

brew install moehaje/tap/dotagents

Without global install:

npx @artsnlabs/dotagents --help

Usage

dotagents --help
dotagents create prompt
dotagents add prompt release
dotagents edit prompt release
dotagents add skill terminal-ui
dotagents scan --sync
dotagents config
dotagents skill add vercel-labs/skills@find-skills
dotagents skill sync --check

Command Surface

dotagents create [prompt|skill] [name] [--kind <prompt|skill>] [--name <slug>] [--title <title>] [--description <text>] [--args <text>] [--content <text>|--content-file <path>|--content-stdin] [--home <path>] [--project|-p] [--global|-g] [--agent|-a <name>] [--force]
dotagents add [prompt|skill] [name] [--to <path>] [--agent|-a <codex|claude|agents>] [--all|--select <name,...>] [--home <path>] [--force]
dotagents edit [prompt|skill] [name] [--kind <prompt|skill>] [--name <slug>] [--file <relative/path>] [--inline] [--editor <cmd>] [--home <path>] [--project|-p] [--global|-g] [--agent|-a <name>]
dotagents scan [--home <path>] [--source <path> ...] [--json] [--sync|--sync-all|--sync-select <kind:id:path,...>] [--force]
dotagents config [--home <path> --editor <cmd> --codex <path> --claude <path> --agents <path>]
dotagents skill <skills-cli-args...>
dotagents skill sync [--check] [--yes] [--home <path>]

If dotagents add is run without kind or name in interactive mode, it prompts to select the asset kind and asset(s) from home. dotagents new is kept as a compatibility alias for dotagents create. Use create target flags to control where assets are written: -p (project), -g (global agent homes), -a codex|claude|agents. Combine -p and -a to target agent-local project directories (for example ./.codex or ./.claude). dotagents edit uses the same scope flags and defaults to home scope when no target flags are provided. dotagents edit skill defaults to SKILL.md; pass --file <relative/path> to edit another file in the skill directory. If dotagents edit runs without <name> in interactive mode, it shows a picker of assets found in the selected scope. Use --inline for in-terminal full-content replacement mode (or fallback when no editor can be launched). Use dotagents add --all or dotagents add --select ... to avoid interactive pickers when omitting <name>. Use dotagents scan --sync-all or dotagents scan --sync-select ... for non-interactive sync runs.

Home Repo Resolution

dotagents resolves the home repo in this order:

  1. --home <path>
  2. DOTAGENTS_HOME
  3. Global config (~/.config/dotagents/config.json, or $XDG_CONFIG_HOME/dotagents/config.json)
  4. Filesystem auto-detection for dotagents / dot-agents
  5. Fallback to ~/dotagents

On first run, dotagents bootstraps global config and initializes a home layout with:

  • prompts/
  • skills/
  • configs/skills-registry.tsv
  • scripts/

Project Health

Development

npm install
npm run format:check
npm run lint
npm run type-check
npm run test
npm run build

License

MIT