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

@ferrypost/agent-skills

v0.1.0

Published

Pre-built agent skills for the Ferry Post messaging API

Readme

@ferrypost/agent-skills

Pre-built agent skills for the Ferry Post messaging API.

Each skill is a self-contained async function that orchestrates one or more API calls to accomplish a high-level task. Designed for use in AI agent pipelines, chatbots, and automation workflows.

Installation

npm install @ferrypost/agent-skills

Quick start

import { PlatformClient, broadcast, healthCheck } from '@ferrypost/agent-skills';

const client = new PlatformClient({
  baseUrl: 'https://ferrypost.com',
  apiKey: 'msgk_live_...',
});

// Check platform health
const report = await healthCheck(client);
console.log(report);

// Broadcast a message to multiple recipients
const result = await broadcast(client, {
  from: 'pn_123',
  channel: 'imessage',
  recipients: ['+15551234567', '+15559876543'],
  content: { text: 'Hello everyone!' },
});

Available skills

| Skill | Description | |---|---| | autoReply | Respond to inbound messages based on configurable rules | | broadcast | Send a message to multiple recipients with per-recipient status tracking | | conversationSummary | Generate a digest of recent conversation activity | | optOutReport | Generate opt-out compliance reports | | healthCheck | Check platform and phone number health | | scheduledCampaign | Create scheduled message campaigns across multiple recipients | | listScheduled | List scheduled messages with filtering | | cancelScheduledBatch | Cancel multiple scheduled messages at once | | createWebhook | Create a webhook subscription | | listWebhooks | List webhook subscriptions | | updateWebhook | Update a webhook subscription | | deleteWebhook | Delete a webhook subscription | | testWebhook | Send a test event to a webhook | | setupAndTestWebhook | Create a webhook and send a test event in one call | | createGroup | Create a group conversation | | updateConversation | Update conversation metadata | | modifyParticipants | Add or remove participants from a group | | getConversationHistory | Fetch conversation messages with pagination | | editMessage | Edit a sent message | | unsendMessage | Unsend (retract) a message | | addReaction | Add a reaction to a message | | removeReaction | Remove a reaction from a message | | getEditHistory | Get the edit history of a message | | getMessageDetails | Get full message details including reactions | | searchMessages | Search messages by text or semantic query | | findConversations | Find conversations matching criteria | | getConversationWithMessages | Get a conversation with its recent messages | | searchAndGroupByConversation | Search messages and group results by conversation | | sendMediaMessage | Send a message with a media attachment from a URL | | getMediaInfo | Get metadata for a media attachment | | startTelegramAuth | Start the Telegram account authentication flow | | verifyTelegramCode | Submit the verification code for Telegram auth | | submitTelegram2FA | Submit the 2FA password for Telegram auth | | setupTelegramAccount | Full Telegram account setup (auth + verify + optional 2FA) | | listTelegramAccounts | List connected Telegram accounts | | getTelegramAccount | Get details of a Telegram account | | checkTelegramHealth | Check the health of a Telegram connection | | disconnectTelegramAccount | Disconnect a Telegram account |

PlatformClient

All skills require a PlatformClient instance. The client is a lightweight HTTP wrapper around the Ferry Post API.

import { PlatformClient } from '@ferrypost/agent-skills';

const client = new PlatformClient({
  baseUrl: 'https://ferrypost.com',
  apiKey: 'msgk_live_...',
});

Documentation

Full API documentation is available at docs.ferrypost.com.

License

MIT