Core SDKVerification Hooks Protocol for PraisonAI Agents.Provides protocols for verification hooks that can be used with Agent autonomy.
Verification hooks run after file writes or at configured checkpoints to
validate agent actions (e.g., run tests, lint, build).Usage:
from praisonaiagents.hooks import VerificationHook, VerificationResultclass TestRunner(VerificationHook):
name = “pytest”def run(self, context=None):