Loading source
Pulling the file list, source metadata, and syntax-aware rendering for this listing.
Source from bundle
Use when building or fixing aiogram 3 bots that need aiogram_i18n with Fluent/FTL, topic-aware reply handling, Telegram quote and forward-origin context, and pr
Files
Skill
Size
Entrypoint
Format
Open file
Syntax-highlighted preview of this file as included in the skill package.
references/context7-aiogram.md
1# Context7 for aiogram23Use Context7 when the task needs exact aiogram or aiogram_i18n API details instead of higher-level patterns.45## Install and availability67This skill does not install Context7 itself.89If the current Codex runtime already has the Context7 MCP server, use it directly.1011If Context7 is missing in Codex, add an MCP entry like:1213```toml14[mcp_servers.context7]15command = "npx"16args = ["-y", "@upstash/context7-mcp"]17```1819Then restart Codex so the MCP tools are loaded.2021## Recommended library IDs2223For aiogram 3 projects, use:24- `/aiogram/aiogram/v3.25.0` by default for aiogram 3 work25- `/aiogram/aiogram/v3.26.0` only if the target project is already on that version or explicitly wants the latest aiogram 3 docs2627For aiogram_i18n, use:28- `/aiogram/i18n`2930Avoid querying aiogram 4 docs for this skill unless the target project is explicitly on aiogram 4.3132## Use Context7 for3334- exact constructor parameters35- available fields on Telegram objects36- current examples for routers, dispatcher setup, keyboards, filters, and i18n middleware3738## Practical lookup rules3940- Pin aiogram queries to the closest aiogram 3 version that matches the repository.41- Use `/aiogram/i18n` for aiogram_i18n runtime details.42- If Context7 gives multiple plausible versions, prefer the project's installed version over the newest one.43- If a Context7 answer conflicts with the repository's installed dependency version, trust the repository and re-query the matching version.44- If Context7 does not cover a detail well enough, fall back to the package's upstream docs or source and say that you are doing so.45