chore: import upstream snapshot with attribution
CI (OpenClaw E2E) / openclaw test (push) Has been cancelled
CI / coverage-report (push) Has been cancelled
CI / test-kubernetes (push) Has been cancelled
CI / should-run-thorough (push) Has been cancelled
CI / test-thorough (cloudwatch-demo) (push) Has been cancelled
CI / test-thorough (flink-ecs) (push) Has been cancelled
CI / test-thorough (upstream-lambda) (push) Has been cancelled
CI / test-thorough (prefect-ecs-fargate) (push) Has been cancelled
Release / build-binaries (zip, opensre.exe, onefile, windows-latest, windows-x64) (push) Has been cancelled
Benchmark image — build + push to ECR (any adapter) / build + push (push) Has been cancelled
CI / quality (ubuntu-latest) (push) Has been cancelled
CI / test (tools-runtime) (push) Has been cancelled
CI / test (e2e-general) (push) Has been cancelled
CI / test (cli-runtime) (push) Has been cancelled
CI / test (e2e-provider-and-openclaw) (push) Has been cancelled
CI / test (integrations-and-misc) (push) Has been cancelled
Release / verify (push) Has been cancelled
Release / build-python-dist (push) Has been cancelled
Release / build-binaries (tar.gz, opensre, onedir, macos-15-intel, darwin-x64) (push) Has been cancelled
Release / build-binaries (tar.gz, opensre, onedir, macos-latest, darwin-arm64) (push) Has been cancelled
Release / build-binaries (tar.gz, opensre, onedir, ubuntu-22.04, linux-x64) (push) Has been cancelled
Release / publish-release (push) Has been cancelled
Release / publish-main-release (push) Has been cancelled
Interactive Shell Live (PR + post-merge) / turn-checks (no-LLM) (push) Has been cancelled
CodeQL / Analyze (python) (push) Has been cancelled
Interactive Shell Live (PR + post-merge) / turn-live shard ${{ matrix.shard_index }} (push) Has been cancelled
Release / prepare (push) Has been cancelled
Release / build-binaries (tar.gz, opensre, onedir, ubuntu-22.04-arm, linux-arm64) (push) Has been cancelled
Synthetic Deterministic Tests / Synthetic offline (deterministic) (push) Has been cancelled

