mirror of
https://github.com/openclaw/openclaw.git
synced 2026-08-25 11:55:47 -06:00
234df15a6d
* build(deps): refresh dependencies after cooldown Apply dependency, toolchain, action, image, and exact tool updates released by the inclusive 2026-08-16 seven-day cutoff. Adapt owner boundaries for the resulting CUA, logging, Teams, Markdown, native, and test-harness contract changes while retaining versions blocked by upstream compatibility constraints. * fix(ui): align markdown renderer env typing * fix(deps): align postcss and mistral peer contracts * fix(deps): repair refreshed dependency contracts * fix(deps): retain tslog startup budget * fix(ci): verify Android tools with SHA-256 * fix(ci): fence Android SDK cache version
89 lines
2.2 KiB
JSON
89 lines
2.2 KiB
JSON
{
|
|
"name": "@openclaw/telegram",
|
|
"version": "2026.8.1",
|
|
"private": true,
|
|
"description": "OpenClaw Telegram channel plugin",
|
|
"type": "module",
|
|
"dependencies": {
|
|
"@grammyjs/runner": "2.0.3",
|
|
"@grammyjs/transformer-throttler": "1.2.1",
|
|
"grammy": "1.45.1",
|
|
"typebox": "1.3.14",
|
|
"undici": "8.10.0",
|
|
"zod": "4.4.3"
|
|
},
|
|
"devDependencies": {
|
|
"@openclaw/plugin-sdk": "workspace:*"
|
|
},
|
|
"openclaw": {
|
|
"extensions": [
|
|
"./index.ts"
|
|
],
|
|
"setupEntry": "./setup-entry.ts",
|
|
"setupFeatures": {
|
|
"configPromotion": true
|
|
},
|
|
"channel": {
|
|
"id": "telegram",
|
|
"configuredState": {
|
|
"env": {
|
|
"anyOf": [
|
|
"TELEGRAM_BOT_TOKEN"
|
|
]
|
|
}
|
|
},
|
|
"approvalFlags": [
|
|
"native"
|
|
],
|
|
"label": "Telegram",
|
|
"selectionLabel": "Telegram (Bot API)",
|
|
"detailLabel": "Telegram Bot",
|
|
"docsPath": "/channels/telegram",
|
|
"docsLabel": "telegram",
|
|
"blurb": "simplest way to get started — register a bot with @BotFather and get going.",
|
|
"systemImage": "paperplane",
|
|
"selectionDocsPrefix": "",
|
|
"selectionDocsOmitLabel": true,
|
|
"selectionExtras": [
|
|
"https://openclaw.ai"
|
|
],
|
|
"markdownCapable": true,
|
|
"setup": {
|
|
"fields": [
|
|
{
|
|
"key": "token",
|
|
"kind": "string",
|
|
"sensitive": true,
|
|
"cli": {
|
|
"flags": "--token <token>",
|
|
"description": "Telegram bot token"
|
|
}
|
|
},
|
|
{
|
|
"key": "tokenFile",
|
|
"kind": "string",
|
|
"sensitive": true,
|
|
"cli": {
|
|
"flags": "--token-file <path>",
|
|
"description": "Telegram bot token file"
|
|
}
|
|
},
|
|
{
|
|
"key": "useEnv",
|
|
"kind": "boolean",
|
|
"cli": {
|
|
"flags": "--use-env",
|
|
"description": "Use TELEGRAM_BOT_TOKEN"
|
|
},
|
|
"envVars": ["TELEGRAM_BOT_TOKEN"]
|
|
}
|
|
]
|
|
},
|
|
"commands": {
|
|
"nativeCommandsAutoEnabled": true,
|
|
"nativeSkillsAutoEnabled": true
|
|
}
|
|
}
|
|
}
|
|
}
|