LaunchKit · 2026
Back to Skills

telegram-context

Toggle-enabled skill that fetches Telegram message history at session start for conversational continuity.

0
480 downloads
by @fourthdensity

Setup & Installation

openclaw skills install @fourthdensity/telegram-context

Or with the ClawHub CLI, for registry-managed skill folders outside a full OpenClaw workspace:

npx clawhub install telegram-context

Version History

v1.0.1Feb 14, 2026 - Version note by skill developer:

Improved privacy documentation: clarified message handling, LLM provider transmission, and added security recommendations for sensitive conversations

What This Skill Does

Fetches recent Telegram message history at the start of each session so the agent has context from prior conversations. Toggle on or off anytime via slash commands, with manual fetch available for on-demand retrieval. State is stored locally in a JSON file, no external credentials required.

Unlike memory files alone, this pulls actual message content at session start rather than relying on manually written summaries.

When to use it

  • Resuming a multi-day project discussion without re-explaining context
  • Fetching the last 10 messages before a task handoff
  • Disabling auto-fetch during a sensitive conversation
  • Manually pulling 50 messages to catch up after a long absence
  • Checking how many messages were last fetched with a status command

Example Workflow

Here's how your AI assistant might use this skill in practice.

INPUT

User asks: catch me up on what we discussed yesterday

AGENT
  1. 1Check memory/telegram-context.json for enabled state
  2. 2Call message tool with action: list and fetchCount from stored settings
  3. 3Retrieve last 20 Telegram messages from the current chat
  4. 4Summarize the retrieved messages for the context window
  5. 5Present a continuity summary to the user
OUTPUT

A summary of recent Telegram conversation history, scoped to the current chat