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

@akta/dao-cli

v0.1.2

Published

Read-only CLI and TUI for querying Akita DAO state on Algorand

Readme

Akita DAO CLI

A read-only CLI and interactive TUI for exploring Akita DAO on-chain state on Algorand. Query DAO configuration, fees, proposals, wallet plugins, and more — all from your terminal.

Install

One-liner (installs Bun if needed):

curl -fsSL https://raw.githubusercontent.com/akita-protocol/dao-cli/main/install.sh | bash

Or with npm / bun:

npx @akta/dao-cli
bun add -g @akta/dao-cli

Interactive TUI

Running akita-dao with no arguments launches a full-screen interactive dashboard. Navigate with keyboard shortcuts to explore every aspect of the DAO.

| Key | Action | |-----|--------| | Tab / Shift+Tab | Switch tabs | | [ ] | Cycle items (proposals, accounts) | | k j | Scroll | | PgUp PgDn | Scroll fast | | g / G | Jump to top / bottom | | r | Refresh data | | q | Quit |

DAO Tab

Full DAO overview — core settings, asset supply bars, registered app IDs, proposal settings with participation/approval thresholds, and a revenue split chart.

Fees Tab

All fee parameters across Wallet, Social, Staking, Subscription, NFT, and Swap categories displayed side-by-side.

Wallet Tab

DAO wallet state, escrow accounts with balances, installed plugins with method restrictions, named plugin aliases, spending allowances, and execution keys.

Proposals Tab

Browse and inspect governance proposals. Each proposal shows its status, vote counts, and fully decoded actions — including field updates, plugin changes, and app registrations.

CLI Commands

Every view in the TUI is also available as a standalone command for scripting and CI use.

Global Options

| Flag | Description | Default | |------|-------------|---------| | -n, --network <network> | mainnet, testnet, or localnet | mainnet | | -j, --json | Output as JSON | off |

DAO

akita-dao info                        # quick dashboard
akita-dao state                       # full decoded global state

Proposals

akita-dao proposals list              # all proposals, newest first
akita-dao proposals list -s active    # draft + voting only
akita-dao proposals list -s past      # rejected, approved, executed
akita-dao proposals list -l 5         # limit results
akita-dao proposals get 117           # detailed view with decoded actions

Wallet

akita-dao wallet info                 # wallet global state
akita-dao wallet plugins              # installed plugins
akita-dao wallet named-plugins        # plugin aliases
akita-dao wallet escrows              # escrow accounts
akita-dao wallet allowances           # spending allowances
akita-dao wallet executions           # execution keys
akita-dao wallet balance              # ALGO, AKTA, BONES balances
akita-dao wallet balance 31566704     # specific asset
akita-dao wallet balance -e rec_gov   # escrow balance

JSON Output

Add --json to any command for machine-readable output. BigInts are serialized as strings, byte arrays as hex.

akita-dao --json state
akita-dao --json proposals list -l 10

Network Switching

akita-dao -n testnet info
akita-dao -n testnet proposals list

Development

git clone https://github.com/akita-protocol/dao-cli.git
cd dao-cli
bun install
bun run src/index.ts

Uses @akta/sdk from npm — installed automatically with bun install.

License

MIT