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-ctrl-cli

v0.5.0

Published

A centralized CLI tool for managing AI agent configurations with standard directory-based patterns.

Downloads

355

Readme

agent-ctrl header image

agent-ctrl

License: GPL v3 NPM Downloads GitHub stars GitHub forks GitHub contributors GitHub issues Buy Me A Coffee

A centralized CLI tool for managing AI agent configurations using a standard directory-based configuration pattern. Define agent behavior through rules, skills, agents, commands, and MCP servers in a structured, shareable way that works across multiple AI platforms.

Download: NPM Release GitHub release

Supported platforms: Antigravity Claude Code Codex Cursor Gemini KiloCode OpenCode QwenCode Windsurf

Core Techs: Bun TypeScript


🚀 Quick Start

Installation

# Install from npm (global)
npm install -g agent-ctrl-cli

# Run CLI
agent-ctrl --help

Basic Usage

# 1. Initialize the global configuration structure (default: ~/.agent-ctrl)
agent-ctrl init

# 2. Search and add a skill from SkillsMP marketplace
agent-ctrl skill search code-review
agent-ctrl skill add skillsmp:code-review

# 3. Apply your configuration to a supported platform
agent-ctrl apply claude

🛠 Usage & Commands

agent-ctrl provides a comprehensive suite of commands to manage your AI agent's artifacts.

Global Configuration

  • init [path] - Initialize the global configuration structure (default: ~/.agent-ctrl).
  • apply <platform> - Sync local artifacts to a platform's native configuration.

Artifact Management

Rules (rules/)

Modular behavioral guidelines in Markdown.

  • agent-ctrl rule ls - List all rules.

Skills (skills/)

Capabilities following the SKILL.md standard.

  • agent-ctrl skill ls - List installed skills.
  • agent-ctrl skill add <id> - Install a skill (supports skillsmp:<id>).
  • agent-ctrl skill search <query> - Search for skills on SkillsMP.
  • agent-ctrl skill sync - Synchronize skills catalog.
  • agent-ctrl skill update <id> - Update an installed skill.
  • agent-ctrl skill rm <id> - Remove a skill.

Commands (commands/)

Grouped command prompts or scripts (mapped to skills for Codex).

  • agent-ctrl command ls - List available commands.

Agents (agents/)

Agent personas and identity definitions.

  • agent-ctrl agent ls - List agent personas.

MCP Configuration (mcps/)

  • agent-ctrl mcp ls - List configured MCP servers.
  • agent-ctrl mcp add <id> - Add an MCP server (supports smithery:<id>).
  • agent-ctrl mcp search <query> - Search for MCP servers on Smithery.
  • agent-ctrl mcp sync - Synchronize MCP servers catalog.
  • agent-ctrl mcp update <id> - Update a configured MCP server.
  • agent-ctrl mcp rm <id> - Remove an MCP server.

📂 Project Structure

agent-ctrl enforces a Convention over Configuration pattern. The directory structure IS your agent's configuration.

~/.agent-ctrl/              # Global configuration root (default)
├── rules/                  # Modular behavioral rules (Markdown)
│   ├── coding-style.md
│   └── security.md
├── skills/                 # Capabilities (SKILL.md standard)
│   └── git-workflow/
│       └── SKILL.md
├── commands/               # Command prompts (Markdown/Scripts)
│   ├── dev/
│   │   └── fix-lint.md
│   └── explain.md
├── agents/                 # Agent personas
│   └── architect.md
├── mcps/                   # MCP server configurations
│   └── filesystem/
│       └── MCP.json
└── .env                    # Optional API credentials for catalog access

Note: You can also use project-scoped configuration by placing .agent-ctrl/ in your project directory.


🛠 Development

Prerequisites: Bun (latest LTS), TypeScript 5.0+

# Clone and install
git clone https://github.com/ahmet-cetinkaya/agent-ctrl.git
cd agent-ctrl
bun install

# Common tasks
bun run dev          # Run in development mode
bun run build        # Build to dist/
bun test             # Run tests

For detailed development workflows, see Development.


📚 Documentation

For detailed documentation, see docs/README.md.


📄 License

This project is licensed under the GNU General Public License v3.0 - see the LICENSE file for details.