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

agent-profile

v0.3.5

Published

Local-first AI Agent Profile Compiler CLI.

Readme

agent-profile

Preview local-first AI Agent Profile Compiler for Codex, Claude, and Tabnine.

agent-profile creates one canonical ai-profile.yaml in your repository and compiles it into deterministic agent-specific configuration files. It is for developers who want consistent AI coding-agent instructions without copying the same policy across separate tool configs.

Preview Status

This package is in preview / early access. [email protected] is usable for experimentation, but the schema, generated files, and command details may change before 1.0.

Feedback is welcome at:

  • https://github.com/jsuvic/agent-profile/discussions
  • https://github.com/jsuvic/agent-profile/issues

Quick Start

Requirements: Node.js 24+ and npm 11+.

From your project root:

npx agent-profile init --write
npx agent-profile compile --dry-run
npx agent-profile compile --write
npx agent-profile doctor
npx agent-profile ui

What It Solves

AI coding agents need overlapping project context: conventions, safety rules, allowed workflows, target-specific settings, and reminders not to expose source or secrets. Maintaining that context by hand across AGENTS.md, CLAUDE.md, Codex config, Tabnine guidance, and MCP settings causes drift.

agent-profile makes ai-profile.yaml the source of truth and treats agent-specific files as generated artifacts.

Commands

init

Creates a starting ai-profile.yaml from local repository signals.

npx agent-profile init --dry-run
npx agent-profile init --write

init detects supported stack metadata such as languages, frameworks, package managers, and test tools from a small allowlist of root metadata files (package.json, tsconfig.json, svelte.config.*, vite.config.*, playwright.config.*, pom.xml, build.gradle, build.gradle.kts, and pubspec.yaml for Flutter/Dart). It does not read .env files or upload source code. If no supported language metadata exists yet, init refuses to write because schema v1 requires stack.languages; create ai-profile.yaml manually for documentation-only or currently unsupported project stacks.

compile

Turns ai-profile.yaml into target-specific files.

npx agent-profile compile --dry-run
npx agent-profile compile --write

Dry-run is the safe preview path. --write applies generated files locally.

doctor

Checks profile structure, lockfile drift, generated artifacts, permissions, and security hygiene.

npx agent-profile doctor

ui

Starts the read-only local UI for the current project.

npx agent-profile ui
npx agent-profile ui --root /path/to/project --port 5174

The UI binds to loopback only and reads project state from the selected root. Browser writes are not enabled.

Current Targets

  • Tabnine guidelines and MCP config
  • Codex project config and workflow skills
  • Claude project config, CLAUDE.md, and workflow skills

Local-First Contract

  • No source-code upload
  • No secret upload
  • No hosted execution
  • No telemetry by default
  • Generated files are deterministic
  • Write-capable commands use explicit --write
  • Runtime permissions are enforced by target agent clients