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

@hasna/alumia

v0.1.1

Published

Installable terminal CLI and MCP server for Alumia.

Downloads

261

Readme

Alumia CLI

Installable terminal agent and MCP server for Alumia.

bun install -g @hasna/alumia
alumia login --device
alumia login --device --base-url http://spark01:3325 # local development
alumia login --profile local --api-key "$ALUMIA_API_KEY" --base-url http://spark01:3325 --org "$ALUMIA_ORG"
alumia
alumia exec "Summarize my latest project"
alumia export project <project-id> --out ./alumia-project --format filesystem
alumia import ./alumia-project
alumia mcp install --target codex
alumia mcp --stdio

The default alumia command starts device-login onboarding against https://alumia.com when no profile is configured, then enters the OpenTUI terminal agent after browser approval. Use --base-url or ALUMIA_BASE_URL for local development servers. Non-TTY shells fall back to line mode once configured. alumia exec is intended for scripts and CI. alumia config list/use/set/delete manages named local profiles. alumia import validates or restores local exports. alumia mcp --stdio exposes Alumia tools to MCP clients over stdio using the same API client and credentials.

Commands

| Command | Purpose | | --- | --- | | alumia | Start the terminal agent. Uses OpenTUI in an interactive TTY and line mode for pipes/scripts. | | alumia help / alumia --help | Show command help. | | alumia version / alumia --version | Print the package version. | | alumia login | Save API-key, email/password, or device-login credentials. Supports --profile, --base-url, --org, --workspace/--workspace-id. | | alumia logout | Remove credentials from the selected profile. | | alumia config ... / alumia profiles | Inspect, switch, update, or delete local profiles. config set supports base-url, org, workspace-id, agent, project, model, api-key, and access-token. | | alumia whoami | Print the authenticated user/org. | | alumia doctor | Probe health, identity, agents, and models. | | alumia agents / projects / sessions / models | List app resources. | | alumia exec "prompt" | Run one agent turn; use --json for scripts. | | alumia export ... | Write project/session/artifact/dataset/files exports as JSON, Markdown, filesystem, or zip. | | alumia import ... / restore ... | Validate or apply supported local exports. | | alumia api METHOD /path | Call an authenticated /api/v1 endpoint, optionally with --body or --body-file. | | alumia mcp | List configured Alumia MCP servers. | | alumia mcp --stdio | Run the stdio MCP server. | | alumia mcp install / mcp doctor | Install or inspect local Codex/Claude/Gemini MCP config. |