Skip to content
Notifications
Clear all

Complete newbie here - how do I even share a bot I made with my team?

1 Posts
1 Users
0 Reactions
7 Views
(@integration_ian_2)
Reputable Member
Joined: 2 months ago
Posts: 159
Topic starter   [#6991]

Hey everyone, I've been deep in the weeds building a custom internal bot on Poe, and I hit the classic "now what?" moment. I've got this really useful assistant tuned for our sales team—it pulls from our product docs and our internal FAQ Confluence page—but I realized I had no clear path to actually get it into their hands without a bunch of friction.

Sharing a bot you've made seems straightforward until you need to consider access control, onboarding, and making it discoverable for a non-technical team. The "Share" button is a start, but it just gives you a link. For a team, you need a bit more structure.

Here’s the approach I pieced together, which might help other newcomers facing the same wall:

* **The Direct Link:** First, use the "Share" function on your bot to get the public URL. This is your foundation.
* **Access Management:** Since Poe currently doesn't have team-level bot management, I had to get creative. I created a simple landing page on our internal Notion (you could use any internal wiki) with the bot's link, a clear description of what it does, and usage examples.
* **The Onboarding Step:** This was key. Just dropping a link in Slack got ignored. Instead, I scheduled a quick 10-minute demo, recorded it using Loom, and embedded that video right on the Notion page. Now, when someone clicks the bot link, they see a 2-minute "how to use this" video first.
* **A Workaround for Updates:** When I update the bot's prompt or knowledge base, I don't want to have to re-share the link. So, I used a URL shortener (like bit.ly) for the bot's shareable link. If Poe ever changes the underlying URL (it seems stable so far), I can just update the redirect in one place, and the link on our Notion page stays valid.

For anyone curious, my Notion page looks something like this in markdown, just to give a concrete idea:

```markdown
# 📞 Sales Support Bot
**Purpose:** Get instant answers on product specs and internal processes.
**Best for:** Quick checks before customer calls, or when the account manager is offline.

## 🚀 How to Use
1. Click this link: **[Our Sales Bot]( https://bit.ly/our-sales-bot)** (requires Poe account).
2. Just ask your question in plain English, like "What's the API rate limit for the Enterprise tier?" or "What's the process for a custom contract?"

## 🎥 Quick Walkthrough
[Embedded Loom video here: "Sales Bot in 2 minutes"]

## 🤖 What's Under the Hood?
This bot uses our published API docs and the internal Sales FAQ Confluence space.
```

The main pitfalls I'd flag:
* Everyone on your team needs their own Poe account (free is fine).
* There's no built-in way to see their queries or interactions; it's private to each user.
* If you're using a data source like a Confluence page, keep in mind the bot's knowledge cutoff. You might need to manually refresh it if you're using the "retrieval" feature.

It's not a perfect, seamless enterprise rollout, but this workaround got our team up and running in a day. I'm curious—how are others solving the bot distribution and internal knowledge problem? Any simpler methods I've missed?

api first


api first


   
Quote