Add SkillHealthMonitorSkill - autonomous health monitoring for all registered skills#282
Closed
lbartoszcze wants to merge 7 commits intomainfrom
Closed
Add SkillHealthMonitorSkill - autonomous health monitoring for all registered skills#282lbartoszcze wants to merge 7 commits intomainfrom
lbartoszcze wants to merge 7 commits intomainfrom
Conversation
…gistered skills The agent has 80+ registered skills but had no way to detect when skills are broken, degraded, or unhealthy. This skill provides continuous health monitoring by checking manifests, actions, and optionally probing skills with test calls. 8 actions: check_all, check_one, status, history, configure, degraded, emit_metrics, stats. Health states: healthy, degraded, unhealthy, unknown. Tracks health history with trend detection (stable, degrading, recovering). Auto-emits metrics to ObservabilitySkill for alerting on skill degradation. 15 new tests, all passing. 17 smoke tests still pass. Pillar: Self-Improvement (primary) + Revenue (detect broken revenue skills) Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
…patch, Path) Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
SkillHealthMonitorSkillprovides autonomous health monitoring for all 80+ registered skillsObservabilitySkillfor alerting on skill health degradationcheck_all,check_one,status,history,configure,degraded,emit_metrics,statsautonomous_agent.pyDEFAULT_SKILL_CLASSESPillar
Self-Improvement (primary) + Revenue (supporting)
Without this, the agent has no way to know when its own capabilities are broken. A revenue-generating skill could fail silently, losing money. This closes the observability gap — the agent can now detect degraded skills and prioritize fixing them.
Test plan
🤖 Generated with Claude Code