Claim this agent
Agent DossierCLAWHUBSafety 84/100

Xpersona Agent

处理Telegram配对码的机器人服务 | Telegram Pairing Code Approver

创建一个持久运行的Telegram机器人服务,用于自动处理配对代码并批准Telegram会话权限。使用时提供机器人令牌,自动创建机器人脚本和服务文件,并启动系统服务。适用于需要自动处理Telegram配对请求的场景。 Skill: 处理Telegram配对码的机器人服务 | Telegram Pairing Code Approver Owner: crazypeace Summary: 创建一个持久运行的Telegram机器人服务,用于自动处理配对代码并批准Telegram会话权限。使用时提供机器人令牌,自动创建机器人脚本和服务文件,并启动系统服务。适用于需要自动处理Telegram配对请求的场景。 Tags: latest:1.0.1 Version history: v1.0.1 | 2026-02-04T03:52:47.378Z | auto - Minor update to deploy script (scripts/deploy.js) — no documentation changes. - General stability and deployment improvements. v1.0.0 | 2026-02-0

OpenClaw · self-declared
1.4K downloadsTrust evidence available
clawhub skill install kn769hxajq747rnm1pyf9zmtns80cn81:telegram-pairing-approver

Overall rank

#62

Adoption

1.4K downloads

Trust

Unknown

Freshness

Feb 28, 2026

Freshness

Last checked Feb 28, 2026

Best For

处理Telegram配对码的机器人服务 | Telegram Pairing Code Approver is best for general automation workflows where OpenClaw compatibility matters.

Not Ideal For

Contract metadata is missing or unavailable for deterministic execution.

Evidence Sources Checked

editorial-content, CLAWHUB, runtime-metrics, public facts pack

Overview

Key links, install path, reliability highlights, and the shortest practical read before diving into the crawl record.

Verifiededitorial-content

Overview

Executive Summary

创建一个持久运行的Telegram机器人服务,用于自动处理配对代码并批准Telegram会话权限。使用时提供机器人令牌,自动创建机器人脚本和服务文件,并启动系统服务。适用于需要自动处理Telegram配对请求的场景。 Skill: 处理Telegram配对码的机器人服务 | Telegram Pairing Code Approver Owner: crazypeace Summary: 创建一个持久运行的Telegram机器人服务,用于自动处理配对代码并批准Telegram会话权限。使用时提供机器人令牌,自动创建机器人脚本和服务文件,并启动系统服务。适用于需要自动处理Telegram配对请求的场景。 Tags: latest:1.0.1 Version history: v1.0.1 | 2026-02-04T03:52:47.378Z | auto - Minor update to deploy script (scripts/deploy.js) — no documentation changes. - General stability and deployment improvements. v1.0.0 | 2026-02-0 Capability contract not published. No trust telemetry is available yet. 1.4K downloads reported by the source. Last updated 4/15/2026.

No verified compatibility signals1.4K downloads

Trust score

Unknown

Compatibility

OpenClaw

Freshness

Feb 28, 2026

Vendor

Clawhub

Artifacts

0

Benchmarks

0

Last release

1.0.1

Install & run

Setup Snapshot

clawhub skill install kn769hxajq747rnm1pyf9zmtns80cn81:telegram-pairing-approver
  1. 1

    Setup complexity is LOW. This package is likely designed for quick installation with minimal external side-effects.

  2. 2

    Final validation: Expose the agent to a mock request payload inside a sandbox and trace the network egress before allowing access to real customer data.

Evidence & Timeline

Public facts grouped by evidence type, plus release and crawl events with provenance and freshness.

Verifiededitorial-content

Public facts

Evidence Ledger

Vendor (1)

Vendor

Clawhub

profilemedium
Observed Apr 15, 2026Source linkProvenance
Compatibility (1)

Protocol compatibility

OpenClaw

contractmedium
Observed Apr 15, 2026Source linkProvenance
Release (1)

Latest release

1.0.1

releasemedium
Observed Feb 4, 2026Source linkProvenance
Adoption (1)

Adoption signal

1.4K downloads

profilemedium
Observed Apr 15, 2026Source linkProvenance
Security (1)

Handshake status

UNKNOWN

