원클릭으로
pin-message
Use when user wants to pin or unpin a message in a Telegram chat, group, or channel, or manage pinned messages.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Use when user wants to pin or unpin a message in a Telegram chat, group, or channel, or manage pinned messages.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
user wants to send a WhatsApp message, share a link or document via WhatsApp, generate a wa.me click-to-chat link, or message a contact on WhatsApp by phone number.
Claude Code hooks development guide. TRIGGERS - create hook, PostToolUse, PreToolUse, Stop hook, hook lifecycle, decision block.
Deploy static HTML files to Cloudflare Workers with 1Password credential management.
Dual-channel notifications on watchexec events. TRIGGERS - watchexec alerts, Telegram+Pushover, file change notifications.
Session log provenance tracking. TRIGGERS - who created, trace origin, session archaeology, ADR reference.
Generate custom Claude Code slash commands via guided question flow. TRIGGERS - create slash command, generate command, custom command.
| name | pin-message |
| description | Use when user wants to pin or unpin a message in a Telegram chat, group, or channel, or manage pinned messages. |
| allowed-tools | Bash, Read, Grep, Glob |
Pin or unpin messages in chats, groups, and channels.
Self-Evolving Skill: This skill improves through use. If instructions are wrong, parameters drifted, or a workaround was needed — fix this file immediately, don't defer. Only update for real, reproducible issues.
~/.local/share/gramjs/<profile>.session
/tlg:setup first/usr/bin/env bash << 'EOF'
SCRIPT="${CLAUDE_PLUGIN_ROOT:-$HOME/.claude/plugins/marketplaces/cc-skills/plugins/tlg}/scripts/tg-cli.ts"
# Pin a message (with notification)
bun "$SCRIPT" pin <chat> <message_id>
# Pin silently (no notification)
bun "$SCRIPT" pin <chat> <message_id> --silent
# Unpin a specific message
bun "$SCRIPT" pin <chat> <message_id> --unpin
# Unpin all messages
bun "$SCRIPT" pin <chat> --unpin
EOF
| Parameter | Type | Description |
|---|---|---|
| chat | string/int | Chat/group/channel |
| message_id | int | Message to pin (omit with --unpin to unpin all) |
--unpin | flag | Unpin instead of pin |
--silent | flag | Pin without sending notification |
After this skill completes, check before closing:
Only update if the issue is real and reproducible — not speculative.