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

@jobmatchme/bee-slack

v0.1.5

Published

Slack adapter for Bee Gate and the Bee Dance protocol

Downloads

390

Readme

@jobmatchme/bee-slack

bee-slack is the Slack-facing adapter for the Bee Dance stack.

It accepts inbound Slack events, normalizes them into gateway turns, forwards them through @jobmatchme/bee-gate, and renders the resulting Bee Dance event stream back into Slack messages and thread updates.

What this package does

  • connects to Slack via Socket Mode
  • resolves inbound DMs and app mentions against a route configuration
  • downloads Slack file attachments into the gateway blob store
  • maps inbound Slack messages into the Bee Gate input model
  • renders streamed Bee Dance output back into Slack messages and artifacts

Design intent

The package is intentionally thin. It owns Slack-specific concerns:

  • Slack tokens and Socket Mode lifecycle
  • user and channel lookups
  • route matching
  • posting and updating Slack messages
  • uploading artifacts to Slack

It does not own protocol orchestration itself. That responsibility stays in @jobmatchme/bee-gate, which keeps the Slack adapter replaceable and easier to compare against other frontends.

Local development

For local manual testing, copy local.config.example.json to local.config.json, fill in your Slack tokens, and run:

npm run start:local

This starts a local NATS broker via Docker, starts the local fake backend, and then launches bee-slack against that local stack.

Publishing

The package is intended for public npm publication from GitHub Actions using npm Trusted Publishing via GitHub OIDC.

Container images are published to GHCR from GitHub Actions on version tags. The image entrypoint expects a mounted JSON config file and runs:

bee-slack /config/config.json

Container image

Build the container locally with:

docker build -t bee-slack:local .

Run it with a mounted config file:

docker run --rm \
  -v "$(pwd)/local.config.json:/config/config.json:ro" \
  bee-slack:local

Kubernetes

A reusable Helm chart is included under charts/bee-slack. The chart supports either:

  • mounting an existing Secret that contains config.json
  • creating the config Secret from values at install time

The chart mounts /workspace as an ephemeral emptyDir. That is enough for the local blob store used for Slack attachments and generated artifacts, but those files are intentionally not persisted across pod restarts or recreations.

Example values files for both secret-handling modes are included under:

Example install using an existing Secret:

helm upgrade --install bee-slack ./charts/bee-slack \
  --namespace ai-agents \
  --create-namespace \
  --set config.existingSecretName=bee-slack-config \
  --set image.repository=ghcr.io/jobmatchme/bee-slack \
  --set image.tag=0.1.4

The mounted config file must contain the same structure as local.config.example.json.

License

MIT