trustmedium
Observed unknownSource linkProvenance

Artifacts & Docs

Parameters, dependencies, examples, extracted files, editorial overview, and the complete README when available.

Self-declaredCLAWHUB

Captured outputs

Artifacts Archive

Extracted files

2

Examples

6

Snippets

0

Languages

Unknown

Executable Examples

bash

node scripts/deploy.js <YOUR_BOT_TOKEN>

bash

node scripts/deploy.js 9632389037:ADG3jTndsXpgdOrdJkfaV80nnsjhQyWEhbT

bash

systemctl status telegram-pairing-bot.service

bash

systemctl stop telegram-pairing-bot.service

bash

systemctl restart telegram-pairing-bot.service

bash

systemctl is-enabled telegram-pairing-bot.service
Extracted Files

SKILL.md

---
name: telegram-pairing-approver
description: 创建一个持久运行的Telegram机器人服务,用于自动处理配对代码并批准Telegram会话权限。使用时提供机器人令牌,自动创建机器人脚本和服务文件,并启动系统服务。适用于需要自动处理Telegram配对请求的场景。
---

# Telegram 配对代码自动批准机器人服务

## 快速开始

使用预构建的部署脚本快速创建服务:

```bash
node scripts/deploy.js <YOUR_BOT_TOKEN>
```

例如:
```bash
node scripts/deploy.js 9632389037:ADG3jTndsXpgdOrdJkfaV80nnsjhQyWEhbT
```

## 功能
- 自动识别三种配对代码格式:
  - `NDW4JDJ4` (纯代码格式)
  - `code: NDW4JDJ4` (带code:前缀)
  - `Pairing code: NDW4JDJ4` (带Pairing code:前缀)
- 自动执行 `openclaw pairing approve telegram <code>` 命令
- 发送友好的提示信息给用户
- 作为系统服务运行,具备自动重启功能

## 脚本说明

### 部署脚本 (`scripts/deploy.js`)
- 创建机器人脚本,自动注入提供的令牌
- 生成systemd服务文件
- 注册并启动系统服务
- 配置自动重启机制

## 服务管理

查看服务状态:
```bash
systemctl status telegram-pairing-bot.service
```

停止服务:
```bash
systemctl stop telegram-pairing-bot.service
```

重启服务:
```bash
systemctl restart telegram-pairing-bot.service
```

检查服务是否启用开机自启:
```bash
systemctl is-enabled telegram-pairing-bot.service
```

## 优势
- 高可用性:作为系统服务运行,具备自动重启能力
- 自动化:无需人工干预即可处理配对请求
- 用户友好:提供清晰的使用说明
- 可靠性:防止意外中断影响服务
- 易于部署:单命令完成完整部署

_meta.json

{
  "ownerId": "kn769hxajq747rnm1pyf9zmtns80cn81",
  "slug": "telegram-pairing-approver",
  "version": "1.0.1",
  "publishedAt": 1770177167378
}

Editorial read

Docs & README

Docs source

CLAWHUB

Editorial quality

ready

创建一个持久运行的Telegram机器人服务,用于自动处理配对代码并批准Telegram会话权限。使用时提供机器人令牌,自动创建机器人脚本和服务文件,并启动系统服务。适用于需要自动处理Telegram配对请求的场景。 Skill: 处理Telegram配对码的机器人服务 | Telegram Pairing Code Approver Owner: crazypeace Summary: 创建一个持久运行的Telegram机器人服务,用于自动处理配对代码并批准Telegram会话权限。使用时提供机器人令牌,自动创建机器人脚本和服务文件,并启动系统服务。适用于需要自动处理Telegram配对请求的场景。 Tags: latest:1.0.1 Version history: v1.0.1 | 2026-02-04T03:52:47.378Z | auto - Minor update to deploy script (scripts/deploy.js) — no documentation changes. - General stability and deployment improvements. v1.0.0 | 2026-02-0

Full README

Skill: 处理Telegram配对码的机器人服务 | Telegram Pairing Code Approver

Owner: crazypeace

Summary: 创建一个持久运行的Telegram机器人服务,用于自动处理配对代码并批准Telegram会话权限。使用时提供机器人令牌,自动创建机器人脚本和服务文件,并启动系统服务。适用于需要自动处理Telegram配对请求的场景。

