meta
Original:🇺🇸 English
Translated
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.
9installs
Sourceglebis/claude-skills
Added on
NPX Install
npx skill4agent add glebis/claude-skills metaTags
Translated version includes tags in frontmatterSKILL.md Content
View Translation Comparison →Meta Skill - Command Handler
⚠️ IMPORTANT: This skill is a COMMAND HANDLER registration. It tells the bot to handle commands by spawning Claude Code Agent SDK sessions in the telegram_agent directory.
/metaWhat This Does
Registers as a command handler that:
/meta- Takes the user's prompt after
/meta - Spawns a Claude Code Agent SDK session
- Sets working directory to
~/ai_projects/telegram_agent - Returns responses in Telegram
Implementation
The actual command handler needs to be registered in the telegram bot codebase at:
- - Add meta command handler
src/bot/handlers/claude_commands.py - - Register the command
src/bot/bot.py
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 command
/claude
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 with custom parameter:
ClaudeCodeServicecwdpython
service.execute_prompt(
prompt=user_prompt,
cwd="/Users/server/ai_projects/telegram_agent"
)