Go to file
stud_i_sram ee04fdc420 Add Cursor-adapted subagents collection from VoltAgent base.
154 agents with Cursor frontmatter, Russian install README, and cross-platform install scripts for global ~/.cursor/agents setup.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-07-28 15:46:02 +03:00
categories Add Cursor-adapted subagents collection from VoltAgent base. 2026-07-28 15:46:02 +03:00
.gitignore Add Cursor-adapted subagents collection from VoltAgent base. 2026-07-28 15:46:02 +03:00
install-agents.ps1 Add Cursor-adapted subagents collection from VoltAgent base. 2026-07-28 15:46:02 +03:00
install-agents.sh Add Cursor-adapted subagents collection from VoltAgent base. 2026-07-28 15:46:02 +03:00
LICENSE Add Cursor-adapted subagents collection from VoltAgent base. 2026-07-28 15:46:02 +03:00
README.md Add Cursor-adapted subagents collection from VoltAgent base. 2026-07-28 15:46:02 +03:00

Awesome Cursor Subagents

Коллекция 154+ специализированных subagents для Cursor — адаптированная версия базы VoltAgent/awesome-claude-code-subagents под формат и пути Cursor.

После установки агенты доступны во всех ваших проектах: Cursor может вызывать их автоматически по description или по явному запросу (/code-reviewer …, «use the security-auditor subagent»).

Источник: содержимое агентов основано на awesome-claude-code-subagents (MIT, © VoltAgent). Адаптировано под Cursor: frontmatter, пути установки, инструкции.


Установка

Установить всех агентов глобально (рекомендуется)

Так агенты появятся сразу для всех проектов Cursor.

macOS / Linux (и WSL / Git Bash)

git clone https://git.studisram.ru/studisram/awesome-cursor-subagents.git
cd awesome-cursor-subagents
chmod +x install-agents.sh
./install-agents.sh --all

Агенты копируются в ~/.cursor/agents/.

Windows (PowerShell)

git clone https://git.studisram.ru/studisram/awesome-cursor-subagents.git
cd awesome-cursor-subagents
.\install-agents.ps1 -All

Агенты копируются в %USERPROFILE%\.cursor\agents\.

После установки перезапустите Cursor (или откройте новое Agent-окно), чтобы агенты подхватились.

Другие варианты установки

Способ Команда Куда ставит
Все агенты глобально ./install-agents.sh --all / .\install-agents.ps1 -All ~/.cursor/agents/
Интерактивно (выбор категорий) ./install-agents.sh / .\install-agents.ps1 глобально или в текущий проект
Только одна категория ./install-agents.sh --category 04-quality-security ~/.cursor/agents/
В текущий проект ./install-agents.sh --all --local .cursor/agents/

Ручная установка

# Глобально (все проекты)
mkdir -p ~/.cursor/agents
cp categories/*/*.md ~/.cursor/agents/
# README категорий копировать не нужно — скрипт их пропускает

# Или только нужные файлы
cp categories/04-quality-security/code-reviewer.md ~/.cursor/agents/

Windows (PowerShell):

New-Item -ItemType Directory -Force -Path "$env:USERPROFILE\.cursor\agents" | Out-Null
Copy-Item -Path .\categories\*\*.md -Destination "$env:USERPROFILE\.cursor\agents\" -Exclude README.md

Совместимость скриптов

ОС Скрипт
macOS, Linux install-agents.sh
Windows install-agents.ps1 (нативный PowerShell)
Windows + WSL / Git Bash можно использовать install-agents.sh

Как это работает в Cursor

Cursor поддерживает custom subagents — markdown-файлы с YAML frontmatter:

---
name: code-reviewer
description: "…"
model: inherit
---

Инструкции агента…
Расположение Область
~/.cursor/agents/ Пользователь — все проекты
.cursor/agents/ Только текущий репозиторий

Вызов:

  • автоматически — parent-агент выбирает subagent по description;
  • явно — /имя-агента … или фраза вроде «use the code-reviewer subagent».

Подробнее: документация Cursor — Subagents.


Категории и агенты

01. Core Development

Базовая разработка. Повседневные задачи: backend, frontend, fullstack, mobile, API.

02. Language Specialists

Языковые специалисты. Эксперты по языкам и фреймворкам.

03. Infrastructure

Инфраструктура. DevOps, облако, деплой, IaC.

04. Quality & Security

Качество и безопасность. Тестирование, security, code review.

05. Data & AI

Данные и ИИ. Data engineering, ML, LLM.

06. Developer Experience

Developer Experience. Инструменты, DX, документация, рефакторинг.

07. Specialized Domains

Специализированные домены. Fintech, IoT, blockchain, SEO и др.

08. Business & Product

Бизнес и продукт. PM, аналитика, контент, Agile.

09. Meta & Orchestration

Мета и оркестрация. Координация агентов и сложные workflow.

10. Research & Analysis

Исследования и анализ. Research, market, competitive analysis.


Что изменено относительно оригинала (Claude Code)

  • Путь установки: ~/.claude/agents/~/.cursor/agents/
  • Frontmatter: оставлены name, description, model: inherit; убрано Claude-only поле tools
  • Модели sonnet / haiku / opus заменены на inherit (наследует модель родительского агента Cursor)
  • Тексты инструкций агентов сохранены на английском; этот README — на русском
  • agent-installer обновлён под этот репозиторий и пути Cursor

Удаление

# macOS / Linux — удалить всех установленных из этого набора
./install-agents.sh --uninstall-all

# или вручную
rm -rf ~/.cursor/agents
# Windows
.\install-agents.ps1 -UninstallAll

Лицензия

MIT. Исходная коллекция — VoltAgent/awesome-claude-code-subagents. Адаптация под Cursor — репозиторий awesome-cursor-subagents.