Tags: latest:1.0.1

Version history:

v1.0.1 | 2026-02-04T03:52:47.378Z | auto

  • Minor update to deploy script (scripts/deploy.js) — no documentation changes.
  • General stability and deployment improvements.

v1.0.0 | 2026-02-04T02:17:15.075Z | user

Initial release of telegram-pairing-approver!

  • Provides a persistent Telegram bot service to automatically process and approve pairing codes for Telegram sessions.
  • Supports deployment via a simple script that sets up the bot, service file, and systemd integration.
  • Recognizes multiple pairing code formats for flexible interaction.
  • Automatically executes the pairing approval command and sends user-friendly messages.
  • Runs as a system service with automatic restart and easy management commands.

Archive index:

Archive v1.0.1: 3 files, 3706 bytes

Files: scripts/deploy.js (5852b), SKILL.md (1751b), _meta.json (144b)

File v1.0.1:SKILL.md


name: telegram-pairing-approver description: 创建一个持久运行的Telegram机器人服务,用于自动处理配对代码并批准Telegram会话权限。使用时提供机器人令牌,自动创建机器人脚本和服务文件,并启动系统服务。适用于需要自动处理Telegram配对请求的场景。

Telegram 配对代码自动批准机器人服务

快速开始

使用预构建的部署脚本快速创建服务:

node scripts/deploy.js <YOUR_BOT_TOKEN>

例如:

node scripts/deploy.js 9632389037:ADG3jTndsXpgdOrdJkfaV80nnsjhQyWEhbT

功能

  • 自动识别三种配对代码格式:
    • NDW4JDJ4 (纯代码格式)
    • code: NDW4JDJ4 (带code:前缀)
    • Pairing code: NDW4JDJ4 (带Pairing code:前缀)
  • 自动执行 openclaw pairing approve telegram <code> 命令
  • 发送友好的提示信息给用户
  • 作为系统服务运行,具备自动重启功能

脚本说明

部署脚本 (scripts/deploy.js)

  • 创建机器人脚本,自动注入提供的令牌
  • 生成systemd服务文件
  • 注册并启动系统服务
  • 配置自动重启机制

服务管理

查看服务状态:

systemctl status telegram-pairing-bot.service

停止服务:

systemctl stop telegram-pairing-bot.service

重启服务:

systemctl restart telegram-pairing-bot.service

检查服务是否启用开机自启:

systemctl is-enabled telegram-pairing-bot.service

优势

  • 高可用性:作为系统服务运行,具备自动重启能力
  • 自动化:无需人工干预即可处理配对请求
  • 用户友好:提供清晰的使用说明
  • 可靠性:防止意外中断影响服务
  • 易于部署:单命令完成完整部署

File v1.0.1:_meta.json

{ "ownerId": "kn769hxajq747rnm1pyf9zmtns80cn81", "slug": "telegram-pairing-approver", "version": "1.0.1", "publishedAt": 1770177167378 }

Archive v1.0.0: 3 files, 3408 bytes

Files: scripts/deploy.js (4943b), SKILL.md (1751b), _meta.json (144b)

File v1.0.0:SKILL.md


name: telegram-pairing-approver description: 创建一个持久运行的Telegram机器人服务,用于自动处理配对代码并批准Telegram会话权限。使用时提供机器人令牌,自动创建机器人脚本和服务文件,并启动系统服务。适用于需要自动处理Telegram配对请求的场景。

Telegram 配对代码自动批准机器人服务

快速开始

使用预构建的部署脚本快速创建服务:

node scripts/deploy.js <YOUR_BOT_TOKEN>

例如:

node scripts/deploy.js 9632389037:ADG3jTndsXpgdOrdJkfaV80nnsjhQyWEhbT

功能

  • 自动识别三种配对代码格式:
    • NDW4JDJ4 (纯代码格式)
    • code: NDW4JDJ4 (带code:前缀)
    • Pairing code: NDW4JDJ4 (带Pairing code:前缀)
  • 自动执行 openclaw pairing approve telegram <code> 命令
  • 发送友好的提示信息给用户
  • 作为系统服务运行,具备自动重启功能

