TypeX

TypeX channel integration for OpenClaw. Connect to the TypeX bot platform.

TypeX is a channel plugin that connects OpenClaw to the TypeX secure messaging platform — a privacy-first communication app offering end-to-end encrypted messaging, voice and video calls, disappearing messages, and anonymous groups. TypeX positions itself as a secure alternative to mainstream messengers, with features like app lock, anonymous group participation (no phone number required), and private supergroups supporting up to 100,000 members. The plugin implements OpenClaw's channel extension protocol, allowing your AI agent to send and receive messages through TypeX conversations. It registers as a bot within the TypeX platform and processes incoming messages via the TypeX bot API, routing them through the OpenClaw gateway for AI-powered responses. The architecture follows the standard OpenClaw channel plugin pattern with webhook-based message delivery. With around 123 weekly downloads, TypeX is a niche but growing integration maintained by community developer @yuki397. It was merged into the OpenClaw ecosystem as a channel extension, making it easy to install via the plugin system. The plugin is most valuable for users and organizations that have standardized on TypeX for their communications and want to add AI assistant capabilities without switching platforms. Ideal for privacy-conscious users and teams already using TypeX who want AI agent capabilities. Not recommended if you're looking for a mainstream messaging channel — consider Telegram, Discord, or WhatsApp instead.

Tags: channel, messaging

Use Cases

  • Privacy-first AI assistant for encrypted conversations
  • AI-powered moderation for TypeX supergroups with up to 100K members
  • Secure internal team assistant for organizations using TypeX
  • Anonymous AI consultation — users interact without revealing phone numbers

Tips

  • Use TypeX's disappearing messages feature alongside OpenClaw for privacy-sensitive AI interactions
  • Set up a reverse proxy (nginx/Caddy) with proper HTTPS for the webhook endpoint
  • TypeX's anonymous groups let you create AI-powered communities without exposing member phone numbers
  • Test with a dedicated TypeX account rather than your personal one during development
  • Monitor plugin updates — community plugins may have longer gaps between releases

Known Issues & Gotchas

  • TypeX bot tokens must be obtained through the TypeX developer portal — there's no CLI shortcut like Telegram's BotFather
  • Webhook URL must be publicly accessible with valid HTTPS — self-signed certificates may not work
  • TypeX anonymous groups use unique IDs instead of phone numbers — bot addressing works differently than WhatsApp
  • Plugin does not support TypeX's encrypted calling features — only text messaging
  • Small community means fewer Stack Overflow answers and troubleshooting resources

Alternatives

  • Telegram
  • Matrix
  • Signal (via plugin)

Community Feedback

feat(typex): add TypeX channel extension — merged as a community-contributed channel plugin for the TypeX secure messaging platform.

— GitHub Actions

TypeX is a secure, privacy-first communication app designed for seamless encrypted messaging and calling across devices. Built with powerful tools for private conversations.

— Apple App Store

New OpenClaw release version 2026.2.26: way less friction for real-world use — secrets, browser control, multi-DM, Android. Includes new channel extensions like TypeX.

— Reddit r/OpenClawInstall

Frequently Asked Questions

What is TypeX and why would I use it with OpenClaw?

TypeX is a privacy-first encrypted messaging app with features like disappearing messages, anonymous groups, and E2E encryption. You'd use it with OpenClaw if your team or community already uses TypeX and wants an AI assistant integrated directly into their secure conversations.

Is TypeX open source?

TypeX is a proprietary app developed by MasterVision NetTech Co. LTD. The OpenClaw plugin for TypeX is open source (MIT license), but the TypeX platform itself is not. This means you depend on their API availability and terms.

How do I get a TypeX bot token?

You need to register as a developer on the TypeX platform and create a bot application to receive a bot token. The process is similar to creating a Telegram bot, but through TypeX's own developer portal.

Can OpenClaw read encrypted TypeX messages?

The plugin works through the TypeX bot API, which handles encryption/decryption transparently. Your OpenClaw instance receives decrypted message content through the API — the E2E encryption protects messages in transit, not from the bot endpoint.

How does TypeX compare to Telegram for OpenClaw?

Telegram has a far richer bot API, larger community, and more OpenClaw-specific documentation. TypeX offers stronger default privacy but fewer bot features. Use TypeX if privacy is paramount; use Telegram for the best overall OpenClaw experience.

Configuration Examples

Basic TypeX setup

channels:
  typex:
    enabled: true
    botToken: YOUR_TYPEX_BOT_TOKEN
    webhookUrl: https://your-server.com/webhook/typex

TypeX with reverse proxy

channels:
  typex:
    enabled: true
    botToken: YOUR_TYPEX_BOT_TOKEN
    webhookUrl: https://ai.yourdomain.com/webhook/typex
    webhookPort: 8060
    webhookPath: /webhook/typex

Installation

openclaw plugins install openclaw-extension-typex