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

aiusd-nl-skill

v0.1.6

Published

AIUSD Natural Language Skill for OpenClaw

Readme

AIUSD Natural Language Skill

Chat with the AIUSD agent through natural language. Trade crypto, check balances, manage positions, stake, trade futures — all through conversation. The skill delegates to a backend AI agent that handles all domain knowledge and multi-step reasoning.

Install

Claude Code / Codex / Cursor

npx skills add galpha-ai/aiusd-nl-skill -y -g

OpenClaw

Drag & drop the .skill file into your OpenClaw chat, or:

openclaw skill install aiusd-nl-skill.skill

npm (global CLI)

npm install -g aiusd-nl-skill

This registers aiusd-nl globally so you can use aiusd-nl <command> directly.

Manual

git clone https://github.com/galpha-ai/aiusd-nl-skill.git
cd aiusd-nl-skill && npm install && npm run build

# Symlink to your agent:
# Claude Code:  ln -s $(pwd) ~/.claude/skills/aiusd-nl-skill
# Codex:        ln -s $(pwd) ~/.codex/skills/aiusd-nl-skill
# OpenClaw:     ln -s $(pwd) ~/.openclaw/skills/aiusd-nl-skill

Usage

Once installed, your AI agent will automatically invoke the skill when you ask about crypto. You can also use the CLI directly:

# Via npx (no global install needed)
npx aiusd-nl-skill send "What are my balances?"
npx aiusd-nl-skill login --browser

# Or via global install
aiusd-nl send "What are my balances?"
aiusd-nl login --browser

Authentication

On first use, the agent will prompt you to log in:

  1. Browser login — sign in with an existing AIUSD account
  2. Create new account — set up a fresh wallet automatically

To switch account: npx aiusd-nl-skill logout then npx aiusd-nl-skill login --browser.

What You Can Ask

| Domain | Examples | |--------|---------| | Spot Trading | "Buy $100 of SOL", "Sell all my ETH", "Swap TRUMP for USDC" | | Perpetual Futures | "Long ETH 10x", "Short BTC at $70k", "Close my position" | | Account & Balance | "What's my balance?", "Show my deposit addresses" | | Staking & Yield | "Stake 500 AIUSD", "Unstake my AIUSD" | | Market Data | "What tokens are trending?", "Show xStock prices" |

How It Works

  1. Send — user message is posted to the AIUSD backend agent
  2. Stream — agent response streams back via WebSocket
  3. Transactions — CLI automatically polls TX status and resumes the agent
  4. Multi-turn — session context is maintained for confirmation flows and follow-ups

Supported Platforms

| Platform | Install method | |----------|---------------| | Claude Code | npx skills add or symlink to ~/.claude/skills/ | | Codex | npx skills add or symlink to ~/.codex/skills/ | | Cursor | npx skills add or symlink to .cursor/skills/ | | OpenClaw | .skill file or symlink to ~/.openclaw/skills/ | | GitHub Copilot | Symlink to .github/skills/ |

Privacy & Security

  • Local auth: tokens stored locally on your device (~/.aiusd/)
  • Open source: skill code is transparent and auditable

Website: https://aiusd.ai | License: MIT