Automate your Facebook group
Running a Facebook group means keeping up with comments faster than one person can. A bot can read the new comments, draft a reply with AI, and help you respond, so your community does not wait. This is for engaging your own followers, not spamming strangers. There are three ways to start, with no code, with code, or with a Claude skill.
What I mean by automating a Facebook group
Automating a Facebook group means a bot helps with the repetitive parts of running a community. It reads the latest comments, pulls out what people are asking, drafts a reply with AI, and posts it once you are happy. It is the same engaging you would do by hand, sped up, so a growing group does not outpace you. It is not about reaching people who never asked to hear from you.
The honest version of Facebook automation
Most of what gets called Facebook automation is spam. Fake likes, mass friend requests, bots posting into groups they have no business in. That gets accounts banned, and it should. Facebook also restricts automated interaction in its terms, so any tool you use here has to be used with care.
The version that holds up is narrow. You run your own group or page. You engage the people who already followed you. A bot helps you keep pace with comments, drafting replies you review, at a speed a person could manage. That is the line axiom is built to stay on, and it is the only version of this worth doing.
Who this is for
This is for the person running a Facebook group or page who cannot keep up with the comments. A community manager, a creator, a small team answering the same questions over and over. You want to reply to your own followers faster, not blast strangers. No-coders and coders both, since you can build it without code and drop into code when you want.
How I'd approach it
Keep a person in the loop. Have the bot read new comments and draft replies, then look them over before they go out, at least until you trust the drafts. Start with one kind of comment, like a common question, and let the bot handle just that. Run it at a human pace, not hundreds of replies a minute.
Engage your own people, review the drafts, go slow. That is what keeps the account safe and the replies real. I would lay out the first draft with Build with description.
Reply to your group from a description
Describe how you reply in plain words in the Chrome extension and it builds the steps for you. Give it a few short lines, check what it made, and run it. Explore no-code.
To the right is an example. Describe how you reply and the AI lays out the steps. Review the drafts before you trust it to post.
Chrome extensionInstructions
- Go to the group page20 / 500
- Scrape the latest comment25 / 500
- Draft a reply with AI from the comment38 / 500
- Click the comment to reply26 / 500
- Enter the reply in the text field33 / 500
- Press the key to post it24 / 500
Reply to your group in code
Build with code. If you would rather script it yourself, this is the path. Explore code
Connect Playwright (or Puppeteer) to our cloud Chromium and write the same scripts you'd run locally, without managing the browser.
Code toolimport { chromium } from "playwright";
import { draftReply } from "./ai"; // your own AI call
const browser = await chromium.connectOverCDP(
`wss://cdp-lb.axiom.ai/?token=${process.env.AXIOM_API_KEY}`
);
try {
const context = browser.contexts()[0];
const page = context.pages()[0] ?? await context.newPage();
await page.goto("https://www.facebook.com/groups/your-group");
// Read the latest comment
const comment = await page.locator(".comment").first().innerText();
// Draft a reply with your own AI, then review before it posts
const reply = await draftReply(comment);
// Open the reply box, type, and post
await page.getByRole("button", { name: "Reply" }).first().click();
await page.getByRole("textbox", { name: "Write a reply" }).fill(reply);
await page.keyboard.press("Enter");
} finally {
await browser.close();
}
Build with a Claude skill
Build no-code or code bots with a skill.
Add the Claude skill and describe how you engage your group. It builds the bot for you, no-code or code, reading comments and drafting replies for you to review.

What can you automate?
Helping you keep up with your own community. A couple of lines to stay on the right side of.
Works well
- Reading new comments in your group
- Drafting replies with AI
- Answering the same common questions
- Flagging comments that need you
- Pulling comments into a sheet to review
Harder
- Telling apart questions, spam, and noise
- Keeping replies in your own voice
- Facebook's checks on automated activity
Don't try
- Posting into groups you do not run
- Mass friend requests or fake likes
- Auto-replying to strangers at scale
What I'd watch out for
Facebook is strict about automation, so this is the page to read carefully. Here is what I would watch for.
Facebook restricts automation
Facebook's terms limit automated interaction. Engaging your own community carefully is one thing, blasting activity is another, and the second gets accounts restricted. Stay on your own group or page, and keep the volume human.
Keep a person in the loop
Let the bot draft, not decide. Review replies before they post, at least until the drafts are reliably right. Auto-posting AI text to real people goes wrong fast without a check.
Go at a human pace
A person does not post fifty replies a minute. Add waits, cap how many a run sends, and spread it out, so the activity looks like what it is, a person keeping up.
Layouts and logins
Facebook changes its layout often and watches for unusual logins. Repick elements with the selector tool when they shift, and use your own logged-in session rather than a fresh login every run.