agentsclimarketplace

Telegram solana new token launch scanner

Skill 0xgetz/xi-agent-skills/telegram-bots/telegram-solana-new-token-launch-scanner

Build a Telegram bot to detect new token deployments on Solana, with on-chain/market data sourcing, risk/honeypot filtering, and Telegram alert delivery. Activate when the user wants to detect new token deployments on Solana and get alerts in Telegram.From its SKILL.md

Install
npx -y skills add 0xgetz/xi-agent-skills --skill telegram-solana-new-token-launch-scanner

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

2 things to look at

  • no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
  • 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

SKILL.md

2.3 KB, 454 tokens by cl100k_base, as published. Nobody here has run it

Telegram Solana New Token Launch Scanner

Overview

A Telegram bot skill that helps detect new token deployments on Solana. It is a research/monitoring tool that pushes timely alerts to a Telegram chat or channel — it does not guarantee profit and does not place trades for you unless you explicitly wire that in.

When to use this skill

Activate when the user wants to detect new token deployments on Solana and receive alerts in Telegram.

Architecture

  1. Data source — pull from on-chain RPC/indexers (e.g. Etherscan-style APIs, DEX subgraphs), market-data APIs (CoinGecko/DEXScreener-style), or social feeds.
  2. Detection logic — apply thresholds/filters (volume, liquidity, holders, contract checks) to find candidates.
  3. Risk filtering — run safety checks (honeypot, LP lock, holder concentration) before alerting.
  4. Telegram delivery — send formatted alerts via the Telegram Bot API sendMessage.
  5. Scheduling — run on a poll interval or webhook.

Telegram delivery pattern

import requests, os
TOKEN = os.environ["TELEGRAM_BOT_TOKEN"]   # store as a secret, never hardcode
CHAT_ID = os.environ["TELEGRAM_CHAT_ID"]
def alert(text):
    requests.post(f"https://api.telegram.org/bot{TOKEN}/sendMessage",
                  json={"chat_id": CHAT_ID, "text": text, "parse_mode": "Markdown"})

Safety checklist (critical for alpha hunting)

  • Verify the token is sellable (honeypot check) before acting.
  • Check liquidity is locked/burned and not removable by the deployer.
  • Inspect holder concentration — avoid tokens where a few wallets hold most supply.
  • Review the contract for mint, blacklist, fee-change, and proxy functions.
  • Assume most new tokens fail; size any exposure as money you can fully lose.

Disclaimer

High-risk and educational. No profit is guaranteed. This is not financial advice. New/low-cap tokens carry extreme risk of total loss, rug pulls, and scams.

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Keep looking

Skills are one crate of 326,452. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.