meta

Register a /meta command handler that spawns Claude Code Agent SDK sessions.

345|52|Updated Oct 25, 2025
One-click install
npx skills add https://github.com/glebis/claude-skills --skill meta-glebis
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: meta
Source: https://github.com/glebis/claude-skills/tree/main/meta
Command: npx skills add https://github.com/glebis/claude-skills --skill meta-glebis

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Streamlines Telegram bot development by providing a dedicated /meta command handler that automatically launches Claude Code Agent SDK sessions within the telegram_agent workspace.

Core Features & Use Cases

  • Registers /meta as a command handler connected to Claude Code Agent SDK sessions.
  • Sets the working directory to the telegram_agent project for consistent context.
  • Lightweight, extendable integration point for future commands by updating the relevant bot code.

Quick Start

Register /meta to spawn Claude Code Agent SDK sessions in the telegram_agent directory.

Frequently Asked Questions about meta

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I register a Telegram bot command to spawn a Claude Code Agent SDK session?

To register a Telegram bot command for Claude Code Agent SDK sessions, you update the src/bot/handlers.py and src/bot/bot.py files to wire the command handler. This registers the /meta prompt to automatically launch in-context sessions.

What is the working directory context when spawning a Claude Code Agent SDK session via a Telegram bot?

The working directory context for a spawned Claude Code Agent SDK session is set to the telegram_agent project directory. This ensures the in-context session operates consistently within the specific Telegram bot development workspace.

How does adding a command handler in bot.py integrate Claude Code Agent SDK with Telegram bot development?

Adding a command handler in bot.py integrates Claude Code Agent SDK by mapping a specific Telegram bot prompt to the SDK session spawner. This updates src/bot/bot.py and src/bot/handlers.py to connect the bot interface directly to the agent.

Can I extend the /meta command handler to launch additional Claude Code Agent SDK sessions?

Yes, the /meta command handler serves as a lightweight, extendable integration point for future commands. You can extend it by updating the relevant bot code in src/bot/handlers.py to register and wire additional Claude Code Agent SDK session triggers.

Do I need specific file structures to register a Claude Code Agent SDK command in a Telegram bot?

Yes, registering a Claude Code Agent SDK command requires a specific file structure including src/bot/handlers.py and src/bot/bot.py. These files must be updated to properly register and wire the command handler within the telegram_agent directory.

Why does my Telegram bot command fail to launch the Claude Code Agent SDK session in the correct directory?

A Telegram bot command fails to launch the Claude Code Agent SDK session correctly if the working directory is not set to the telegram_agent project. The implementation must explicitly specify the telegram_agent directory to maintain consistent context.