From tlg
Use when user wants to create a new Telegram group, supergroup, or channel, optionally inviting members on creation.
How this skill is triggered — by the user, by Claude, or both
Slash command
/tlg:create-groupThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Create groups, supergroups, or channels and optionally invite users.
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.
Guides collaborative design exploration before implementation: explores context, asks clarifying questions, proposes approaches, and writes a design doc for user approval.
Creates structured, bite-sized implementation plans from specs or requirements before writing code. Useful for breaking down multi-step tasks into testable steps with file structure and task boundaries.
Synthesizes the current conversation into a structured spec (PRD) and publishes it to the project issue tracker with a ready-for-agent label, without interviewing the user.
npx claudepluginhub terrylica/cc-skills --plugin tlg