๐ Getting Started
PromptWeb makes website creation as simple as sending a message. Follow these steps to build your first site in under a minute.
1
Open Telegram
Search for @promptweb_bot in Telegram and start a chat
2
Accept Terms
Review and accept our Terms & Privacy Policy to continue
3
Send /start
Type /start to create your first website and workspace
4
Your site is live!
Visit yourname.promptweb.ai โ it's already online
๐ก Pro Tip: You'll get a private Telegram group with a topic for your site. All editing happens there โ just write naturally and your site updates in real-time!
๐ How to Edit Your Site
Natural Language Editing
Just describe what you want. No commands, no syntax. Write like you're talking to a designer:
"Make the background a gradient from blue to purple"
"Add a contact form with name, email, and message fields"
"Create a photo gallery with 6 images in a grid"
"Make the header sticky when scrolling"
Voice Messages ๐๏ธ
On mobile? Send a voice message instead of typing:
- Hold the microphone button in Telegram
- Describe your change: "Make the header blue and add my name to the footer"
- Release and send
- Your site updates automatically!
โ ๏ธ Privacy Note: Voice messages are transcribed and then immediately deleted. We only keep the text transcript, never the audio file.
Image-Based Design ๐ผ๏ธ
Have a design in mind? Send a screenshot or mockup:
- Upload an image to the chat
- Add a caption: "Build this design" or "Make my site look like this"
- We'll extract the design and recreate it
Works with: Figma exports, Pinterest screenshots, hand-drawn sketches, existing websites, design mockups.
๐ ๏ธ Commands Reference
/start
Create your account and first website. Sets up your private workspace group.
/sites
List all your websites with their URLs and topic links.
/newsite <name>
Create a new website. Example: /newsite Portfolio
/use <name>
Switch active site in DM mode. Example: /use portfolio
/screenshot
Take a screenshot of your active site to see how it looks.
/history
View the last 20 edits made to your site (Git log).
/undo
Revert the last change. Uses Git to restore previous version.
/files
List all files in your site (HTML, CSS, images, etc.).
/delete <name>
Permanently delete a site. Example: /delete OldProject
/quota
Check your hourly and daily usage limits.
/export
Download all your data (GDPR compliance). Includes profile, sites, and history.
/deleteaccount
Request account deletion with a 7-day grace period. Can be cancelled anytime.
/canceldelete
Cancel a pending account deletion request.
๐ Advanced Topics
Managing Multiple Sites
You can create unlimited websites under one account. Each site gets:
- Its own subdomain:
sitename.promptweb.ai
- Separate file storage
- Independent Git history
- Dedicated Telegram topic (in group mode)
Group Mode (Recommended): Each site has its own topic in your private Telegram group. Just write in the topic to edit that site.
DM Mode: Use /use sitename to switch which site you're editing in the direct message chat.
Version Control & Undo
Every change you make is automatically committed to Git with a timestamp and description. This gives you:
- Full history: See all past changes with
/history
- Quick undo: Revert mistakes with
/undo
- Audit trail: Track what changed and when
๐ก How Undo Works: Instead of deleting history, /undo creates a new Git revert commit. This preserves all history while rolling back the change.
Rate Limits & Fair Usage
To ensure reliability for everyone, PromptWeb has usage limits:
- Hourly limit: Number of edits per hour
- Daily limit: Total edits per day
- Max prompt size: Character limit per message
- Max file size: Upload size limit for images
Check your current usage anytime with /quota. Limits are generous for normal use โ they only prevent abuse and spam.
Privacy & Data Export
PromptWeb is GDPR compliant. You have full control over your data:
Export your data (/export):
- Download a ZIP file with all your information
- Includes: profile data, site metadata, all website files
- Use for backups, portability, or compliance
Delete your account (/deleteaccount):
- Request deletion with a 7-day grace period
- Change your mind? Use
/canceldelete anytime
- After the grace period, all data is permanently deleted
โ ๏ธ What We Store: Telegram ID, username, messages to the bot, website files. What we DON'T store: Voice recordings (deleted immediately), photos (deleted after processing), passwords (we use Telegram auth).
Subdomain Rules
When creating a site, your subdomain must follow these rules:
- Characters: Only letters, numbers, and hyphens
- Length: 3-63 characters
- Reserved names: Cannot use
www, api, admin, etc.
- Uniqueness: Must not be taken by another user
If your username conflicts with a reserved name, we'll automatically suggest alternatives (e.g., username-site).
๐ค For AI Agent Developers
Integrating PromptWeb into your AI agent? Here's what you need to know:
Current Integration Method
Right now, agents can use PromptWeb by interacting with @promptweb_bot just like humans do:
- Your agent sends messages to the bot via Telegram Bot API
- PromptWeb processes requests and builds sites
- Sites are delivered with URLs ready to share
๐ก Equal Access: We treat agents just like humans. Same features, same limits, same infrastructure. No special API key needed โ just a Telegram bot token.
Coming Soon: RESTful API
We're building a dedicated API for programmatic access. It will support:
- Create sites:
POST /api/v1/sites
- Update sites:
PATCH /api/v1/sites/:id
- Get site info:
GET /api/v1/sites/:id
- List sites:
GET /api/v1/sites
- Delete sites:
DELETE /api/v1/sites/:id
Want early access? Visit our API page to join the waitlist.
๐ฌ Need Help?
Still have questions? Here are your options:
๐ก Quick Tips:
- Be specific: "Add a blue button" is better than "make it nicer"
- Iterate: Make small changes and build up complexity
- Use /screenshot to check your work before sharing
- Don't worry about mistakes โ /undo has your back!