agent-system-stability-ops
Audit and harden AgentSystem scheduler reliability, cron contract compliance, and agent consistency. Use when bots skip jobs, show timeout spikes, leak raw logs, or run with wrong agent identity/session.
适合你,如果Agent定时任务频繁跳过、超时或日志泄露
npx oh-my-skill add mahsumaktas/agent-evolution-kit/agent-system-stability-opscurl -fsSL https://oh-my-skill.com/install.sh | bash -s -- mahsumaktas/agent-evolution-kit/agent-system-stability-opsnpx oh-my-skill verify mahsumaktas/agent-evolution-kit/agent-system-stability-ops怎么用
商店整理自技能原文 · 版本 c599c87 · 表述以原文为准装上后,Claude 会检查调度器可靠性、cron 合约合规性和代理一致性,并生成健康报告。
当机器人跳过任务、超时飙升、泄露原始日志或使用错误的代理身份/会话时触发。
技能原文 SKILL.md
AgentSystem Stability Ops
Run fast reliability checks before changing cron/model/memory behavior.
Quick Start
- Run reliability audit:
python3 scripts/reliability_audit.py --hours 24
- Run scheduler contract audit:
bash ~/.agent-evolution/scripts/agent-system-cron-audit.sh --json
- Regenerate health report:
bash ~/scripts/cron-health-monitor.sh
Workflow
- Check scheduler contract first.
If isolated + payload.kind != agentTurn exists, fix or remove those jobs before any other tuning.
- Check agent consistency.
If runAgent != job.agentId, treat as high severity and verify session routing + explicit agentId for every enabled job.
- Check failure quality.
Separate transport/provider failures from logic failures. Timeout-heavy clusters usually require timeout/model/prompt changes, not blind retries.
- Enforce output hygiene.
Any summary containing raw tool logs (Exec, stack trace, raw JSON) is a regression.
- Re-run audits after changes.
Do not declare stable until the last 6-12h window has zero contract violations and zero agent mismatches.
Resources
scripts/reliability_audit.py: Computes reliability metrics fromjobs.json+ run logs.references/runbook.md: Safe remediation order and command cookbook.