Skip to main content
11,007 tests | 68% coveragev2.10.0 Stable

Power Tools for Claude Code

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

Get Started in 5 Lines of Code

main.py
from attune.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}")

# Compose into executable team with tier escalation (CHEAP → CAPABLE → PREMIUM)
team = orchestrator.compose_team(task="Boost test coverage to 90%")
result = await team.execute()
print(f"Success: {result.success}")
print(f"Total cost: ${result.total_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.