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

@ohing504/agentfiles

v0.2.0

Published

AI agent configuration file manager and community platform

Downloads

15

Readme

agentfiles

MIT License Node.js

A local GUI for discovering, understanding, and managing your AI agent workflows.

Run npx agentfiles to open a web-based dashboard on localhost that manages ~/.claude/, ~/.codex/, and project-level agent configs in one place.

한국어

Why

AI coding agents like Claude Code rely on config files — CLAUDE.md, Skills, Hooks, MCP servers, Plugins. You compose these to build your own dev workflow.

The problem:

  1. Hard to manage — Config files are scattered across multiple paths. Global vs project scope relationships aren't visible at a glance.
  2. Hard to understand — You install a Plugin or Skill, but figuring out what it actually does means reading long markdown files.
  3. Hard to discover — Skills, MCP servers, and Plugins live in different places with no unified search.

agentfiles solves all three:

  • Visibility — See all your config files and what they do at a glance
  • Management — Manage Skills, MCP, Plugins, and Hooks from a GUI
  • Understanding — AI explains your workflow in your preferred language (v1 planned)

Features

  • Dashboard — Board-style overview of all configs with scope grouping
  • CLAUDE.md Editor — Edit global and project-scoped CLAUDE.md files
  • Hooks Editor — 17 events, 3 hook types, built-in templates
  • Skills Manager — Markdown preview/source toggle, frontmatter badges
  • Plugin Manager — Enable/disable toggles
  • MCP Servers — Add/remove/enable management
  • Settings — Global/Project settings.json editor
  • i18n — English/Korean (Paraglide)

Quick Start

npx agentfiles

Opens automatically in Chrome app mode on localhost.

Development

Prerequisites

  • Node.js 20+
  • pnpm

Setup

pnpm install
pnpm dev          # Dev server at localhost:4747

Commands

pnpm build        # Production build
pnpm test         # Run tests
pnpm lint         # Biome lint
pnpm typecheck    # TypeScript type check

Tech Stack

  • Framework: TanStack Start (Vinxi/Nitro fullstack)
  • Frontend: React 19, TanStack Query, shadcn/ui, Tailwind CSS v4
  • Backend: Server Functions, Node.js
  • Language: TypeScript (strict)
  • Testing: Vitest
  • Linting: Biome

Architecture

Browser (React SSR) → Server Functions → File System
                                       → Claude CLI (MCP/Plugin)
  • Read: ConfigService parses markdown/JSON files directly
  • Write: FileWriter saves markdown, delegates MCP/Plugin ops to Claude CLI
  • Data sync: React Query polling

Project Structure

src/
  routes/          # File-based routing
  features/        # Feature modules (dashboard, hooks-editor, skills-editor, etc.)
  services/        # Server-side services (ConfigService, HooksService, etc.)
  server/          # Server Functions
  components/      # Shared UI components
  hooks/           # React hooks
  lib/             # Utilities
  shared/          # Shared types

messages/          # i18n messages (en/ko)
bin/               # CLI entry point
tests/             # Tests

Security

  • Binds to 127.0.0.1 only (localhost)
  • Bearer token authentication
  • No CORS (local app)
  • Path traversal prevention

License

MIT