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

@akka-bot/sdk

v0.1.3

Published

Akka WhatsApp Command Platform SDK — build commands for the Akka marketplace

Readme

@akka-bot/sdk

Akka WhatsApp Command Platform SDK — build commands for the Akka marketplace.

Installation

npm install @akka-bot/sdk
# or
bun add @akka-bot/sdk

Quick Start

Create a GitHub repository with your command code, then export a command definition as the default export:

import { command } from "@akka/sdk";

export default command({
  name: "Echo",
  description: "Echoes back your message",
  usage: ".echo [text]",
  async handle(ctx) {
    await ctx.send(ctx.args.join(" ") || "Hello from Akka!");
  }
});

Then register your repository in the Akka Developer Portal.

API

command(definition)

Validates a CommandDefinition and returns it. Throws if required fields are missing.

| Field | Type | Required | Description | |---|---|---|---| | name | string | ✅ | Display name in marketplace | | description | string | ✅ | Short description | | usage | string | ✅ | Usage example, e.g. .echo [text] | | handle | (ctx: CommandContext) => Promise<void> | ✅ | The command handler |

CommandContext

Injected into handle(ctx) at execution time:

| Method / Property | Signature | Description | |---|---|---| | send | (text: string) => Promise<void> | Send a WhatsApp message | | react | (emoji: string) => Promise<void> | React to the user's message | | schedule | (duration: string, cb: () => Promise<void>) => Promise<void> | Schedule delayed execution | | fetch | (url: string, opts?: RequestInit) => Promise<Response> | HTTP request | | userId | string (readonly) | Anonymized user ID | | args | string[] (readonly) | Parsed arguments | | message | string (readonly) | Full message text | | contactId | number (readonly) | Internal contact ID |

Duration format for schedule()

| Example | Meaning | |---|---| | "30s" | 30 seconds | | "10m" | 10 minutes | | "2h" | 2 hours | | "1d" | 1 day |

Examples

Weather Command

import { command } from "@akka/sdk";

export default command({
  name: "Weather",
  description: "Get current weather for any city",
  usage: ".weather [city]",
  async handle(ctx) {
    const city = ctx.args[0] ?? "London";
    const res = await ctx.fetch(`https://wttr.in/${city}?format=%C+%t`);
    const text = await res.text();
    await ctx.send(`🌤 ${city}: ${text}`);
  },
});

Reminder Command

import { command } from "@akka/sdk";

export default command({
  name: "Remind Me",
  description: "Set a reminder with natural durations",
  usage: ".remind me 10m check email",
  async handle(ctx) {
    const [duration, ...rest] = ctx.args;
    const message = rest.join(" ");

    await ctx.schedule(duration, async () => {
      await ctx.send(`⏰ Reminder: ${message}`);
    });
    await ctx.send(`✅ I'll remind you in ${duration}`);
  },
});

Publishing to the Marketplace

  1. Push your command code to a public GitHub repository.
  2. Each command module must have a default export created with command().
  3. Register your repository in the Akka Developer Portal.
  4. Akka will clone your repo, validate the command, and list it in the marketplace.

License

MIT