11,007 tests | 68% coveragev4.6.6 Stable

Power Tools for Claude Code

Enhanced workflows and intelligent orchestration for VS Code power users. Create custom agents through guided Socratic questions—no boilerplate, just describe what you need.

Get Started in 5 Lines of Code

main.py
from empathy_os.orchestration import MetaOrchestrator

# Let the framework compose the right agent team automatically
orchestrator = MetaOrchestrator()
plan = orchestrator.analyze_and_compose(
    task="Boost test coverage to 90%",
    context={"current_coverage": 75, "focus": "auth module"}
)

print(f"Strategy: {plan.strategy.value}")      # sequential
print(f"Agents: {[a.role for a in plan.agents]}")  # [Analyzer, Generator, Validator]
print(f"Estimated cost: ${plan.estimated_cost:.2f}")

# Execute with progressive tier escalation (CHEAP → CAPABLE → PREMIUM)
result = await plan.execute()
print(f"Tests generated: {result.tests_created}")
print(f"Actual cost: ${result.actual_cost:.2f}")

SOCRATIC AGENT BUILDER

Describe It. We Build It.

Tell us what you need in plain English. The framework asks clarifying questions, suggests capabilities, and generates production-ready agents and teams automatically.

Try It Now
🎯

Ready to Level Up?

Join power users enhancing their Claude Code workflow.