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

koishi-plugin-without-assignee

v0.1.1

Published

禁用 Koishi 的 assignee 机制,允许同一频道内的多个机器人同时响应无前缀指令

Readme

koishi-plugin-without-assignee

npm

功能说明

禁用 Koishi 的 assignee 机制,允许同一频道内的多个机器人同时响应无前缀指令。

什么是 assignee 机制?

默认情况下,当同一平台的同一频道内有多个机器人时,Koishi 会启用 assignee 机制:

  • 只允许被分配的机器人(assignee)响应无前缀指令
  • 其他机器人需要通过 @机器人 指令 的方式调用
  • Koishi 会在数据库的 channel 表中记录 assignee 字段

插件作用

启用此插件后:

  • 所有机器人都可以响应无前缀指令
  • 不会修改数据库中的 assignee 值
  • 仅在运行时临时绕过 assignee 检查

技术原理

插件通过监听 attach-channel 事件,在 Koishi 执行 assignee 检查之前,临时修改 session.channel.assignee 的值为当前机器人的 selfId,从而绕过检查。

许可证

MIT License