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-akira

v0.2.10

Published

Agent Akira — a CLI agent with embedded Signal messaging bridge

Readme

Akira

A rebuilt Claude Code CLI with an embedded Signal messaging bridge.

TypeScript Node.js npm


What is Akira?

Akira is a CLI agent built on top of the Claude Code source. It adds an embedded Signal messaging bridge so you can interact with Claude from your phone via Signal — send a message, get a response, all routed through the same REPL that handles file editing, shell commands, git workflows, and MCP integration.

Install

npm install -g agent-akira

Requires Node.js 22+.

Usage

akira

Runs with --dangerously-skip-permissions by default (bypass all tool approval prompts).

Signal Bridge

Akira embeds a Signal messaging bridge that auto-connects on startup when configured.

Setup:

  1. Run /signal-link inside Akira to start the Docker container and link your phone
  2. Scan the QR code with Signal
  3. Set the allowed sender with /signal-sender

How it works:

  • Signal message arrives via WebSocket
  • Message is enqueued into the REPL message queue
  • Claude processes it like any other prompt
  • Response is sent back to you via Signal REST API

Requirements: Docker with bbernhard/signal-cli-rest-api:latest on port 8084.

Tech Stack

| Component | Technology | |---|---| | Language | TypeScript (strict mode, ES modules) | | Build | esbuild → single dist/cli.mjs bundle | | Runtime | Node.js 22+ | | Terminal UI | React + Ink | | CLI Parser | Commander.js | | API Client | Anthropic SDK | | Validation | Zod v4 | | Protocol | Model Context Protocol (MCP) | | Messaging | Signal via signal-cli-rest-api Docker |

Project Structure

src/
├── commands/       # ~50 slash commands (/commit, /review, /signal-link, etc.)
├── tools/          # ~40 agent tools (Bash, FileRead, FileWrite, Glob, Grep, etc.)
├── components/     # Ink/React terminal UI components
├── services/       # External integrations (API, OAuth, MCP, Signal bridge)
│   └── signal/     # Signal messaging bridge
├── screens/        # Full-screen UIs (REPL, Doctor, Resume)
├── skills/         # Bundled skills + skill loader
├── tasks/          # Task management
├── memdir/         # Persistent memory system
├── hooks/          # React hooks
├── utils/          # Utilities (shell, file ops, permissions, git)
└── main.tsx        # CLI entry point

Deployment

Versions are controlled by commit message keywords:

| Keyword | Bump | Example | |---|---|---| | #patch | 0.1.x | Bug fixes | | #minor | 0.x.0 | New features | | #major | x.0.0 | Breaking changes |

Push to main with a keyword to trigger the publish workflow. See docs/deployment.md for details.

Development

bun install
bun run build       # → dist/cli.mjs
./akira             # run locally