This might be a dumb question, but if anyone here has used #botkit by #fedify : is there any way to host more than one bot without using different subdomains?

I'd like to self-host more than just my Ralsei bot and, as far as I know, an easy way to do it would be to use different subdomains for each one. However, right now I only have access to neofox.dedyn.io and no way to register/use other subdomains through my DDNS (and I'd like to keep using that for the time being)

From what I understood through the docs there might be a chance to achieve what I'm thinking about by using a custom Bot.fetch() method instead of passing the built-in one to Deno/Bun, but I'm not too sure, and that's why I'm asking here first 

规范了一下 @mybot 的逻辑流程,防止滥用和污染联邦宇宙时间线~
可以在https://bot.moe.pub 查看详细规则,网站只会显示unlisted帖子

  • 关注才能对话
  • 每人每小时限聊 5 次(可联系我实现无限)
  • 回复默认不公开
  • 只@不会消耗次数
  • #botkit #fedify #gemini #fediverse

    Did you know there's a community space for #Fedify, #Hollo, #BotKit, and other Fedify ecosystem projects?

    Whether you have questions, want to share what you're building, or just want to hang out with fellow fediverse developers—come join us!

    You're invited to talk on Matrix

    You're invited to talk on Matrix

    🔒 Security Release: BotKit 0.3.1

    We've released BotKit 0.3.1 with an important security fix.

    This update addresses CVE-2025-68475 (High severity, CVSS 7.5), a ReDoS vulnerability in Fedify's HTML parsing that could cause denial of service.

    If you're using BotKit 0.3.x, please upgrade to 0.3.1 as soon as possible.

    #BotKit #Fedify #ActivityPub #fediverse #security

    Release BotKit 0.3.1 · fedify-dev/botkit

    Released on December 20, 2025. Upgraded Fedify to 1.8.15, which includes a critical security fix CVE-2025-68475 that addresses a ReDoS (Regular Expression Denial of Service) vulnerability in HTML ...

    GitHub

    BotKitは、ActivityPubボットを作るためのTypeScriptフレームワークです。既存のMastodon/Misskeyボットとの違いは、ボット自体が独立したサーバーとして動作すること。プラットフォームのアカウントは不要です。

    文字数制限もなければ、APIレート制限に悩まされることもありません。

    bot.onMention = async (session, message) => { await message.reply(text`こんにちは、${message.actor}さん!`); };

    フェデレーション、HTTP Signatures、配送キューといったActivityPub周りの処理はFedifyがすべて引き受けます。ボットのロジックを書くだけです。

    DenoでもNode.jsでも動きます。

    https://botkit.fedify.dev/

    #BotKit #Fedify #ActivityPub #TypeScript #Deno #NodeJS

    BotKit by Fedify

    A framework for creating your ActivityPub bots

    BotKit은 ActivityPub 봇을 만드는 #TypeScript 프레임워크입니다. 일반적인 Mastodon/Misskey 봇과 다른 점은, 봇 자체가 독립된 서버로 돌아간다는 겁니다. 플랫폼 계정이 필요 없습니다.

    글자 수 제한도 없고, API 호출 제한에 시달릴 일도 없습니다.

    bot.onMention = async (session, message) => { await message.reply(text`안녕하세요, ${message.actor}님!`); };

    연합(federation), HTTP Signatures, 메시지 전달 같은 #ActivityPub 관련 처리는 Fedify가 알아서 해줍니다. 봇 로직만 짜면 되는 거죠.

    #Deno#Node.js 둘 다 지원합니다.

    https://botkit.fedify.dev/

    #BotKit #Fedify

    BotKit by Fedify

    A framework for creating your ActivityPub bots

    #BotKit is a #TypeScript framework for building #ActivityPub bots. The difference from typical Mastodon/Misskey bots? Your bot runs as its own independent server—no platform account needed.

    This means no character limits, no rate limiting headaches, no API restrictions.

    bot.onMention = async (session, message) => { await message.reply(text`Hi, ${message.actor}!`); };

    The ActivityPub stuff (federation, HTTP Signatures, delivery queues) is handled by #Fedify under the hood. You just write your bot logic.

    Works with both #Deno and #Node.js.

    https://botkit.fedify.dev/

    BotKit by Fedify

    A framework for creating your ActivityPub bots

    We're excited to announce the release of BotKit 0.3.0! This release marks a significant milestone as #BotKit now supports #Node.js alongside #Deno, making it accessible to a wider audience. The minimum required Node.js version is 22.0.0. This dual-runtime support means you can now choose your preferred #JavaScript runtime while building #ActivityPub #bots with the same powerful BotKit APIs.

    One of the most requested features has landed: poll support! You can now create interactive polls in your #bot messages, allowing followers to vote on questions with single or multiple-choice options. Polls are represented as ActivityPub Question objects with proper expiration times, and your bot can react to votes through the new onVote event handler. This feature enhances engagement possibilities and brings BotKit to feature parity with major #fediverse platforms like Mastodon and Misskey.

    // Create a poll with multiple choices await session.publish(text`What's your favorite programming language?`, { class: Question, poll: { multiple: true, // Allow multiple selections options: ["JavaScript", "TypeScript", "Python", "Rust"], endTime: Temporal.Now.instant().add({ hours: 24 }), }, }); // Handle votes bot.onVote = async (session, vote) => { console.log(`${vote.actor} voted for "${vote.option}"`); };

    The web frontend has been enhanced with a new followers page, thanks to the contribution from Hyeonseo Kim (@gaebalgom)! The /followers route now displays a paginated list of your bot's followers, and the follower count on the main profile page is now clickable, providing better visibility into your bot's audience. This improvement makes the web interface more complete and user-friendly.

    For developers looking for alternative storage backends, we've introduced the SqliteRepository through the new @fedify/botkit-sqlite package. This provides a production-ready SQLite-based storage solution with ACID compliance, write-ahead logging (WAL) for optimal performance, and proper indexing. Additionally, the new @fedify/botkit/repository module offers MemoryCachedRepository for adding an in-memory cache layer on top of any repository implementation, improving read performance for frequently accessed data.

    This release also includes an important security update: we've upgraded to #Fedify 1.8.8, ensuring your bots stay secure and compatible with the latest ActivityPub standards. The repository pattern has been expanded with new interfaces and types like RepositoryGetMessagesOptions, RepositoryGetFollowersOptions, and proper support for polls storage through the KvStoreRepositoryPrefixes.polls option, providing more flexibility for custom implementations.

    #fedidev

    🔒 Security Update for BotKit Users

    We've released #security patch versions BotKit 0.1.2 and 0.2.2 to address CVE-2025-54888, a security #vulnerability discovered in #Fedify. These updates incorporate the latest patched version of Fedify to ensure your bots remain secure.

    We strongly recommend all #BotKit users update to the latest patch version immediately. Thank you for keeping the #fediverse safe! 🛡️

    #fedidev