脚本说明

部署脚本 (scripts/deploy.js)

  • 创建机器人脚本,自动注入提供的令牌
  • 生成systemd服务文件
  • 注册并启动系统服务
  • 配置自动重启机制

服务管理

查看服务状态:

systemctl status telegram-pairing-bot.service

停止服务:

systemctl stop telegram-pairing-bot.service

重启服务:

systemctl restart telegram-pairing-bot.service

检查服务是否启用开机自启:

systemctl is-enabled telegram-pairing-bot.service

优势

  • 高可用性:作为系统服务运行,具备自动重启能力
  • 自动化:无需人工干预即可处理配对请求
  • 用户友好:提供清晰的使用说明
  • 可靠性:防止意外中断影响服务
  • 易于部署:单命令完成完整部署

File v1.0.0:_meta.json

{ "ownerId": "kn769hxajq747rnm1pyf9zmtns80cn81", "slug": "telegram-pairing-approver", "version": "1.0.0", "publishedAt": 1770171435075 }

API & Reliability

Machine endpoints, contract coverage, trust signals, runtime metrics, benchmarks, and guardrails for agent-to-agent use.

MissingCLAWHUB

Machine interfaces

Contract & API

Contract coverage

Status

missing

Auth

None

Streaming

No

Data region

Unspecified

Protocol support

OpenClaw: self-declared

Requires: none

Forbidden: none

Guardrails

Operational confidence: low

No positive guardrails captured.
Invocation examples
curl -s "https://xpersona.co/api/v1/agents/clawhub-crazypeace-telegram-pairing-approver/snapshot"
curl -s "https://xpersona.co/api/v1/agents/clawhub-crazypeace-telegram-pairing-approver/contract"
curl -s "https://xpersona.co/api/v1/agents/clawhub-crazypeace-telegram-pairing-approver/trust"

Operational fit

Reliability & Benchmarks

Trust signals

Handshake

UNKNOWN

Confidence

unknown

Attempts 30d

unknown

Fallback rate

unknown

Runtime metrics

Observed P50

unknown

Observed P95

unknown

Rate limit

unknown

Estimated cost

unknown

Do not use if

Contract metadata is missing or unavailable for deterministic execution.
No benchmark suites or observed failure patterns are available.

Machine Appendix

Raw contract, invocation, trust, capability, facts, and change-event payloads for machine-side inspection.

MissingCLAWHUB

Contract JSON

{
  "contractStatus": "missing",
  "authModes": [],
  "requires": [],
  "forbidden": [],
  "supportsMcp": false,
  "supportsA2a": false,
  "supportsStreaming": false,
  "inputSchemaRef": null,
  "outputSchemaRef": null,
  "dataRegion": null,
  "contractUpdatedAt": null,
  "sourceUpdatedAt": null,
  "freshnessSeconds": null
}

Invocation Guide

{
  "preferredApi": {
    "snapshotUrl": "https://xpersona.co/api/v1/agents/clawhub-crazypeace-telegram-pairing-approver/snapshot",
    "contractUrl": "https://xpersona.co/api/v1/agents/clawhub-crazypeace-telegram-pairing-approver/contract",
    "trustUrl": "https://xpersona.co/api/v1/agents/clawhub-crazypeace-telegram-pairing-approver/trust"
  },
  "curlExamples": [
    "curl -s \"https://xpersona.co/api/v1/agents/clawhub-crazypeace-telegram-pairing-approver/snapshot\"",
    "curl -s \"https://xpersona.co/api/v1/agents/clawhub-crazypeace-telegram-pairing-approver/contract\"",
    "curl -s \"https://xpersona.co/api/v1/agents/clawhub-crazypeace-telegram-pairing-approver/trust\""
  ],
  "jsonRequestTemplate": {
    "query": "summarize this repo",
    "constraints": {
      "maxLatencyMs": 2000,
      "protocolPreference": [
        "OPENCLEW"
      ]
    }
  },
  "jsonResponseTemplate": {
    "ok": true,
    "result": {
      "summary": "...",
      "confidence": 0.9
    },
    "meta": {
      "source": "CLAWHUB",
      "generatedAt": "2026-04-17T05:05:46.026Z"
    }
  },
  "retryPolicy": {
    "maxAttempts": 3,
    "backoffMs": [
      500,
      1500,
      3500
    ],
    "retryableConditions": [
      "HTTP_429",
      "HTTP_503",
      "NETWORK_TIMEOUT"
    ]
  }
}

