Skip to content

Commit ee3996c

Browse files
authored
Merge pull request #26 from BruinGrowly/claude/reca-implementation-011CV1d52gvgXZqoYNqR66kt
feat: Implement self-healing capability for Guardian
2 parents e8a30ef + 3443f16 commit ee3996c

3 files changed

Lines changed: 645 additions & 3 deletions

File tree

guardian/meta/__init__.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,17 @@
11
"""
22
Guardian Meta-Analysis Module
33
4-
Self-analysis capabilities where Guardian uses its own LJPW framework
5-
to analyze and improve itself.
4+
Self-analysis and self-healing capabilities where Guardian uses its own
5+
LJPW framework to analyze and improve itself.
66
"""
77

88
from guardian.meta.self_analyzer import SelfAnalyzer, CodeHealthReport
9+
from guardian.meta.self_healer import SelfHealer, HealingAction, HealingReport
910

1011
__all__ = [
1112
'SelfAnalyzer',
1213
'CodeHealthReport',
14+
'SelfHealer',
15+
'HealingAction',
16+
'HealingReport',
1317
]

0 commit comments

Comments
 (0)