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

@metalagman/aida-darwin-arm64

v2.0.1

Published

@metalagman/aida binary for darwin/arm64

Downloads

31

Readme

aida

Go Report Card lint test version license

aida logo

Turn popular CLI agents into a one-shot shell command runner.

aida (айда) works with Codex, OpenCode, Gemini, Copilot, and Claude Code to generate terminal commands, then runs them with confirm mode by default so you stay in control.

Quickstart

npm install -g @metalagman/aida
aida init
aida -- list the largest files in this repo

aida init writes ~/.config/aida/config.yaml with detected ACP providers, matching provider-named profiles, and a full commented reference block for ACP, pool, and API-backed provider shapes.

If aida init does not detect a supported ACP runtime in PATH, edit ~/.config/aida/config.yaml before your first command and choose a provider through aida.provider or a profile.

Runtime Options

ACP-compatible CLIs are the preferred runtime path. If codex, opencode, gemini, copilot, claudecode, or claude is already available in PATH, aida init will detect it and write a working provider entry and profile for you.

If you want to use an API-backed provider instead, edit ~/.config/aida/config.yaml after aida init and configure one of these provider types:

  • openai
  • aistudio

API key setup:

  • Gemini API keys: https://aistudio.google.com/api-keys
  • OpenAI API keys: https://platform.openai.com/api-keys

Installation

Install from npm:

npm install -g @metalagman/aida

Or install a release binary:

curl -L -o /usr/local/bin/aida https://github.com/metalagman/aida/releases/latest/download/aida-linux-amd64
chmod +x /usr/local/bin/aida

macOS (Apple Silicon):

curl -L -o /usr/local/bin/aida https://github.com/metalagman/aida/releases/latest/download/aida-darwin-arm64
chmod +x /usr/local/bin/aida

Linux (arm64):

curl -L -o /usr/local/bin/aida https://github.com/metalagman/aida/releases/latest/download/aida-linux-arm64
chmod +x /usr/local/bin/aida

See the latest release artifacts at: https://github.com/metalagman/aida/releases/latest

Usage

Generate and run a command:

aida -- find all files in current directory and change end lines from crlf to lf

Execution modes:

  • confirm (default): show the generated command and ask before running it
  • --yolo: print Running: ... and execute immediately
  • --quiet: execute silently
  • --dry-run: print the generated command without executing it

Examples:

aida --yolo -- list files
aida --quiet -- show git status
aida --dry-run -- find large files
aida --profile opencode -- list the largest files in this repo
aida --profile codex --model gpt-5.3-codex -- list merged branches

Useful flags:

  • --profile: select a named profile from config
  • --model: override the selected provider model for one invocation
  • --shell: override the shell used to execute the generated command

Config

Config lives at ~/.config/aida/config.yaml.

aida init is the normal starting point:

aida init

To rewrite an existing config:

aida init --force

The config format is relay-style YAML with top-level runtime, aida, and profiles.

By default, aida init writes only detected ACP providers into the live runtime.providers section and creates a matching profile for each detected provider. The generated file also includes a commented reference block for ACP, pool, and API-backed provider shapes that you can copy from when editing the config manually.

Minimal ACP example:

runtime:
  providers:
    codex:
      type: codex_acp
      codex_acp:
        model: gpt-5.3-codex
aida:
  provider: codex
  mode: confirm
  shell: /bin/sh
profiles:
  default:
    aida:
      provider: codex
  codex:
    aida:
      provider: codex

Minimal API-backed example:

runtime:
  providers:
    openai:
      type: openai
      openai:
        api_key: ${OPENAI_API_KEY}
        model: gpt-4o-mini
aida:
  provider: openai
  mode: confirm
  shell: /bin/sh

You can also put a literal API key in YAML, but environment expansion is the better default for local secrets.

Profile example:

profiles:
  opencode:
    aida:
      provider: opencode

Environment values can also override the YAML file. The most useful ones are:

  • AIDA_PROFILE
  • AIDA_MODE
  • AIDA_SHELL

Contributing

Source builds, tests, linting, integration test tags, and release workflow notes live in CONTRIBUTING.md.

License

MIT License. See LICENSE.