| Управление сессиями AI агентов через agent-deck CLI. "проверь сессию", "проверь статус", "покажи вывод агента", "что агент ответил". "check session", "show agent output".
npx skills add https://github.com/artwist-polyakov/polyakov-claude-skills --skill agent-deck
Менеджер терминальных сессий для AI агентов. Позволяет запускать, контролировать и получать результаты от дочерних Claude сессий.
Триггеры: "запусти агента", "запусти саб-агента", "launch sub-agent"
# Создать сессию
agent-deck add -t "Название" -c claude /path/to/workdir
# Создать как дочернюю сессию текущего агента
agent-deck add -t "Название" --parent "Родитель" -c claude /path/to/workdir
# Запустить
agent-deck session start "Название"
# Отправить задачу
agent-deck session send "Название" "Твоя задача..."
scripts/launch-subagent.sh "Название" "Промпт" [--mcp exa] [--wait]
Скрипт автоматически:
| Режим | Команда | Когда использовать |
|-------|---------|-------------------|
| Fire & forget | (без --wait) | По умолчанию. Скажи: "Спроси меня когда будет готово" |
| On-demand | agent-deck session output "Название" | Когда пользователь спрашивает |
| Blocking | --wait | Нужен немедленный результат |
Триггеры: "проверь сессию", "проверь статус", "check session"
agent-deck status # Все сессии (сводка)
agent-deck session show "Название" # Детали конкретной сессии
agent-deck session show -json "Название" # JSON формат
agent-deck session current # Текущая сессия (в которой работаем)
agent-deck session current --json # Текущая сессия в JSON
Статусы:
● работает (running)◐ ждёт ввода (waiting)○ простаивает (idle)✕ ошибка (error)Триггеры: "покажи вывод агента", "что агент ответил", "show agent output"
agent-deck session output "Название"
agent-deck mcp list # Доступные MCP серверы
agent-deck mcp attach "Название" exa # Подключить MCP к сессии
agent-deck session restart "Название" # ОБЯЗАТЕЛЬНО после подключения!
| Задача | MCP серверы |
|--------|-------------|
| Веб-поиск | exa, firecrawl |
| Документация кода | context7 |
| Сложные рассуждения | sequential-thinking |
# Жизненный цикл
agent-deck session start "Название"
agent-deck session stop "Название"
agent-deck session restart "Название"
# Список всех сессий
agent-deck ls
agent-deck ls -json
# Удалить сессию
agent-deck rm "Название"
session show -json name (не session show name -json)session restart для применения изменений# Создать агента для веб-исследования
agent-deck add -t "Researcher" -c claude --mcp exa /tmp/research
agent-deck session start "Researcher"
agent-deck session send "Researcher" "Найди информацию о последних трендах в AI"
# Проверить статус
agent-deck session show "Researcher"
# Если статус ◐ (waiting) — агент закончил, получить результат:
agent-deck session output "Researcher"
Create new skills, modify and improve existing skills, and measure skill performance. Use when users want to create a skill from scratch, edit, or optimize an existing skill, run evals to test a skill, benchmark skill performance with variance analysis, or optimize a skill's description for better triggering accuracy.
Guide for creating effective skills. This skill should be used when users want to create a new skill (or update an existing skill) that extends Claude's capabilities with specialized knowledge, workflows, or tool integrations.
Guide for creating effective skills. This skill should be used when users want to create a new skill (or update an existing skill) that extends Claude's capabilities with specialized knowledge, workflows, or tool integrations.
Replace with description of the skill and when Claude should use it.
Use when facing 2+ independent tasks that can be worked on without shared state or sequential dependencies
This skill should be used when the user wants to "create a skill", "add a skill to plugin", "write a new skill", "improve skill description", "organize skill content", or needs guidance on skill structure, progressive disclosure, or skill development best practices for Claude Code plugins.
Helps users discover and install agent skills when they ask questions like "how do I do X", "find a skill for X", "is there a skill that can...", or express interest in extending capabilities. This skill should be used when the user is looking for functionality that might exist as an installable skill.
Use when creating new skills, editing existing skills, or verifying skills work before deployment
Take artwist-polyakov/agent-deck from the repository into ~/.claude/skills for personal
use, or into .claude/skills inside a project.
The agent identifies a skill by the name field in its header. Two skills with the
same name cannot sit side by side — one of them will be ignored.