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 🙏

© 2025 – Pkg Stats / Ryan Hefner

agenthints

v0.2.1

Published

The registry for feeding hints to your AI software engineer.

Readme

Agent Hints

The registry for feeding hints to your AI software engineer.

License npm version

Table of Contents

What is Agent Hints?

Agent Hints is a registry for feeding hints to your AI software engineer. It provides a centralized collection of curated hints that help AI coding assistants understand your tools, frameworks, and project conventions.

Write hints once, deploy to 20+ AI tools.

Instead of manually maintaining separate configuration files for Claude, Cursor, Copilot, and other AI tools, Agent Hints lets you:

  • Browse and add hints from a curated registry
  • Automatically format hints for your specific AI agent
  • Keep hints in sync with registry updates
  • Easily switch between AI tools

Installation

# Install globally
npm install -g agenthints

# Or use with npx (no install required)
npx agenthints --help

You can also use pnpm or yarn:

pnpm add -g agenthints
yarn global add agenthints

Quick Start

Initialize a new project

agenthints init

This interactive wizard will:

  1. Ask you to select your AI agent
  2. Let you browse and select hints from the registry
  3. Automatically add the selected hints to your project

Add hints manually

# Add a single hint
agenthints add ultracite

# Add multiple hints
agenthints add ultracite firebase supabase

# Specify the target agent
agenthints add ultracite --agent claude

Remove hints

agenthints remove ultracite --agent claude

Commands

| Command | Description | |---------|-------------| | agenthints init | Interactive setup wizard for new projects | | agenthints add <hints...> | Add hints to your project | | agenthints remove <hints...> | Remove hints from your project | | agenthints list | List all available hints in the registry | | agenthints search <query> | Search for hints by name, description, or tags | | agenthints agents | Show all supported AI agents |

Common Options

| Option | Description | |--------|-------------| | -a, --agent <name> | Target AI agent (skips selection prompt) | | -y, --yes | Skip confirmation prompts | | --cwd <path> | Working directory (default: current directory) | | --json | Output results as JSON (for list and search) |

Examples

# List all hints
agenthints list

# List hints in a specific category
agenthints list --category code-quality

# Search for hints
agenthints search typescript

# Add hint with auto-confirm
agenthints add ultracite --agent claude --yes

Supported Agents

Agent Hints supports 20+ AI coding assistants across two modes:

Append Mode

These agents use a single file where all hints are appended:

| Agent | File | Description | |-------|------|-------------| | claude | CLAUDE.md | Anthropic Claude Code CLI | | copilot | AGENTS.md | GitHub Copilot | | codex | AGENTS.md | OpenAI Codex CLI | | google | GEMINI.md | Gemini CLI / Firebase Studio | | aider | CONVENTIONS.md | Aider CLI | | amp | AGENT.md | Sourcegraph AMP | | devin | AGENTS.md | Cognition Devin | | droid | AGENTS.md | Factory Droid CLI | | goose | .goosehints | Block's Codename Goose | | jules | AGENTS.md | Google Jules | | junie | AGENTS.md | JetBrains Junie | | opencode | AGENTS.md | OpenCode CLI | | replit | replit.md | Replit Agent | | warp | WARP.md | Warp terminal AI | | zed | AGENTS.md | Zed editor |

Per-Resource Mode

These agents create a separate file for each hint:

| Agent | Path Pattern | Description | |-------|--------------|-------------| | augment | .augment/rules/{hint}.md | Augment Code | | cline | .clinerules/{hint}.md | Cline VS Code extension | | cursor | .cursor/rules/{hint}.mdc | Cursor AI IDE | | kilo-code | .kilocode/rules/{hint}.md | Kilo Code | | kiro | .kiro/steering/{hint}.md | Kiro IDE | | open-hands | .openhands/skills/{hint}.md | OpenHands | | roo-code | .roo/rules/{hint}.md | Roo Code | | windsurf | .windsurf/rules/{hint}.md | Codeium's Windsurf IDE |

How It Works

Adding Hints

When you run agenthints add, the CLI:

  1. Fetches the hint content from the registry at agenthints.tech
  2. Transforms the content for your target agent (adding headers, frontmatter, etc.)
  3. For append mode agents: wraps the hint in section markers and appends to the target file
  4. For per-resource agents: creates a new file for each hint

Section Markers

For append mode agents, hints are wrapped in HTML comment markers:

<!-- agenthints:my-hint:start -->
[hint content]
<!-- agenthints:my-hint:end -->

This allows the CLI to:

  • Update hints when the registry changes
  • Remove specific hints without affecting others
  • Track which hints are installed

Removing Hints

When you run agenthints remove, the CLI locates the hint section and removes it cleanly, preserving the rest of your configuration file.

Contributing

We welcome contributions! See CONTRIBUTING.md for guidelines on:

  • Creating new hints
  • Adding support for new AI agents
  • General development

License

Apache-2.0


Built by Ben Sabic | agenthints.tech | GitHub