This commit is contained in:
wehub-resource-sync
2026-07-13 13:10:45 +08:00
commit 4b6817381b
3933 changed files with 525247 additions and 0 deletions
@@ -0,0 +1,12 @@
"""Registry entrypoint for the Telegram send-message tool."""
from __future__ import annotations
from integrations.telegram.tools.telegram_send_message_tool.tool import (
TelegramSendMessageTool,
telegram_send_message,
)
TOOL_MODULES = ("tool",)
__all__ = ["TOOL_MODULES", "TelegramSendMessageTool", "telegram_send_message"]
@@ -0,0 +1,7 @@
"""Shared constants for Telegram message tools."""
from __future__ import annotations
from core.domain.types.evidence import EvidenceSource
SOURCE: EvidenceSource = "telegram"
@@ -0,0 +1,38 @@
"""Credential resolution and transport dispatch for Telegram messages."""
from __future__ import annotations
from integrations.telegram.credentials import load_credentials_from_env
from integrations.telegram.delivery import send_telegram_report
from integrations.telegram.formatting import markdown_to_telegram_html
from integrations.telegram.tools.telegram_send_message_tool.models import TelegramDeliveryTarget
def resolve_target(
chat_id: str,
reply_to_message_id: str,
) -> tuple[TelegramDeliveryTarget | None, str]:
try:
creds = load_credentials_from_env(chat_id_override=chat_id or None)
except Exception as exc:
return None, str(exc)
return (
TelegramDeliveryTarget(
bot_token=creds.bot_token,
chat_id=creds.chat_id,
reply_to_message_id=reply_to_message_id,
),
"",
)
def dispatch_message(message: str, target: TelegramDeliveryTarget) -> tuple[bool, str]:
return send_telegram_report(
markdown_to_telegram_html(message),
{
"bot_token": target.bot_token,
"chat_id": target.chat_id,
"reply_to_message_id": target.reply_to_message_id,
},
parse_mode="HTML",
)
@@ -0,0 +1,26 @@
"""Typed models for Telegram message delivery."""
from __future__ import annotations
from dataclasses import dataclass
@dataclass(frozen=True)
class TelegramDeliveryTarget:
"""Resolved Telegram delivery destination.
``bot_token`` is deliberately excluded from repr so failed assertions,
tracebacks, or debug logs do not leak the Telegram credential.
"""
bot_token: str
chat_id: str
reply_to_message_id: str = ""
def __repr__(self) -> str:
return (
"TelegramDeliveryTarget("
f"chat_id={self.chat_id!r}, "
f"reply_to_message_id={self.reply_to_message_id!r}, "
"bot_token=<redacted>)"
)
@@ -0,0 +1,44 @@
"""Stable result shapes for Telegram message delivery."""
from __future__ import annotations
from typing import Any
from integrations.telegram.tools.telegram_send_message_tool.constants import SOURCE
from integrations.telegram.tools.telegram_send_message_tool.models import TelegramDeliveryTarget
def failed_result(
*,
available: bool,
error: str,
error_type: str,
chat_id: str = "",
reply_to_message_id: str = "",
message_length: int = 0,
) -> dict[str, Any]:
return {
"source": SOURCE,
"available": available,
"status": "failed",
"sent": False,
"error": error,
"error_type": error_type,
"chat_id": chat_id,
"reply_to_message_id": reply_to_message_id,
"message_length": message_length,
}
def sent_result(*, target: TelegramDeliveryTarget, message_length: int) -> dict[str, Any]:
return {
"source": SOURCE,
"available": True,
"status": "sent",
"sent": True,
"error": "",
"error_type": "",
"chat_id": target.chat_id,
"reply_to_message_id": target.reply_to_message_id,
"message_length": message_length,
}
@@ -0,0 +1,128 @@
"""Agent-callable Telegram message action."""
from __future__ import annotations
from typing import Any
from core.tool_framework.base import BaseTool
from core.tool_framework.tool_decorator import tool
from integrations.telegram.tools.telegram_send_message_tool.constants import SOURCE
from integrations.telegram.tools.telegram_send_message_tool.delivery import (
dispatch_message,
resolve_target,
)
from integrations.telegram.tools.telegram_send_message_tool.results import (
failed_result,
sent_result,
)
from integrations.telegram.tools.telegram_send_message_tool.validation import (
normalize_optional_text,
validate_message,
)
class TelegramSendMessageTool(BaseTool):
"""Send a plain-text message via the configured Telegram integration."""
name = "telegram_send_message"
source = SOURCE
description = (
"Send a plain-text message via the configured Telegram integration. "
"Use this for explicit user-requested Telegram message actions and for "
"incident notifications. The tool resolves credentials internally and "
"returns structured delivery status without exposing secrets."
)
use_cases = [
"Sending a user-requested message to the configured Telegram default chat",
"Posting a concise incident notification to a Telegram chat or channel",
"Following up after an investigation with a short status update",
]
requires = ["telegram"]
side_effect_level = "external"
requires_approval = True
approval_reason = "Sends a message via Telegram on your behalf."
input_schema = {
"type": "object",
"properties": {
"message": {
"type": "string",
"description": "Plain-text message body. Long messages are truncated to Telegram's limit.",
},
"chat_id": {
"type": "string",
"description": (
"Optional Telegram chat or channel id. Defaults to the configured "
"default_chat_id when omitted."
),
},
"reply_to_message_id": {
"type": "string",
"description": "Optional Telegram message id to reply to.",
},
},
"required": ["message"],
}
outputs = {
"status": "delivery dispatch status - 'sent' or 'failed'",
"sent": "boolean delivery result for easy downstream checks",
"error": "error detail when status is 'failed'",
"error_type": "stable failure class: validation_error, configuration_error, or delivery_error",
"chat_id": "Telegram chat id used for delivery",
"reply_to_message_id": "Telegram message id used for reply threading, when supplied",
"message_length": "length of the normalized message submitted for delivery",
}
def is_available(self, sources: dict[str, Any]) -> bool:
telegram = sources.get("telegram") or {}
return bool(telegram.get("bot_token"))
# extract_params intentionally stays empty. It is serialized into tool-call
# traces, so Telegram credentials must be resolved inside run() only.
def run(
self,
message: str,
chat_id: str = "",
reply_to_message_id: str = "",
**_kwargs: Any,
) -> dict[str, Any]:
chat_id = normalize_optional_text(chat_id)
reply_to_message_id = normalize_optional_text(reply_to_message_id)
valid, normalized_message, validation_error = validate_message(message)
if not valid:
return failed_result(
available=True,
error=validation_error,
error_type="validation_error",
chat_id=chat_id,
reply_to_message_id=reply_to_message_id,
)
target, resolution_error = resolve_target(chat_id, reply_to_message_id)
if target is None:
return failed_result(
available=False,
error=resolution_error,
error_type="configuration_error",
chat_id=chat_id,
reply_to_message_id=reply_to_message_id,
message_length=len(normalized_message),
)
ok, error = dispatch_message(normalized_message, target)
if not ok:
return failed_result(
available=True,
error=error,
error_type="delivery_error",
chat_id=target.chat_id,
reply_to_message_id=target.reply_to_message_id,
message_length=len(normalized_message),
)
return sent_result(target=target, message_length=len(normalized_message))
telegram_send_message = tool(
TelegramSendMessageTool(),
surfaces=("investigation", "chat", "action"),
)
@@ -0,0 +1,14 @@
"""Input normalization and validation for Telegram message actions."""
from __future__ import annotations
def normalize_optional_text(value: str) -> str:
return str(value or "").strip()
def validate_message(message: str) -> tuple[bool, str, str]:
normalized = str(message or "").strip()
if not normalized:
return False, "", "Message cannot be empty."
return True, normalized, ""