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.

Model Tiers:
cheapFast & Affordable
capableBalanced
premiumMost Capable

Development

Debug, refactor, and optimize your code

DebugWizard

capable

Analyzes errors and suggests fixes with root cause analysis

CodeReviewWizard

capable

Comprehensive code review with security and performance checks

RefactorWizard

capable

Identifies refactoring opportunities and generates improved code

TestGeneratorWizard

cheap

Generates unit tests, integration tests, and test fixtures

PerformanceWizard

premium

Profiles code and identifies optimization opportunities

DependencyWizard

cheap

Analyzes dependencies, finds vulnerabilities, suggests updates

Security

Scan, audit, and secure your applications

SecurityWizard

capable

OWASP Top 10 scanning, vulnerability detection, fix suggestions

SecretsWizard

cheap

Detects hardcoded secrets, API keys, and credentials

PIIScrubberWizard

cheap

Identifies and redacts PII from logs, data, and code

ComplianceWizard

premium

SOC2, HIPAA, GDPR compliance checking and remediation

Documentation

Generate and maintain documentation

DocStringWizard

cheap

Generates comprehensive docstrings for functions and classes

ReadmeWizard

cheap

Creates and updates README files with usage examples

APIDocWizard

capable

Generates OpenAPI specs and API documentation

ChangelogWizard

cheap

Generates changelogs from git history and PR descriptions

Architecture

Design and analyze system architecture

ArchitectureWizard

premium

Analyzes codebase structure and suggests improvements

MigrationWizard

premium

Plans and executes database and framework migrations

APIDesignWizard

capable

Designs RESTful and GraphQL APIs following best practices

SchemaWizard

capable

Generates and validates database schemas

DevOps

CI/CD, deployment, and infrastructure

CIWizard

cheap

Generates GitHub Actions, GitLab CI, and Jenkins pipelines

DockerWizard

cheap

Creates optimized Dockerfiles and compose configurations

KubernetesWizard

capable

Generates K8s manifests, Helm charts, and deployment configs

MonitoringWizard

capable

Sets up logging, metrics, and alerting configurations

Healthcare

HIPAA-compliant clinical AI tools

SBARWizard

capable

Generates SBAR reports for clinical handoffs

ClinicalProtocolWizard

premium

Analyzes clinical protocols and suggests improvements

MedicalCodingWizard

premium

Assists with ICD-10, CPT, and diagnosis coding

PHIDetectorWizard

cheap

Identifies and protects Protected Health Information

Using Wizards is Simple

security_scan.py
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