44+ AI Wizards for Every Task
Pre-built, specialized AI assistants that understand your codebase. Each wizard is optimized for specific tasks with built-in best practices.
Development
Debug, refactor, and optimize your code
DebugWizard
capableAnalyzes errors and suggests fixes with root cause analysis
CodeReviewWizard
capableComprehensive code review with security and performance checks
RefactorWizard
capableIdentifies refactoring opportunities and generates improved code
TestGeneratorWizard
cheapGenerates unit tests, integration tests, and test fixtures
PerformanceWizard
premiumProfiles code and identifies optimization opportunities
DependencyWizard
cheapAnalyzes dependencies, finds vulnerabilities, suggests updates
Security
Scan, audit, and secure your applications
SecurityWizard
capableOWASP Top 10 scanning, vulnerability detection, fix suggestions
SecretsWizard
cheapDetects hardcoded secrets, API keys, and credentials
PIIScrubberWizard
cheapIdentifies and redacts PII from logs, data, and code
ComplianceWizard
premiumSOC2, HIPAA, GDPR compliance checking and remediation
Documentation
Generate and maintain documentation
DocStringWizard
cheapGenerates comprehensive docstrings for functions and classes
ReadmeWizard
cheapCreates and updates README files with usage examples
APIDocWizard
capableGenerates OpenAPI specs and API documentation
ChangelogWizard
cheapGenerates changelogs from git history and PR descriptions
Architecture
Design and analyze system architecture
ArchitectureWizard
premiumAnalyzes codebase structure and suggests improvements
MigrationWizard
premiumPlans and executes database and framework migrations
APIDesignWizard
capableDesigns RESTful and GraphQL APIs following best practices
SchemaWizard
capableGenerates and validates database schemas
DevOps
CI/CD, deployment, and infrastructure
CIWizard
cheapGenerates GitHub Actions, GitLab CI, and Jenkins pipelines
DockerWizard
cheapCreates optimized Dockerfiles and compose configurations
KubernetesWizard
capableGenerates K8s manifests, Helm charts, and deployment configs
MonitoringWizard
capableSets up logging, metrics, and alerting configurations
Healthcare
HIPAA-compliant clinical AI tools
SBARWizard
capableGenerates SBAR reports for clinical handoffs
ClinicalProtocolWizard
premiumAnalyzes clinical protocols and suggests improvements
MedicalCodingWizard
premiumAssists with ICD-10, CPT, and diagnosis coding
PHIDetectorWizard
cheapIdentifies and protects Protected Health Information
Using Wizards is Simple
from empathy_os import EmpathyLLM
from empathy_os.wizards import SecurityWizard
# Initialize with your preferred provider
llm = EmpathyLLM(provider="anthropic")
# Create the wizard
wizard = SecurityWizard(llm)
# Scan your codebase
result = await wizard.scan(
path="./src",
checks=["owasp-top-10", "secrets", "dependencies"]
)
# Get actionable results
for vulnerability in result.vulnerabilities:
print(f"[{vulnerability.severity}] {vulnerability.file}:{vulnerability.line}")
print(f" Issue: {vulnerability.description}")
print(f" Fix: {vulnerability.suggested_fix}")
Build Your Own Wizards
Extend the framework with custom wizards tailored to your workflow. Full documentation and examples included.
Read the Documentation