用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/javimosch/open-claw-skills --skill tsend命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | tsend |
| description | Send files via Telegram. Example: tsend send document.pdf |
Zero-config CLI tool. Install once, send forever.
Tip: Try using tsend command first. If command not found, then install.
cd <skill-path>/scripts
uv tool install -e .
Replace <skill-path> with the actual skill path.
After installation, tsend command is available globally.
If you don't have uv:
cd <skill-path>/scripts
pip install -e .
tsend send document.pdf
tsend send photo.jpg --caption "Description"
tsend send image.png -c "Screenshot"
# Send multiple files
tsend send file1.pdf file2.jpg file3.png
tsend send *.pdf --caption "Documents" # caption only goes to first file
tsend send file.pdf --profile mybot
tsend send photo.png -c "Description" -p picoclaw
That's it. No setup, no checks, no questions.
tsend config set --token "YOUR_BOT_TOKEN" --chat-id "YOUR_CHAT_ID"
Or specify a profile:
tsend config set --profile mybot --token "TOKEN" --chat-id "CHAT_ID"
tsend config default mybot # Set as default
The tool saves config to ~/.tsend/config.json.
Manage multiple bots with profiles:
# List all profiles
tsend config list
# Show specific profile
tsend config show --profile mybot
# Send with specific profile
tsend send file.pdf --profile mybot
Set default profile via environment:
export TSEND_PROFILE=mybot
tsend send file.pdf # Uses 'mybot' profile
Useful for different services (nanobot, picoclaw, etc.).
"token invalid" → Fix with one command:
tsend config set --token NEW_TOKEN --chat-id NEW_ID
No reinstall, no config file hunting.