glebis/meta
Execute Claude Code commands in the telegram_agent project directory. Use when the user wants to work on the telegram agent itself, fix bugs, add features, or modify the bot code. This is a COMMAND HANDLER, not a script executor.
npx skills add https://github.com/glebis/claude-skills --skill meta
⚠️ 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.
Registers /meta as a command handler that:
/meta~/ai_projects/telegram_agentThe 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 commandUser types in Telegram:
/meta fix the rate limiting bug
/meta add better logging
/meta refactor authentication
Bot spawns Claude Agent SDK with:
~/ai_projects/telegram_agent/meta/claude command/meta fix bug in message handler/meta add error recovery to file sending/meta refactor the session management/meta improve the keyboard layoutMust use ClaudeCodeService with custom cwd parameter:
service.execute_prompt(
prompt=user_prompt,
cwd="/Users/server/ai_projects/telegram_agent"
)
Take glebis/meta from the repository into ~/.claude/skills for personal
use, or into .claude/skills inside a project.
The agent identifies a skill by the name field in its header. Two skills with the
same name cannot sit side by side — one of them will be ignored.