You're Invited:Meet the Socket Team at RSAC and BSidesSF 2026, March 23–26.RSVP
Socket
Book a DemoSign in
Socket

clawbot

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

clawbot

ClawBot — conversational bot framework plugin for CMDOP

latest
Source
npmnpm
Version
2026.3.11
Version published
Maintainers
1
Created
Source

clawbot

ClawBot — Telegram, Discord & Slack Bot Framework for Remote Machine Control

npm license

CMDOP Architecture

ClawBot empowers you to build chat-ops solutions, automating remote machine control through Telegram, Discord, and Slack. As a Telegram bot framework Node.js alternative to Telegraf, and providing similar Discord bot automation to discord.js and Slack bot remote control to Bolt for Slack, ClawBot simplifies complex workflows.

Features

  • Automate remote server tasks using a Telegram bot framework Node.js.
  • Manage Discord bot automation with command execution and task scheduling.
  • Enable Slack bot remote control for server management and application deployment.
  • Integrate chat-ops pipelines across Telegram, Discord, and Slack.
  • Extend functionality with custom Node.js modules and middleware.

Use Cases

  • Control remote servers via Telegram commands
  • Run shell commands from Discord or Slack
  • Build ChatOps workflows with AI agent integration

Get Started

npm install clawbot

Quick Start

import { ClawBot } from 'clawbot';

const bot = await ClawBot.create({
  apiKey: process.env.CMDOP_API_KEY,
});

bot.command('deploy', async (ctx) => {
  const result = await bot.exec('npm run build', ctx);
  await ctx.reply(`Build done: ${result.output}`);
});

await bot.addTelegram({ token: process.env.TELEGRAM_TOKEN });
await bot.start();

CLI

No SDK needed? Connect via standalone binary:

curl -fsSL cmdop.com/install-cli.sh | bash
cmdok ssh

cmdok ssh

Keywords

clawbot

FAQs

Package last updated on 10 Mar 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts