brianmok888

Aiogram Dialog Menus Skill — AI skill for Claude Code

AI community

AI coding agent skill for building interactive Telegram bot menus with aiogram_dialog.

How to install Aiogram Dialog Menus Skill

This entry records only its repository, not the path inside it, so there is no exact command to give. Open brianmok888/aiogram-dialog-menus-skill and copy the folder into ~/.claude/skills/, or the file into ~/.claude/agents/.

What Aiogram Dialog Menus Skill does

AI coding agent skill for building interactive Telegram bot menus with aiogram_dialog.

Alternatives in AI

  • Bot On Anything — A large model-based chatbot builder that can quickly integrate AI models (including ChatGPT, Claude, Gemini) i 4.2k ★
  • Claude To Im Skill — Bridge Claude Code / Codex to IM platforms — chat with AI coding agents from Telegram, Discord, or Feishu/Lark 1.3k ★
  • CLI WeChat Bridge — 将 AI 命令行工具以最为原生的方式,集成到微信 ClawBot / 企业微信 bot 中,目前支持集成 Codex、Claude Code、OpenCode、Pi Agent 478 ★

README

aiogram-dialog-menus

AI coding assistant skill for building interactive Telegram bot menus using `aiogram_dialog` v2.x (latest: 2.6.0). Compatible with OpenCode, Claude, Codex, and other AI coding agents.

What This Does

Provides expert knowledge for creating:

  • Multi-step wizards (registration, booking, configuration)
  • Menu systems with nested options
  • Polls and surveys with interactive selection
  • Admin panels with toggleable settings
  • Calendar/date pickers
  • Media galleries with scrolling
  • Link previews and visibility-controlled widgets
  • Paginated item lists
  • Any complex stateful user interaction

Installation

OpenCode

Ask your AI agent:

Install the aiogram-dialog-menus skill from https://github.com/brianmok888/aiogram-dialog-menus-skill into ~/.config/opencode/skills/

Claude CLI

Add to your global instructions:

# Create user-level CLAUDE.md if it doesn't exist
mkdir -p ~/.claude

# Append skill content to your global instructions
curl -sL https://raw.githubusercontent.com/brianmok888/aiogram-dialog-menus-skill/main/SKILL.md >> ~/.claude/CLAUDE.md

Or for project-specific use, copy `SKILL.md` content to your project's `CLAUDE.md`:

# Project-level (committed to git)
curl -sL https://raw.githubusercontent.com/brianmok888/aiogram-dialog-menus-skill/main/SKILL.md >> ./CLAUDE.md

Codex CLI

Add to your global instructions:

# Create Codex home directory if it doesn't exist
mkdir -p ~/.codex

# Append skill content to your global AGENTS.md
curl -sL https://raw.githubusercontent.com/brianmok888/aiogram-dialog-menus-skill/main/SKILL.md >> ~/.codex/AGENTS.md

Or for project-specific use:

# Project-level AGENTS.md (Codex auto-discovers this)
curl -sL https://raw.githubusercontent.com/brianmok888/aiogram-dialog-menus-skill/main/SKILL.md >> ./AGENTS.md

Manual

Clone or download this repo to your agent's skills directory:

git clone https://github.com/brianmok888/aiogram-dia