AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Meta Agent Recovery

skill-kissrosecicd-hub-agents-evolution-recovery · by kissrosecicd-hub

Мета-скилл обработки сбоев субагентов: таймауты, зависания, каскадные отказы, fallback. Trigger when: агент упал, агент завис, partial results, таймаут, agent crash, субагент не отвечает, каскадный сбой

No reviews yet
0 installs
9 views
0.0% view→install

Install

$ agentstack add skill-kissrosecicd-hub-agents-evolution-recovery

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-kissrosecicd-hub-agents-evolution-recovery)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
4mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Meta Agent Recovery? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Meta: Agent Recovery

Обрабатывает сбои субагентов — таймауты, зависания, каскадные отказы — и обеспечивает graceful degradation.

Типы сбоев

| Тип | Симптом | Причина | |-----|---------|---------| | Таймаут | Агент не отвечает N секунд | Задача слишком сложная, модель зависла | | JSON парсинг | InvalidParameter, function.arguments | Ответ слишком длинный, спецсимволы | | Каскадный | Агент B без данных от агента A | Агент A упал, B ожидает его результат | | Частичный | Агент ответил но не завершил | Прервался на середине задачи | | Полный | Агент вернул ошибку сразу | Неподдерживаемый subagent_type |

Стратегии восстановления

1. Таймаут → Skip & Continue

Агент не отвечает → ждать 30s → skip → продолжить с остальными →
в отчёте: "X agent skipped (timeout), results from Y agents"

Когда: Агент не критичный для результата.

2. Таймаут → Retry

Агент не отвечает → ждать 30s → повторить с упрощённым промптом →
если снова таймаут → skip

Когда: Агент важный, задача не слишком длинная.

3. Каскадный → Fallback

Агент A упал → агент B не может работать без A →
B тоже skip → main agent делает работу A сам

Когда: Критичный агент (без него весь pipeline ломается).

4. Частичный результат → Использовать

Агент начал но не закончил → взять что есть →
в отчёте: "partial result from X agent, may be incomplete"

Когда: Частичные результаты полезны (нашёл 3 из 5 проблем).

5. Полный сбой → Main agent fallback

Агент вообще не запускается → main agent берёт его роль →
читает SKILL.md → выполняет задачу сам

Когда: Агент недоступен, subagent_type не поддерживается.

Матрица решений

| Агент упал | Критичен? | Действие | |---|---|---| | code-reviewer | Да (основной аудит) | Retry → Fallback: main agent делает review | | security-auditor | Да (безопасность) | Retry → Fallback: main agent проверяет секреты | | test-architect | Нет (можно потом) | Skip → пометить «тесты написать позже» | | debugger | Зависит от бага | Если баг критичный → main agent чинит | | docs-writer | Нет | Skip → «документацию добавить позже» | | git-doctor | Нет | Skip → пользователь сделает сам |

Graceful degradation

Идеально: 4 агента → полный отчёт
Реально: 2 агента + 2 skipped → отчёт с пометками

Пользователь видит:
✅ Результаты от code-reviewer
✅ Результаты от security-auditor
⏭️ test-architect skipped (timeout)
⏭️ docs-writer skipped (cascade failure)

Вывод: «2 из 4 агентов ответили. Основные проблемы найдены.
Тесты и документация — следующий шаг отдельно.»

Правила

  • Никогда не ждать вечно — таймаут 30-60s максимум
  • Не терять частичные результаты — лучше неполный отчёт чем никакой
  • Честно говорить пользователю — какие агенты не ответили
  • Fallback на main agent — если критичный агент упал, я делаю сам
  • Не спавнить заново больше 1 раза — если retry не помог, skip
  • Сохранять контекст — даже если все агенты упали, результаты разведки (Explore) остаются

Отчёт о сбоях

## Agent Status

| Agent | Status | Details |
|-------|--------|---------|
| code-reviewer | ✅ Completed | 12 findings |
| security-auditor | ✅ Completed | 8 findings |
| test-architect | ⏭️ Skipped | Timeout after 60s |
| docs-writer | ⏭️ Skipped | Cascade (needs test results) |

### Recovery Actions Taken
- test-architect: retried once, still timeout → skipped
- docs-writer: cascade skip, no test context available

### What's Missing
- Test coverage assessment
- Test file generation
→ Main agent can do this separately on request

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.