ワンクリックで
create-group
Use when user wants to create a new Telegram group, supergroup, or channel, optionally inviting members on creation.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Use when user wants to create a new Telegram group, supergroup, or channel, optionally inviting members on creation.
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 | create-group |
| description | Use when user wants to create a new Telegram group, supergroup, or channel, optionally inviting members on creation. |
| allowed-tools | Bash, Read, Grep, Glob |
Create groups, supergroups, or channels and optionally invite users.
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"
# Create supergroup (default)
bun "$SCRIPT" create-group "My Group" --about "Group description"
# Create with initial members
bun "$SCRIPT" create-group "Project Chat" --users @user1 @user2
# Create broadcast channel
bun "$SCRIPT" create-group "Announcements" --type channel --about "Updates"
# Create legacy group (limited to ~200 members)
bun "$SCRIPT" create-group "Small Team" --type group --users @teammate
EOF
| Parameter | Type | Description |
|---|---|---|
| title | string | Group/channel name |
--type | choice | supergroup (default), channel, group |
--about | string | Description text |
--users | list | Users to invite (usernames or IDs) |
| Type | Members | Messaging | Use Case |
|---|---|---|---|
group | ~200 max | Two-way | Small teams |
supergroup | 200K max | Two-way + admin tools | Large communities |
channel | Unlimited | One-way (admins only) | Broadcasts |
After this skill completes, check before closing:
Only update if the issue is real and reproducible — not speculative.