Enhanced workflows, Socratic agent creation, and intelligent orchestration for VS Code power users
Fair Source License 0.9 • Free for Students & Small Teams • Community Driven
Built-in framework for creating AI that progresses from reactive to anticipatory intelligence.
Automated code quality checks, auto-fix capabilities, and health trend tracking via CLI.
80-96% cost reduction with intelligent routing: Haiku for simple tasks, Sonnet for code, Opus for architecture.
6 composition patterns (Sequential, Parallel, Debate, Teaching, Refinement, Adaptive) + 7 agent templates. Agents compose themselves automatically.
Extensible system for building domain-specific wizards and tools.
Advanced pattern matching and analysis for identifying trends and trajectories.
Core algorithms for predicting future states based on current trajectories.
Create custom agents through guided questions. Describe what you need, get production-ready agents.
Built-in PII scrubbing, audit logging, and compliance controls.
pip install empathy-frameworkfrom empathy_os.socratic import SocraticWorkflowBuilder
# Describe your goal - the framework guides you through questions
builder = SocraticWorkflowBuilder()
session = builder.start_session("I want to automate code reviews")
# Get clarifying questions
form = builder.get_next_questions(session)
print(form.questions[0].text)
# "What programming languages does your team primarily use?"
# Answer questions
session = builder.submit_answers(session, {
"languages": ["python", "typescript"],
"focus_areas": ["security", "performance"]
})
# Generate optimized workflow when ready
if builder.is_ready_to_generate(session):
workflow = builder.generate_workflow(session)
print(f"Generated {len(workflow.agents)} agents")Empathy is Fair Source licensed and welcomes contributions from developers worldwide.