Выбор модели Claude
Компромисс Opus/Sonnet/Haiku и как выбрать — без гаданий.
Токены, контекст и стоимость
Правильно считайте токены, отличайте max_tokens от окна контекста и оценивайте стоимость.
Ваш первый вызов API
Установите SDK, пройдите аутентификацию и сделайте реальный вызов к Claude на Python, TypeScript или cURL.
Стриминг и многоходовые диалоги
Стримьте ответы и управляйте историей в API без сохранения состояния.
Использование инструментов / вызов функций
Определяйте инструменты, запускайте агентный цикл и обрабатывайте результаты.
Зрение, PDF и ввод файлов
Отправляйте изображения и документы и повторно используйте загрузки через file_id.
Структурированный вывод
Получайте JSON, соответствующий схеме, на который можно положиться — а не «промпт и молись».
Расширенное мышление и усилие
Адаптивное рассуждение и контроль усилия — выбор глубины в зависимости от нагрузки.
Effort tuning: 5 levels, model defaults, and the cache trap
The July 2026 effort parameter has five levels — low, medium, high, xhigh, max — and lives inside output_config, not at the top level. It affects tool calls (not just thinking), invalidates prompt cache when changed mid-conversation, and each model has a different recommended starting point. The practical tuning guide.
The advisor tool: Sonnet does the work, Fable does the thinking
The advisor server-tool (beta advisor-tool-2026-03-01) lets a fast executor model consult a stronger model mid-turn. Full field reference, the token-accounting trap most integrators miss, the model pairing matrix, and the exact prompts Anthropic ships in production.
Кэширование промптов и оптимизация затрат
Повторно используйте стабильный префикс промпта, чтобы снизить затраты и задержку, — и о подвохе, который всё ломает.
Mid-Conversation System Messages
Steer a long agent session without blowing up the prompt cache — the new system role you can append after any user turn.
Mid-Conversation Tool Changes
Add and retire tools between turns without invalidating the prompt cache — the Opus 5 beta that fixes the biggest hidden tax on long agent sessions.
Создание агентов на API
Один вызов против рабочего процесса против собственного агента — тест на выбор и проектирование цикла.
Управляемые агенты
Цикл агента, размещённый Anthropic: агенты против сессий, окружения, память, хранилища секретов и запланированные развёртывания (cron).
Managed Agents Memory Stores
The July 2026 beta — server-side persistent memory that mounts into a Managed Agents sandbox, with versioning, audit trail, and redaction.
Cowork и команды агентов
Агентное настольное рабочее пространство и многоагентное сотрудничество как продукты.
MCP и подключение к инструментам
Вызывайте удалённые MCP-серверы прямо из Messages API — форма запроса, списки разрешений и запретов, отложенная загрузка и ограничения, которые дают о себе знать в продакшене.
MCP 2026-07-28: The Stateless Spec
The biggest MCP revision since launch: the session is gone, every request self-describes, and any server instance can answer any call. What actually changed on July 28, 2026, and how to migrate without breaking today's servers.
MCP Apps: Interactive UIs Inside a Tool Call
MCP Apps (SEP-1865) lets an MCP server ship an HTML UI that the client renders inside a sandboxed iframe — with every action still routed through the standard JSON-RPC audit path. What the spec actually says, what to build with it, and what to refuse to build.
MCP Tasks: Long-Running Work Without the Session
The 2026-07-28 stateless MCP spec killed the session — so how do you model a 20-minute CI job, a batch import, or a human approval gate? With the official Tasks extension (SEP-2663). Full lifecycle, wire protocol, migration from the old experimental Tasks API, and the polling/notification patterns that actually work in production.
Playwright MCP: The Deep Practical Guide (2026)
Microsoft's Playwright MCP is now the #1 MCP server in the world — ahead of GitHub and Figma. The bit almost nobody teaches: the default accessibility-snapshot mode is not just faster than vision, it's a completely different automation paradigm. Profiles, opt-in caps, browser-extension mode that attaches to your real Chrome, the token-cost fight against Playwright-as-a-Skill, and the security line you must not cross.
Безопасность, отказы и запасные варианты
Корректно обрабатывайте отказы и отличайте их от блокировок классификатора.
Server-Side Fallbacks & Fallback Credit
The Opus 5 beta that turns a Fable 5 / Opus 5 refusal into a normal answer inside one API call — plus the credit token that stops you from paying the prompt cache twice on the retry.
Ошибки, лимиты частоты и надёжность
Карта ошибок, повторы с задержкой, уровни лимитов частоты и миграция моделей.
Память и редактирование контекста
Дайте агентам постоянную память и автоматически очищаемый контекст — клиентский инструмент memory tool плюс редактирование контекста, которое удаляет устаревшие результаты инструментов, чтобы пережить длительные запуски.
Программный вызов инструментов
Позвольте Claude вызывать ваши инструменты из Python внутри песочницы code-execution — сокращая количество обменов и удерживая промежуточные результаты вне контекста.
The Admin API: automate your Claude org
The operator's guide to Anthropic's Admin API — list members, invite users, run RBAC groups, offboard cleanly. Console + Claude Enterprise, with the seat-pool and SSO gotchas that trip real teams.
Inference Hooks: inline DLP for Claude Enterprise
The operator's guide to Claude Enterprise Inference Hooks — the HTTPS webhook that lets your DLP server allow or deny every prompt across chat, Claude Code, and Cowork, before the model sees it. Full spec, verdict schema, signing, rollout playbook.