Agent skill
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.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/other/other/meta-neversight-skills-feed
SKILL.md
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:
- 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:
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 authentication
Bot 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"
)
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?