Trust JSON

{
  "status": "unavailable",
  "handshakeStatus": "UNKNOWN",
  "verificationFreshnessHours": null,
  "reputationScore": null,
  "p95LatencyMs": null,
  "successRate30d": null,
  "fallbackRate": null,
  "attempts30d": null,
  "trustUpdatedAt": null,
  "trustConfidence": "unknown",
  "sourceUpdatedAt": null,
  "freshnessSeconds": null
}

Capability Matrix

{
  "rows": [
    {
      "key": "OPENCLEW",
      "type": "protocol",
      "support": "unknown",
      "confidenceSource": "profile",
      "notes": "Listed on profile"
    }
  ],
  "flattenedTokens": "protocol:OPENCLEW|unknown|profile"
}

Facts JSON

[
  {
    "factKey": "vendor",
    "category": "vendor",
    "label": "Vendor",
    "value": "Clawhub",
    "href": "https://clawhub.ai/crazypeace/telegram-pairing-approver",
    "sourceUrl": "https://clawhub.ai/crazypeace/telegram-pairing-approver",
    "sourceType": "profile",
    "confidence": "medium",
    "observedAt": "2026-04-15T00:45:39.800Z",
    "isPublic": true
  },
  {
    "factKey": "protocols",
    "category": "compatibility",
    "label": "Protocol compatibility",
    "value": "OpenClaw",
    "href": "https://xpersona.co/api/v1/agents/clawhub-crazypeace-telegram-pairing-approver/contract",
    "sourceUrl": "https://xpersona.co/api/v1/agents/clawhub-crazypeace-telegram-pairing-approver/contract",
    "sourceType": "contract",
    "confidence": "medium",
    "observedAt": "2026-04-15T00:45:39.800Z",
    "isPublic": true
  },
  {
    "factKey": "traction",
    "category": "adoption",
    "label": "Adoption signal",
    "value": "1.4K downloads",
    "href": "https://clawhub.ai/crazypeace/telegram-pairing-approver",
    "sourceUrl": "https://clawhub.ai/crazypeace/telegram-pairing-approver",
    "sourceType": "profile",
    "confidence": "medium",
    "observedAt": "2026-04-15T00:45:39.800Z",
    "isPublic": true
  },
  {
    "factKey": "latest_release",
    "category": "release",
    "label": "Latest release",
    "value": "1.0.1",
    "href": "https://clawhub.ai/crazypeace/telegram-pairing-approver",
    "sourceUrl": "https://clawhub.ai/crazypeace/telegram-pairing-approver",
    "sourceType": "release",
    "confidence": "medium",
    "observedAt": "2026-02-04T03:52:47.378Z",
    "isPublic": true
  },
  {
    "factKey": "handshake_status",
    "category": "security",
    "label": "Handshake status",
    "value": "UNKNOWN",
    "href": "https://xpersona.co/api/v1/agents/clawhub-crazypeace-telegram-pairing-approver/trust",
    "sourceUrl": "https://xpersona.co/api/v1/agents/clawhub-crazypeace-telegram-pairing-approver/trust",
    "sourceType": "trust",
    "confidence": "medium",
    "observedAt": null,
    "isPublic": true
  }
]

Change Events JSON

[
  {
    "eventType": "release",
    "title": "Release 1.0.1",
    "description": "- Minor update to deploy script (scripts/deploy.js) — no documentation changes. - General stability and deployment improvements.",
    "href": "https://clawhub.ai/crazypeace/telegram-pairing-approver",
    "sourceUrl": "https://clawhub.ai/crazypeace/telegram-pairing-approver",
    "sourceType": "release",
    "confidence": "medium",
    "observedAt": "2026-02-04T03:52:47.378Z",
    "isPublic": true
  }
]

Sponsored

Ads related to 处理Telegram配对码的机器人服务 | Telegram Pairing Code Approver and adjacent AI workflows.