
Meta
- 199 installs
- 339 repo stars
- Updated August 4, 2026
- glebis/claude-skills
Author title, description, Open Graph, Twitter Card, and canonical meta tags plus launch snippets for pages going live on the public web.
About
meta helps teams ship correct HTML metadata—titles, descriptions, social cards, and canonical links—so new pages index cleanly and render compelling previews when distributed at launch.
- Title and description tags
- Open Graph and Twitter Cards
- Canonical URL guidance
- Launch-ready snippets
- Share preview optimization
Meta by the numbers
- 199 all-time installs (skills.sh)
- Ranked #976 of 1,879 Marketing & SEO skills by installs in the Skillselion catalog
- Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/glebis/claude-skills --skill metaAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 199 |
|---|---|
| repo stars | ★ 339 |
| Last updated | August 4, 2026 |
| Repository | glebis/claude-skills ↗ |
What it does
Author title, description, Open Graph, Twitter Card, and canonical meta tags plus launch snippets for pages going live on the public web.
Files
Meta Skill - Command Handler
⚠️ IMPORTANT: This skill is a COMMAND HANDLER registration. It tells the bot to handle /meta commands by spawning Claude Code Agent SDK sessions in the telegram_agent directory.
What This Does
Registers /meta as a command handler that: 1. Takes the user's prompt after /meta 2. Spawns a Claude Code Agent SDK session 3. Sets working directory to ~/ai_projects/telegram_agent 4. Returns responses in Telegram
Implementation
The actual command handler needs to be registered in the telegram bot codebase at:
src/bot/handlers/claude_commands.py- Add meta command handlersrc/bot/bot.py- Register the command
Usage Pattern
User types in Telegram:
/meta fix the rate limiting bug
/meta add better logging
/meta refactor authenticationBot spawns Claude Agent SDK with:
- Working directory:
~/ai_projects/telegram_agent - Prompt: User's text after
/meta - Same infrastructure as
/claudecommand
Example User Requests
/meta fix bug in message handler/meta add error recovery to file sending/meta refactor the session management/meta improve the keyboard layout
Implementation Notes
Must use ClaudeCodeService with custom cwd parameter:
service.execute_prompt(
prompt=user_prompt,
cwd="/Users/server/ai_projects/telegram_agent"
)