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

devfactory-cli

v1.0.3

Published

CLI officiel de DevFactory pour installer des agents Genius localement

Readme

🚀 DevFactory CLI

npm version license npm downloads

The CLI companion for your Genius AI agents. Search, install, and manage your agent templates and custom skills directly inside your local Claude Code projects.


✨ Features

  • ⚡ Fast Installation: Installs AI agents and custom skills locally into .claude/ in seconds.
  • 🔍 Catalog Search: Instantly browse public or private agents directly from the command line.
  • 🔐 Secure Authentication: Integrated OAuth Device Flow (browser login) or secure API token storage using your system's native keychain.
  • 📦 On-The-Fly Execution: No global installation required—run instantly with npx.

📥 Installation

You can run commands directly using npx (recommended):

npx devfactory-cli <command>

Or install it globally on your system:

npm install -g devfactory-cli

Once installed, you can use the short and clean keyword devfactory directly in your terminal.


🚀 Quick Start

1. Authenticate with the Registry

Log in to your DevFactory account securely using the interactive OAuth Device Flow:

devfactory login

Alternatively, you can pass your API key directly:

devfactory login gns_your_api_key

2. Search for AI Agents

Browse the Open Agent Registry catalog for useful agent templates:

devfactory search "rust developer"

3. Install an Agent

Install a specific agent template and its associated skills into your local project workspace:

devfactory add rust-expert-agent

This automatically downloads, configures, and unpacks the agent files into your .claude/ directory, ready to be used by Claude Code.


🛠️ Command Reference

| Command | Description | Example | | :--------------- | :----------------------------------------------------------------- | :-------------------------- | | login [key] | Authenticates with the registry (OAuth or manual token) | devfactory login | | whoami | Displays active user session, API key name, and permissions | devfactory whoami | | search [query] | Searches the agent registry catalog | devfactory search scraper | | info <slug> | Shows detailed description, author, stats, and README for an agent | devfactory info ceo-agent | | add <slug> | Installs the agent template and its skills locally | devfactory add ceo-agent | | list | Lists all installed agents in the current project | devfactory list | | logout | Clears all stored credentials and credentials cache | devfactory logout |


🤝 Integration with Claude Code

The DevFactory CLI installs agents and skills matching the official structure:

your-project/
└── .claude/
    ├── agent.md         # The main active agent prompt
    └── skills/          # Custom skills and tool definitions

Once you run devfactory add <slug>, Claude Code will automatically detect the new agent guidelines and custom skills next time it boots up in your workspace.


© 2026 DevFactory — The Open Agent Registry Ecosystem.