📍 Market Intelligence
AI-powered market gap analysis and location scouting for your business expansion — powered by the Build.up AI engine.
Tell me your product/service and I'll analyse your area.
🤝 Supplier Finder
Find verified suppliers for your niche, retrieve their contact details, and save them to Google Contacts — powered by the Build.up AI engine.
What are you sourcing, and where are you based?
✍️ Content Creator
Research topics live and generate full SEO-optimised blog posts in HTML — powered by the Build.up AI engine with live content generation.
Give me a topic and your target audience.
✈️ Telegram Business Assistant
Your 24/7 AI bot on Telegram — answers customer queries, retrieves and saves contacts to Google Contacts, composes and sends emails via Gmail, and creates Google Calendar events automatically.
bot (e.g. JanesShopBot).BotFather immediately gives you a Bot Token — a long string that looks like
1234567890:AAFxxx.... Copy it and paste it below.
Then register your Cloudflare Worker as the Telegram webhook by visiting this URL in your browser (replace both placeholders):
https://api.telegram.org/bot{YOUR_BOT_TOKEN}/setWebhook?url={YOUR_WORKER_URL}Telegram will confirm with {"ok":true} — your bot is now live.
System prompt: paste the output from your Customer Service → Social Channels → Copy System Prompt button.
t.me/YourBotUsername. Share it on your website, Instagram bio, business card, or WhatsApp status. Any customer who messages the bot gets an instant AI reply — 24/7, no extra cost.
🎧 Customer Service AI
Your always-on AI agent — answers customer questions across Instagram, Facebook, TikTok DMs and phone calls using your business information.
Fill in your business details below. The AI agent uses this as its knowledge base when answering any customer question — on any channel, at any time. The more detail you provide, the better it answers.
Connect your channels below. Email works immediately via EmailJS — no server needed. Social media channels use their direct APIs. Fill in your Business Info first so the AI knows how to respond.
https://your-worker.workers.dev/ig-webhook and subscribe to the messages field.Connect your WhatsApp Business number so the Customer Service AI answers customer enquiries — using your saved prices, hours, services, and FAQs as its knowledge base.
Go to developers.facebook.com → Create App → Add WhatsApp product → Connect your WhatsApp Business number.
From WhatsApp → API Setup, copy your Access Token and Phone Number ID. Set the Webhook URL to your Cloudflare Worker, subscribing to the messages field.
Your Cloudflare Worker receives the WhatsApp webhook → calls the AI with your Business Info system prompt → sends the reply back via the WhatsApp Cloud API. The bot replies to every customer message automatically — no extra tools needed.
Once you have saved your Business Info, click below to copy the complete system prompt. Paste it into your Cloudflare Worker as the system prompt, or use it with any AI integration — WhatsApp, Instagram, Facebook, TikTok, or Email.
Your AI phone agent answers customer calls 24/7 using your business information. The recommended setup uses Bland.ai — the simplest AI phone call platform, built for exactly this use case.
Pricing: pay per minute (~$0.09/min). For a small business receiving 20–30 calls/day, that's roughly $5–10/month.
• Prompt: Paste the system prompt from your Business Info tab (click "Copy System Prompt" in the Social Channels tab)
• Voice: Choose a voice that matches your brand (African English accents available)
• First sentence:
Hello! Thank you for calling [Business Name]. How can I help you today?• Transfer number: Your personal number — the agent transfers complex calls to you automatically
Assign the number to your agent. Now whenever a customer calls that number, your AI agent answers immediately — day or night.
To activate me:
1. Fill in your Business Info tab with your services, prices, and hours
2. Save the info — I'll use it to answer every customer question
3. Come back here to test me before going live
Once configured, I'll handle questions on Instagram, Facebook, TikTok, email, and phone calls automatically.
See exactly what your customers experience. Type as if you are a real customer messaging your business for the first time — the agent will respond just as it would on Instagram, Facebook, or any other channel.
This simulation uses your saved Business Info as the AI's knowledge. Responses are identical to what real customers will receive.
Recommended fix: Route all AI calls through a Cloudflare Worker proxy. The key stays server-side and is never exposed to the browser.
How to set up a proxy (free on Cloudflare Workers):
- Go to dash.cloudflare.com → Workers & Pages → Create Worker
- Name it
buildup-proxyand paste the worker code (see below) - Go to Worker Settings → Variables → add
ANTHROPIC_KEYas a secret - Replace the fetch URL in this app from
api.anthropic.comto your Worker URL
View Worker code →
export default {
async fetch(request, env) {
if(request.method === 'OPTIONS') return new Response(null, {
headers: {
'Access-Control-Allow-Origin': '*',
'Access-Control-Allow-Headers': '*',
'Access-Control-Allow-Methods': 'POST'
}
});
const body = await request.json();
const resp = await fetch('https://anthropic-proxy.mbuinathan77.workers.dev', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'x-api-key': env.ANTHROPIC_KEY,
'anthropic-version': '2023-06-01'
},
body: JSON.stringify(body)
});
const data = await resp.json();
return new Response(JSON.stringify(data), {
headers: {
'Content-Type': 'application/json',
'Access-Control-Allow-Origin': '*'
}
});
}
};
Connect a free Supabase database to sync your account, business info, and credentials across all your devices and browsers. Takes 5 minutes to set up. supabase.com →