Quiubo
OpenClaw Quiubo channel plugin. Chat with AI assistants through the Quiubo messaging platform.
Tags: channel, messaging, regional
Use Cases
- Latin American teams adding AI assistant capabilities to their Quiubo group chats
- Privacy-conscious groups wanting AI without sharing data through major platforms
- Community coordinators using AI for scheduling, reminders, and information lookup
- Cross-platform AI assistant access via Quiubo's iOS, Android, and web apps
Tips
- Always set delivery.to explicitly in cron jobs to avoid the resolveDefaultTo issue
- Start with a simple 1:1 bot chat before adding the bot to group conversations
- Use Quiubo's cross-platform sync to manage your AI assistant from any device
- Pair with OpenClaw's cron system for scheduled updates delivered to Quiubo groups
- Check the npm page for the latest configuration options and version compatibility
- Monitor the OpenClaw GitHub issues for Quiubo-specific bug reports and fixes
Known Issues & Gotchas
- Cron jobs must include explicit --to parameter when using --channel quiubo
- Bot token format and creation process may differ from Telegram BotFather workflow
- Plugin is community-maintained — updates may lag behind OpenClaw core releases
- Quiubo's privacy focus means some webhook/API features may be more restrictive
- Test with direct messages before deploying to group chats
- Check OpenClaw issue #32355 if cron delivery fails with 'No delivery target resolved'
Alternatives
- Telegram
- Discord
Community Feedback
When a cron job uses --channel quiubo without --to, OpenClaw core rejects with: No delivery target resolved for channel 'quiubo'. Set delivery.to explicitly.
— GitHub Issues
Private group chats built for real coordination. Your conversations sync seamlessly across all platforms — start a chat on your phone and continue on desktop.
— Quiubo.io
The ecosystem is bigger than you think — there are channel plugins for platforms most people haven't heard of, including Quiubo and DMWork.
— Reddit r/openclaw
Frequently Asked Questions
What is Quiubo?
Quiubo is a privacy-focused messaging platform built for group coordination, available on iOS, Android, and web. The name comes from Latin American Spanish slang meaning 'What's up?' It emphasizes private group chats over social broadcasting.
How do I create a Quiubo bot?
Bot creation process is managed through Quiubo's platform. Check the plugin's npm page for the latest instructions on obtaining a bot token for your OpenClaw integration.
Why do my cron jobs fail with 'No delivery target resolved'?
This is a known issue (GitHub #32355). When using --channel quiubo in cron jobs, you must explicitly set the --to parameter with the target chat ID. The plugin's resolveDefaultTo isn't auto-called by OpenClaw core's cron delivery path.
Is Quiubo available worldwide?
Quiubo is available globally on iOS, Android, and web, but its primary user base is in Latin America. The platform and most of its community content are in Spanish, though the app itself supports multiple languages.
Can I use Quiubo for group AI interactions?
Yes, the plugin supports both direct messages and group chats. Start with 1:1 bot conversations to test, then add the bot to group chats for team-wide AI assistant access.
Configuration Examples
Basic Setup
# Install:
openclaw plugins install openclaw-quiubo
# Config (openclaw.yaml):
channels:
quiubo:
enabled: true
botToken: your-quiubo-bot-tokenCron Job with Explicit Target
# Cron job must include --to:
cron:
daily-update:
schedule: "0 9 * * *"
channel: quiubo
to: chat-id-here
message: "Good morning! Here's your daily briefing."Installation
openclaw plugins install openclaw-quiubo