Community Manager

Managing a 93-Person Meetup Community From Telegram

-93% community management timeCommunication & Messaging5 min read

Key Takeaway

I run the Mr.Chief Paris meetup β€” 93 registrations, event management, polls, RSVPs, announcements, and follow-ups β€” entirely through a Telegram bot powered by Mr.Chief.

The Problem

Community management is a time vampire. You set up a meetup. People register. Then you need to: send confirmations, post reminders (3 days before, 1 day before, 2 hours before), run polls for topics, manage RSVPs, answer questions, handle last-minute changes, send follow-ups with slides and recordings, and keep the energy going between events.

For the Mr.Chief Paris meetup, we hit 93 registrations. That's 93 people who expect communication. And I'm not a community manager. I'm a founder running a venture studio with 31 AI agents and a portfolio to manage.

The traditional approach: Luma for registration, a separate Telegram group, manual announcements copy-pasted between platforms, and hoping I remember to send the reminder the day before. Spoiler: I didn't always remember.

The Solution

A Telegram group where Alfrawd serves as the community assistant. Not just a notification bot β€” an intelligent participant that handles polls, RSVPs, announcements, reminders, and Q&A. With requireMention enabled so it doesn't respond to every message, but instantly available when summoned.

The Process

The Telegram group configuration:

yamlShow code
# mrchief.yaml β€” community group config
channels:
  telegram:
    groups:
      - id: "mrchief_paris_meetup"
        name: "Mr.Chief Paris"
        requireMention: true        # Only respond when @mentioned
        capabilities:
          - inline_buttons
          - polls
          - reactions
        context: |
          This is the Mr.Chief Paris meetup community group.
          93 members. Monthly events about AI agents and automation.
          Be helpful, concise, and energetic. You represent the project.

The event lifecycle, fully automated:

yamlShow code
# Event announcement (scheduled 2 weeks before)
- name: meetup-announce
  schedule: "0 10 * * 1"  # Check every Monday for upcoming events
  task: |
    Check if there's a meetup in the next 2-3 weeks that hasn't been announced.
    If yes, post to the Mr.Chief Paris group:

    πŸŽ‰ Next Mr.Chief Paris Meetup!
    πŸ“… [Date] at [Time]
    πŸ“ [Venue]
    🎯 Topic: [Theme]

    [Inline buttons: "I'm coming βœ…" | "Maybe πŸ€”" | "Can't make it ❌"]

    Plus a Luma registration link for newcomers.

# Reminder sequence
- name: meetup-remind-3d
  trigger: "3 days before event"
  task: |
    Post reminder with current RSVP count:
    "πŸ“’ 3 days until Mr.Chief Paris! [X] people confirmed.
    Haven't RSVPd yet? Tap below."

- name: meetup-remind-1d
  trigger: "1 day before event"
  task: |
    Post final reminder with logistics:
    "⏰ Tomorrow! Here's everything you need:
    πŸ•– [Time] β€” doors open 15 min early
    πŸ“ [Address + Google Maps link]
    🎯 Agenda: [topics]
    See you there! πŸš€"

- name: meetup-followup
  trigger: "1 day after event"
  task: |
    Post follow-up:
    "Thanks to everyone who came last night! πŸ™Œ
    πŸ“Š [Attendance] people showed up
    πŸ“Ž Slides: [Drive link]
    πŸŽ₯ Recording: [link if available]

    [Poll: What topic for next time?]
    πŸ”Ή Advanced agent orchestration
    πŸ”Ή Building custom skills
    πŸ”Ή Live demo: multi-agent workflows
    πŸ”Ή Suggest your own (reply below)"

The topic polling system:

View details
# When triggered by @mention or scheduled
Alfrawd posts a native Telegram poll:

πŸ“Š What should we cover at the next meetup?

πŸ”Ή Multi-agent orchestration patterns
πŸ”Ή Building custom Mr.Chief skills
πŸ”Ή AI agents for sales & outreach
πŸ”Ή Live coding: agent from scratch
πŸ”Ή Panel: founders using agents in production

[Multiple choice, anonymous voting]

Handling Q&A in the group:

View details
Member: "@Alfrawd how do I install Mr.Chief on my Mac?"

Alfrawd: "Quick start:
npm install -g mrchief
mrchief init
mrchief gateway start

Full docs: docs.mrchief.com/quickstart
Hit me up if you get stuck on any step πŸ› οΈ"

The Results

MetricBefore (Manual)After (Agent)Delta
Time on community management3-4 hrs/event15 min/event-93%
Reminder messages sent on time~60%100%+67%
Post-event follow-up sent~40%100%+150%
RSVP trackingManual spreadsheetAutomatic inline-100% manual work
Topic polls conductedRarelyEvery eventConsistent
Member questions answeredHours delay<5 min-95% response time

The community feels more active and organized than when I was manually managing it. Because the bot is consistent. Reminders always go out on time. Follow-ups always happen. Polls always run. Consistency builds trust, and trust builds community.

Try It Yourself

  1. Create a Telegram group for your community
  2. Add your Mr.Chief bot with requireMention: true (critical for groups β€” otherwise it responds to everything)
  3. Set up the event lifecycle crons: announce β†’ remind β†’ follow-up
  4. Enable inline buttons for RSVPs and polls for topic selection
  5. Give the bot context about your community so its answers are on-brand

The requireMention setting is crucial. Without it, the bot would respond to every message in a 93-person group. With it, the bot is silent until someone directly asks for help. Best of both worlds.


93 people. Monthly events. One bot. The community runs itself β€” I just show up and present. Everything else is automated.

community managementTelegram botmeetup automationRSVP management

Want results like these?

Start free with your own AI team. No credit card required.

Managing a 93-Person Meetup Community From Telegram β€” Mr.Chief