attune-ai 2.0.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- attune_ai-2.0.0/.bandit +3 -0
- attune_ai-2.0.0/CHANGELOG.md +4500 -0
- attune_ai-2.0.0/CODE_OF_CONDUCT.md +42 -0
- attune_ai-2.0.0/CONTRIBUTING.md +469 -0
- attune_ai-2.0.0/LICENSE +201 -0
- attune_ai-2.0.0/LICENSE_CHANGE_ANNOUNCEMENT.md +101 -0
- attune_ai-2.0.0/MANIFEST.in +261 -0
- attune_ai-2.0.0/PKG-INFO +1026 -0
- attune_ai-2.0.0/README.md +603 -0
- attune_ai-2.0.0/SECURITY.md +298 -0
- attune_ai-2.0.0/agents/code_inspection/patterns/inspection/recurring_B112.json +18 -0
- attune_ai-2.0.0/agents/code_inspection/patterns/inspection/recurring_F541.json +16 -0
- attune_ai-2.0.0/agents/code_inspection/patterns/inspection/recurring_FORMAT.json +25 -0
- attune_ai-2.0.0/agents/code_inspection/patterns/inspection/recurring_bug_20250822_def456.json +16 -0
- attune_ai-2.0.0/agents/code_inspection/patterns/inspection/recurring_bug_20250915_abc123.json +16 -0
- attune_ai-2.0.0/agents/code_inspection/patterns/inspection/recurring_bug_20251212_3c5b9951.json +16 -0
- attune_ai-2.0.0/agents/code_inspection/patterns/inspection/recurring_bug_20251212_97c0f72f.json +16 -0
- attune_ai-2.0.0/agents/code_inspection/patterns/inspection/recurring_bug_20251212_a0871d53.json +16 -0
- attune_ai-2.0.0/agents/code_inspection/patterns/inspection/recurring_bug_20251212_a9b6ec41.json +16 -0
- attune_ai-2.0.0/agents/code_inspection/patterns/inspection/recurring_bug_null_001.json +16 -0
- attune_ai-2.0.0/agents/code_inspection/patterns/inspection/recurring_builtin.json +16 -0
- attune_ai-2.0.0/attune_ai.egg-info/PKG-INFO +1026 -0
- attune_ai-2.0.0/attune_ai.egg-info/SOURCES.txt +753 -0
- attune_ai-2.0.0/attune_ai.egg-info/dependency_links.txt +1 -0
- attune_ai-2.0.0/attune_ai.egg-info/entry_points.txt +26 -0
- attune_ai-2.0.0/attune_ai.egg-info/requires.txt +208 -0
- attune_ai-2.0.0/attune_ai.egg-info/top_level.txt +6 -0
- attune_ai-2.0.0/attune_healthcare/__init__.py +13 -0
- attune_ai-2.0.0/attune_healthcare/monitors/__init__.py +9 -0
- attune_ai-2.0.0/attune_healthcare/monitors/clinical_protocol_monitor.py +315 -0
- attune_ai-2.0.0/attune_healthcare/monitors/monitoring/__init__.py +44 -0
- attune_ai-2.0.0/attune_healthcare/monitors/monitoring/protocol_checker.py +300 -0
- attune_ai-2.0.0/attune_healthcare/monitors/monitoring/protocol_loader.py +214 -0
- attune_ai-2.0.0/attune_healthcare/monitors/monitoring/sensor_parsers.py +306 -0
- attune_ai-2.0.0/attune_healthcare/monitors/monitoring/trajectory_analyzer.py +389 -0
- attune_ai-2.0.0/attune_llm/README.md +553 -0
- attune_ai-2.0.0/attune_llm/__init__.py +28 -0
- attune_ai-2.0.0/attune_llm/agent_factory/__init__.py +53 -0
- attune_ai-2.0.0/attune_llm/agent_factory/adapters/__init__.py +85 -0
- attune_ai-2.0.0/attune_llm/agent_factory/adapters/autogen_adapter.py +312 -0
- attune_ai-2.0.0/attune_llm/agent_factory/adapters/crewai_adapter.py +483 -0
- attune_ai-2.0.0/attune_llm/agent_factory/adapters/haystack_adapter.py +298 -0
- attune_ai-2.0.0/attune_llm/agent_factory/adapters/langchain_adapter.py +362 -0
- attune_ai-2.0.0/attune_llm/agent_factory/adapters/langgraph_adapter.py +333 -0
- attune_ai-2.0.0/attune_llm/agent_factory/adapters/native.py +228 -0
- attune_ai-2.0.0/attune_llm/agent_factory/adapters/wizard_adapter.py +423 -0
- attune_ai-2.0.0/attune_llm/agent_factory/base.py +305 -0
- attune_ai-2.0.0/attune_llm/agent_factory/crews/__init__.py +67 -0
- attune_ai-2.0.0/attune_llm/agent_factory/crews/code_review.py +1113 -0
- attune_ai-2.0.0/attune_llm/agent_factory/crews/health_check.py +1262 -0
- attune_ai-2.0.0/attune_llm/agent_factory/crews/refactoring.py +1128 -0
- attune_ai-2.0.0/attune_llm/agent_factory/crews/security_audit.py +1018 -0
- attune_ai-2.0.0/attune_llm/agent_factory/decorators.py +287 -0
- attune_ai-2.0.0/attune_llm/agent_factory/factory.py +558 -0
- attune_ai-2.0.0/attune_llm/agent_factory/framework.py +193 -0
- attune_ai-2.0.0/attune_llm/agent_factory/memory_integration.py +328 -0
- attune_ai-2.0.0/attune_llm/agent_factory/resilient.py +320 -0
- attune_ai-2.0.0/attune_llm/agents_md/__init__.py +22 -0
- attune_ai-2.0.0/attune_llm/agents_md/loader.py +218 -0
- attune_ai-2.0.0/attune_llm/agents_md/parser.py +271 -0
- attune_ai-2.0.0/attune_llm/agents_md/registry.py +307 -0
- attune_ai-2.0.0/attune_llm/claude_memory.py +466 -0
- attune_ai-2.0.0/attune_llm/cli/__init__.py +8 -0
- attune_ai-2.0.0/attune_llm/cli/sync_claude.py +487 -0
- attune_ai-2.0.0/attune_llm/code_health.py +1313 -0
- attune_ai-2.0.0/attune_llm/commands/__init__.py +51 -0
- attune_ai-2.0.0/attune_llm/commands/context.py +375 -0
- attune_ai-2.0.0/attune_llm/commands/loader.py +301 -0
- attune_ai-2.0.0/attune_llm/commands/models.py +231 -0
- attune_ai-2.0.0/attune_llm/commands/parser.py +371 -0
- attune_ai-2.0.0/attune_llm/commands/registry.py +429 -0
- attune_ai-2.0.0/attune_llm/config/__init__.py +29 -0
- attune_ai-2.0.0/attune_llm/config/unified.py +291 -0
- attune_ai-2.0.0/attune_llm/context/__init__.py +22 -0
- attune_ai-2.0.0/attune_llm/context/compaction.py +455 -0
- attune_ai-2.0.0/attune_llm/context/manager.py +434 -0
- attune_ai-2.0.0/attune_llm/contextual_patterns.py +361 -0
- attune_ai-2.0.0/attune_llm/core.py +907 -0
- attune_ai-2.0.0/attune_llm/git_pattern_extractor.py +435 -0
- attune_ai-2.0.0/attune_llm/hooks/__init__.py +24 -0
- attune_ai-2.0.0/attune_llm/hooks/config.py +306 -0
- attune_ai-2.0.0/attune_llm/hooks/executor.py +289 -0
- attune_ai-2.0.0/attune_llm/hooks/registry.py +302 -0
- attune_ai-2.0.0/attune_llm/hooks/scripts/__init__.py +39 -0
- attune_ai-2.0.0/attune_llm/hooks/scripts/evaluate_session.py +201 -0
- attune_ai-2.0.0/attune_llm/hooks/scripts/first_time_init.py +285 -0
- attune_ai-2.0.0/attune_llm/hooks/scripts/pre_compact.py +207 -0
- attune_ai-2.0.0/attune_llm/hooks/scripts/session_end.py +183 -0
- attune_ai-2.0.0/attune_llm/hooks/scripts/session_start.py +163 -0
- attune_ai-2.0.0/attune_llm/hooks/scripts/suggest_compact.py +225 -0
- attune_ai-2.0.0/attune_llm/learning/__init__.py +30 -0
- attune_ai-2.0.0/attune_llm/learning/evaluator.py +438 -0
- attune_ai-2.0.0/attune_llm/learning/extractor.py +514 -0
- attune_ai-2.0.0/attune_llm/learning/storage.py +560 -0
- attune_ai-2.0.0/attune_llm/levels.py +227 -0
- attune_ai-2.0.0/attune_llm/pattern_confidence.py +414 -0
- attune_ai-2.0.0/attune_llm/pattern_resolver.py +272 -0
- attune_ai-2.0.0/attune_llm/pattern_summary.py +350 -0
- attune_ai-2.0.0/attune_llm/providers.py +967 -0
- attune_ai-2.0.0/attune_llm/routing/__init__.py +32 -0
- attune_ai-2.0.0/attune_llm/routing/model_router.py +362 -0
- attune_ai-2.0.0/attune_llm/security/IMPLEMENTATION_SUMMARY.md +413 -0
- attune_ai-2.0.0/attune_llm/security/PHASE2_COMPLETE.md +384 -0
- attune_ai-2.0.0/attune_llm/security/PHASE2_SECRETS_DETECTOR_COMPLETE.md +271 -0
- attune_ai-2.0.0/attune_llm/security/QUICK_REFERENCE.md +316 -0
- attune_ai-2.0.0/attune_llm/security/README.md +262 -0
- attune_ai-2.0.0/attune_llm/security/__init__.py +62 -0
- attune_ai-2.0.0/attune_llm/security/audit_logger.py +929 -0
- attune_ai-2.0.0/attune_llm/security/audit_logger_example.py +152 -0
- attune_ai-2.0.0/attune_llm/security/pii_scrubber.py +640 -0
- attune_ai-2.0.0/attune_llm/security/secrets_detector.py +678 -0
- attune_ai-2.0.0/attune_llm/security/secrets_detector_example.py +304 -0
- attune_ai-2.0.0/attune_llm/security/secure_memdocs.py +1192 -0
- attune_ai-2.0.0/attune_llm/security/secure_memdocs_example.py +278 -0
- attune_ai-2.0.0/attune_llm/session_status.py +745 -0
- attune_ai-2.0.0/attune_llm/state.py +246 -0
- attune_ai-2.0.0/attune_llm/utils/__init__.py +5 -0
- attune_ai-2.0.0/attune_llm/utils/tokens.py +349 -0
- attune_ai-2.0.0/attune_software/SOFTWARE_PLUGIN_README.md +57 -0
- attune_ai-2.0.0/attune_software/__init__.py +13 -0
- attune_ai-2.0.0/attune_software/cli/__init__.py +120 -0
- attune_ai-2.0.0/attune_software/cli/inspect.py +362 -0
- attune_ai-2.0.0/attune_software/cli.py +574 -0
- attune_ai-2.0.0/attune_software/plugin.py +188 -0
- attune_ai-2.0.0/docs/api-reference/README.md +358 -0
- attune_ai-2.0.0/docs/api-reference/config.md +378 -0
- attune_ai-2.0.0/docs/api-reference/core.md +350 -0
- attune_ai-2.0.0/docs/api-reference/empathy-os.md +221 -0
- attune_ai-2.0.0/docs/api-reference/index.md +132 -0
- attune_ai-2.0.0/docs/api-reference/llm-toolkit.md +553 -0
- attune_ai-2.0.0/docs/api-reference/memory 2.md +305 -0
- attune_ai-2.0.0/docs/api-reference/memory.md +305 -0
- attune_ai-2.0.0/docs/api-reference/meta-orchestration.md +817 -0
- attune_ai-2.0.0/docs/api-reference/multi-agent.md +438 -0
- attune_ai-2.0.0/docs/api-reference/pattern-library.md +433 -0
- attune_ai-2.0.0/docs/api-reference/persistence.md +471 -0
- attune_ai-2.0.0/docs/api-reference/security-scanner 2.md +859 -0
- attune_ai-2.0.0/docs/api-reference/security-scanner.md +859 -0
- attune_ai-2.0.0/docs/api-reference/software-wizards.md +542 -0
- attune_ai-2.0.0/docs/api-reference/wizards.md +530 -0
- attune_ai-2.0.0/docs/api-reference/workflows 2.md +406 -0
- attune_ai-2.0.0/docs/api-reference/workflows.md +406 -0
- attune_ai-2.0.0/docs/examples/adaptive-learning-system.md +695 -0
- attune_ai-2.0.0/docs/examples/generated-plan-release-prep.md +254 -0
- attune_ai-2.0.0/docs/examples/multi-agent-team-coordination.md +705 -0
- attune_ai-2.0.0/docs/examples/sbar-clinical-handoff.md +655 -0
- attune_ai-2.0.0/docs/examples/simple-chatbot.md +646 -0
- attune_ai-2.0.0/docs/examples/webhook-event-integration.md +850 -0
- attune_ai-2.0.0/docs/getting-started/choose-your-path.md +139 -0
- attune_ai-2.0.0/docs/getting-started/first-steps.md +160 -0
- attune_ai-2.0.0/docs/getting-started/index.md +84 -0
- attune_ai-2.0.0/docs/getting-started/installation 2.md +175 -0
- attune_ai-2.0.0/docs/getting-started/installation.md +184 -0
- attune_ai-2.0.0/docs/getting-started/mcp-integration 2.md +140 -0
- attune_ai-2.0.0/docs/getting-started/mcp-integration.md +299 -0
- attune_ai-2.0.0/docs/getting-started/redis-setup.md +197 -0
- attune_ai-2.0.0/docs/guides/DISTRIBUTION_POLICY.md +179 -0
- attune_ai-2.0.0/docs/guides/MCP_PUBLISH_INSTRUCTIONS.md +125 -0
- attune_ai-2.0.0/docs/guides/MKDOCS_TUTORIAL.md +1045 -0
- attune_ai-2.0.0/docs/guides/PUBLISHING.md +261 -0
- attune_ai-2.0.0/docs/guides/RELEASE_PREPARATION.md +550 -0
- attune_ai-2.0.0/docs/guides/WORKFLOW_PATTERNS.md +239 -0
- attune_ai-2.0.0/docs/guides/claude-memory-integration.md +278 -0
- attune_ai-2.0.0/docs/guides/five-levels-of-empathy.md +1000 -0
- attune_ai-2.0.0/docs/guides/foreword.md +74 -0
- attune_ai-2.0.0/docs/guides/healthcare-wizards.md +652 -0
- attune_ai-2.0.0/docs/guides/how-to-read-this-book.md +153 -0
- attune_ai-2.0.0/docs/guides/multi-model-workflows.md +262 -0
- attune_ai-2.0.0/docs/guides/pattern-catalog.md +226 -0
- attune_ai-2.0.0/docs/guides/preface.md +56 -0
- attune_ai-2.0.0/docs/guides/signoz-integration.md +476 -0
- attune_ai-2.0.0/docs/guides/teaching-ai-your-standards.md +746 -0
- attune_ai-2.0.0/docs/guides/trust-circuit-breaker.md +513 -0
- attune_ai-2.0.0/docs/guides/xml-enhanced-prompts.md +715 -0
- attune_ai-2.0.0/docs/index.md +262 -0
- attune_ai-2.0.0/examples/README.md +148 -0
- attune_ai-2.0.0/examples/WIZARD_DASHBOARD_IMPLEMENTATION.md +1019 -0
- attune_ai-2.0.0/examples/WIZARD_DASHBOARD_STATE_MANAGEMENT.md +695 -0
- attune_ai-2.0.0/examples/WIZARD_DASHBOARD_WIREFRAMES.md +676 -0
- attune_ai-2.0.0/examples/adaptive_routing_demo.py +136 -0
- attune_ai-2.0.0/examples/adaptive_routing_workflow_demo 2.py +157 -0
- attune_ai-2.0.0/examples/adaptive_routing_workflow_demo.py +157 -0
- attune_ai-2.0.0/examples/agent_coordination_demo 2.py +234 -0
- attune_ai-2.0.0/examples/agent_coordination_demo.py +234 -0
- attune_ai-2.0.0/examples/agent_tracking_demo 2.py +169 -0
- attune_ai-2.0.0/examples/agent_tracking_demo.py +169 -0
- attune_ai-2.0.0/examples/anthropic_patterns_demo.py +476 -0
- attune_ai-2.0.0/examples/anthropic_patterns_simple_demo.py +280 -0
- attune_ai-2.0.0/examples/approval_gates_demo 2.py +365 -0
- attune_ai-2.0.0/examples/approval_gates_demo.py +365 -0
- attune_ai-2.0.0/examples/claude_memory/README-SECURITY.md +651 -0
- attune_ai-2.0.0/examples/claude_memory/enterprise-CLAUDE-secure.md +246 -0
- attune_ai-2.0.0/examples/claude_memory/example-with-imports.md +64 -0
- attune_ai-2.0.0/examples/claude_memory/project-CLAUDE.md +69 -0
- attune_ai-2.0.0/examples/claude_memory/user-CLAUDE.md +36 -0
- attune_ai-2.0.0/examples/complete-workflow/README.md +44 -0
- attune_ai-2.0.0/examples/complete-workflow/workflow_example.py +301 -0
- attune_ai-2.0.0/examples/config/empathy.config.example.yml +177 -0
- attune_ai-2.0.0/examples/coordinated_workflow_demo 2.py +363 -0
- attune_ai-2.0.0/examples/coordinated_workflow_demo.py +363 -0
- attune_ai-2.0.0/examples/dashboard_demo 2.py +227 -0
- attune_ai-2.0.0/examples/dashboard_demo.py +295 -0
- attune_ai-2.0.0/examples/demos/demo_end_to_end_workflow.py +260 -0
- attune_ai-2.0.0/examples/demos/demo_memory_integration.py +327 -0
- attune_ai-2.0.0/examples/demos/demo_meta_workflows.py +314 -0
- attune_ai-2.0.0/examples/demos/demo_progressive_demo.py +179 -0
- attune_ai-2.0.0/examples/demos/demo_security_complete.py +758 -0
- attune_ai-2.0.0/examples/demos/demo_test_workflow.py +204 -0
- attune_ai-2.0.0/examples/domain_wizards/all_domain_wizards_demo.py +649 -0
- attune_ai-2.0.0/examples/domain_wizards/healthcare_example.py +287 -0
- attune_ai-2.0.0/examples/domain_wizards/tests/test_healthcare_wizard.py +237 -0
- attune_ai-2.0.0/examples/event_streaming_demo 2.py +318 -0
- attune_ai-2.0.0/examples/event_streaming_demo.py +318 -0
- attune_ai-2.0.0/examples/feedback_loop_demo 2.py +382 -0
- attune_ai-2.0.0/examples/feedback_loop_demo.py +382 -0
- attune_ai-2.0.0/examples/hybrid_cli_demo.py +266 -0
- attune_ai-2.0.0/examples/interactive_team_creation.py +203 -0
- attune_ai-2.0.0/examples/level_5_transformative/BLOG_POST.md +272 -0
- attune_ai-2.0.0/examples/level_5_transformative/README.md +204 -0
- attune_ai-2.0.0/examples/level_5_transformative/data/deployment_pipeline.py +211 -0
- attune_ai-2.0.0/examples/level_5_transformative/data/healthcare_handoff_code.py +148 -0
- attune_ai-2.0.0/examples/llm_toolkit_demo.py +275 -0
- attune_ai-2.0.0/examples/meta_orchestrator_demo.py +105 -0
- attune_ai-2.0.0/examples/multi_llm_usage.py +230 -0
- attune_ai-2.0.0/examples/orchestration/advanced_composition.py +562 -0
- attune_ai-2.0.0/examples/orchestration/basic_usage.py +343 -0
- attune_ai-2.0.0/examples/orchestration/custom_workflow.py +581 -0
- attune_ai-2.0.0/examples/progressive_test_gen_demo.py +187 -0
- attune_ai-2.0.0/examples/quickstart/README.md +280 -0
- attune_ai-2.0.0/examples/quickstart.py +235 -0
- attune_ai-2.0.0/examples/redis_exploration.py +437 -0
- attune_ai-2.0.0/examples/scanner_usage 2.py +277 -0
- attune_ai-2.0.0/examples/scanner_usage.py +277 -0
- attune_ai-2.0.0/examples/security_integration_example.py +358 -0
- attune_ai-2.0.0/examples/seo_optimization/README.md +29 -0
- attune_ai-2.0.0/examples/seo_optimization/SOCRATIC_DEMO.md +329 -0
- attune_ai-2.0.0/examples/seo_optimization/complete_demo.py +316 -0
- attune_ai-2.0.0/examples/seo_optimization/config.yaml +25 -0
- attune_ai-2.0.0/examples/seo_optimization/dashboard_demo.py +85 -0
- attune_ai-2.0.0/examples/seo_optimization/demo.py +100 -0
- attune_ai-2.0.0/examples/seo_optimization/live_demo.py +80 -0
- attune_ai-2.0.0/examples/seo_optimization/seo_agent.py +360 -0
- attune_ai-2.0.0/examples/seo_optimization/utils.py +213 -0
- attune_ai-2.0.0/examples/seo_optimization/with_memory_backend.py +94 -0
- attune_ai-2.0.0/examples/simple_usage.py +50 -0
- attune_ai-2.0.0/examples/smart_team_quickstart.py +660 -0
- attune_ai-2.0.0/examples/sonnet_opus_fallback_example.py +231 -0
- attune_ai-2.0.0/examples/suggest_adaptive_routing 2.py +153 -0
- attune_ai-2.0.0/examples/suggest_adaptive_routing.py +153 -0
- attune_ai-2.0.0/examples/test_approval_gates 2.py +121 -0
- attune_ai-2.0.0/examples/test_approval_gates.py +121 -0
- attune_ai-2.0.0/examples/test_debugging_wizard.py +398 -0
- attune_ai-2.0.0/examples/workflow_chaining_demo 2.py +254 -0
- attune_ai-2.0.0/examples/workflow_chaining_demo.py +254 -0
- attune_ai-2.0.0/examples/workflows/README.md +85 -0
- attune_ai-2.0.0/examples/workflows/code_review_example.py +191 -0
- attune_ai-2.0.0/examples/workflows/doc_gen_example.py +218 -0
- attune_ai-2.0.0/examples/workflows/multi_model_example.py +383 -0
- attune_ai-2.0.0/examples/workflows/research_example.py +113 -0
- attune_ai-2.0.0/pyproject.toml +615 -0
- attune_ai-2.0.0/requirements.txt +14 -0
- attune_ai-2.0.0/setup.cfg +4 -0
- attune_ai-2.0.0/src/.empathy/discovery_stats.json +15 -0
- attune_ai-2.0.0/src/attune/__init__.py +358 -0
- attune_ai-2.0.0/src/attune/adaptive/__init__.py +13 -0
- attune_ai-2.0.0/src/attune/adaptive/task_complexity.py +127 -0
- attune_ai-2.0.0/src/attune/agent_monitoring.py +414 -0
- attune_ai-2.0.0/src/attune/cache/__init__.py +117 -0
- attune_ai-2.0.0/src/attune/cache/base.py +166 -0
- attune_ai-2.0.0/src/attune/cache/dependency_manager.py +256 -0
- attune_ai-2.0.0/src/attune/cache/hash_only.py +251 -0
- attune_ai-2.0.0/src/attune/cache/hybrid.py +457 -0
- attune_ai-2.0.0/src/attune/cache/storage.py +285 -0
- attune_ai-2.0.0/src/attune/cache_monitor.py +356 -0
- attune_ai-2.0.0/src/attune/cache_stats.py +298 -0
- attune_ai-2.0.0/src/attune/cli/__init__.py +152 -0
- attune_ai-2.0.0/src/attune/cli/__main__.py +12 -0
- attune_ai-2.0.0/src/attune/cli/commands/__init__.py +1 -0
- attune_ai-2.0.0/src/attune/cli/commands/batch.py +264 -0
- attune_ai-2.0.0/src/attune/cli/commands/cache.py +248 -0
- attune_ai-2.0.0/src/attune/cli/commands/help.py +331 -0
- attune_ai-2.0.0/src/attune/cli/commands/info.py +140 -0
- attune_ai-2.0.0/src/attune/cli/commands/inspect.py +436 -0
- attune_ai-2.0.0/src/attune/cli/commands/inspection.py +57 -0
- attune_ai-2.0.0/src/attune/cli/commands/memory.py +48 -0
- attune_ai-2.0.0/src/attune/cli/commands/metrics.py +92 -0
- attune_ai-2.0.0/src/attune/cli/commands/orchestrate.py +184 -0
- attune_ai-2.0.0/src/attune/cli/commands/patterns.py +207 -0
- attune_ai-2.0.0/src/attune/cli/commands/profiling.py +202 -0
- attune_ai-2.0.0/src/attune/cli/commands/provider.py +98 -0
- attune_ai-2.0.0/src/attune/cli/commands/routing.py +285 -0
- attune_ai-2.0.0/src/attune/cli/commands/setup.py +96 -0
- attune_ai-2.0.0/src/attune/cli/commands/status.py +235 -0
- attune_ai-2.0.0/src/attune/cli/commands/sync.py +166 -0
- attune_ai-2.0.0/src/attune/cli/commands/tier.py +121 -0
- attune_ai-2.0.0/src/attune/cli/commands/utilities.py +114 -0
- attune_ai-2.0.0/src/attune/cli/commands/workflow.py +579 -0
- attune_ai-2.0.0/src/attune/cli/core.py +32 -0
- attune_ai-2.0.0/src/attune/cli/parsers/__init__.py +68 -0
- attune_ai-2.0.0/src/attune/cli/parsers/batch.py +118 -0
- attune_ai-2.0.0/src/attune/cli/parsers/cache.py +65 -0
- attune_ai-2.0.0/src/attune/cli/parsers/help.py +41 -0
- attune_ai-2.0.0/src/attune/cli/parsers/info.py +26 -0
- attune_ai-2.0.0/src/attune/cli/parsers/inspect.py +66 -0
- attune_ai-2.0.0/src/attune/cli/parsers/metrics.py +42 -0
- attune_ai-2.0.0/src/attune/cli/parsers/orchestrate.py +61 -0
- attune_ai-2.0.0/src/attune/cli/parsers/patterns.py +54 -0
- attune_ai-2.0.0/src/attune/cli/parsers/provider.py +40 -0
- attune_ai-2.0.0/src/attune/cli/parsers/routing.py +110 -0
- attune_ai-2.0.0/src/attune/cli/parsers/setup.py +42 -0
- attune_ai-2.0.0/src/attune/cli/parsers/status.py +47 -0
- attune_ai-2.0.0/src/attune/cli/parsers/sync.py +31 -0
- attune_ai-2.0.0/src/attune/cli/parsers/tier.py +33 -0
- attune_ai-2.0.0/src/attune/cli/parsers/workflow.py +77 -0
- attune_ai-2.0.0/src/attune/cli/utils/__init__.py +1 -0
- attune_ai-2.0.0/src/attune/cli/utils/data.py +242 -0
- attune_ai-2.0.0/src/attune/cli/utils/helpers.py +68 -0
- attune_ai-2.0.0/src/attune/cli_legacy.py +3957 -0
- attune_ai-2.0.0/src/attune/cli_minimal.py +1159 -0
- attune_ai-2.0.0/src/attune/cli_router.py +437 -0
- attune_ai-2.0.0/src/attune/cli_unified.py +814 -0
- attune_ai-2.0.0/src/attune/config/__init__.py +66 -0
- attune_ai-2.0.0/src/attune/config/xml_config.py +286 -0
- attune_ai-2.0.0/src/attune/config.py +545 -0
- attune_ai-2.0.0/src/attune/coordination.py +870 -0
- attune_ai-2.0.0/src/attune/core.py +1511 -0
- attune_ai-2.0.0/src/attune/core_modules/__init__.py +15 -0
- attune_ai-2.0.0/src/attune/cost_tracker.py +626 -0
- attune_ai-2.0.0/src/attune/dashboard/__init__.py +41 -0
- attune_ai-2.0.0/src/attune/dashboard/app.py +512 -0
- attune_ai-2.0.0/src/attune/dashboard/simple_server.py +435 -0
- attune_ai-2.0.0/src/attune/dashboard/standalone_server.py +547 -0
- attune_ai-2.0.0/src/attune/discovery.py +306 -0
- attune_ai-2.0.0/src/attune/emergence.py +306 -0
- attune_ai-2.0.0/src/attune/exceptions.py +123 -0
- attune_ai-2.0.0/src/attune/feedback_loops.py +373 -0
- attune_ai-2.0.0/src/attune/hot_reload/README.md +473 -0
- attune_ai-2.0.0/src/attune/hot_reload/__init__.py +62 -0
- attune_ai-2.0.0/src/attune/hot_reload/config.py +83 -0
- attune_ai-2.0.0/src/attune/hot_reload/integration.py +229 -0
- attune_ai-2.0.0/src/attune/hot_reload/reloader.py +298 -0
- attune_ai-2.0.0/src/attune/hot_reload/watcher.py +183 -0
- attune_ai-2.0.0/src/attune/hot_reload/websocket.py +177 -0
- attune_ai-2.0.0/src/attune/levels.py +577 -0
- attune_ai-2.0.0/src/attune/leverage_points.py +441 -0
- attune_ai-2.0.0/src/attune/logging_config.py +261 -0
- attune_ai-2.0.0/src/attune/mcp/__init__.py +10 -0
- attune_ai-2.0.0/src/attune/mcp/server.py +506 -0
- attune_ai-2.0.0/src/attune/memory/__init__.py +237 -0
- attune_ai-2.0.0/src/attune/memory/claude_memory.py +469 -0
- attune_ai-2.0.0/src/attune/memory/config.py +224 -0
- attune_ai-2.0.0/src/attune/memory/control_panel.py +1290 -0
- attune_ai-2.0.0/src/attune/memory/control_panel_support.py +145 -0
- attune_ai-2.0.0/src/attune/memory/cross_session.py +845 -0
- attune_ai-2.0.0/src/attune/memory/edges.py +179 -0
- attune_ai-2.0.0/src/attune/memory/encryption.py +159 -0
- attune_ai-2.0.0/src/attune/memory/file_session.py +770 -0
- attune_ai-2.0.0/src/attune/memory/graph.py +570 -0
- attune_ai-2.0.0/src/attune/memory/long_term.py +913 -0
- attune_ai-2.0.0/src/attune/memory/long_term_types.py +99 -0
- attune_ai-2.0.0/src/attune/memory/mixins/__init__.py +25 -0
- attune_ai-2.0.0/src/attune/memory/mixins/backend_init_mixin.py +249 -0
- attune_ai-2.0.0/src/attune/memory/mixins/capabilities_mixin.py +208 -0
- attune_ai-2.0.0/src/attune/memory/mixins/handoff_mixin.py +208 -0
- attune_ai-2.0.0/src/attune/memory/mixins/lifecycle_mixin.py +49 -0
- attune_ai-2.0.0/src/attune/memory/mixins/long_term_mixin.py +352 -0
- attune_ai-2.0.0/src/attune/memory/mixins/promotion_mixin.py +109 -0
- attune_ai-2.0.0/src/attune/memory/mixins/short_term_mixin.py +182 -0
- attune_ai-2.0.0/src/attune/memory/nodes.py +179 -0
- attune_ai-2.0.0/src/attune/memory/redis_bootstrap.py +540 -0
- attune_ai-2.0.0/src/attune/memory/security/__init__.py +31 -0
- attune_ai-2.0.0/src/attune/memory/security/audit_logger.py +932 -0
- attune_ai-2.0.0/src/attune/memory/security/pii_scrubber.py +640 -0
- attune_ai-2.0.0/src/attune/memory/security/secrets_detector.py +678 -0
- attune_ai-2.0.0/src/attune/memory/short_term.py +2192 -0
- attune_ai-2.0.0/src/attune/memory/simple_storage.py +302 -0
- attune_ai-2.0.0/src/attune/memory/storage/__init__.py +15 -0
- attune_ai-2.0.0/src/attune/memory/storage_backend.py +167 -0
- attune_ai-2.0.0/src/attune/memory/summary_index.py +583 -0
- attune_ai-2.0.0/src/attune/memory/types.py +446 -0
- attune_ai-2.0.0/src/attune/memory/unified.py +182 -0
- attune_ai-2.0.0/src/attune/meta_workflows/__init__.py +74 -0
- attune_ai-2.0.0/src/attune/meta_workflows/agent_creator.py +248 -0
- attune_ai-2.0.0/src/attune/meta_workflows/builtin_templates.py +567 -0
- attune_ai-2.0.0/src/attune/meta_workflows/cli_commands/__init__.py +56 -0
- attune_ai-2.0.0/src/attune/meta_workflows/cli_commands/agent_commands.py +321 -0
- attune_ai-2.0.0/src/attune/meta_workflows/cli_commands/analytics_commands.py +442 -0
- attune_ai-2.0.0/src/attune/meta_workflows/cli_commands/config_commands.py +232 -0
- attune_ai-2.0.0/src/attune/meta_workflows/cli_commands/memory_commands.py +182 -0
- attune_ai-2.0.0/src/attune/meta_workflows/cli_commands/template_commands.py +354 -0
- attune_ai-2.0.0/src/attune/meta_workflows/cli_commands/workflow_commands.py +382 -0
- attune_ai-2.0.0/src/attune/meta_workflows/cli_meta_workflows.py +59 -0
- attune_ai-2.0.0/src/attune/meta_workflows/form_engine.py +292 -0
- attune_ai-2.0.0/src/attune/meta_workflows/intent_detector.py +409 -0
- attune_ai-2.0.0/src/attune/meta_workflows/models.py +569 -0
- attune_ai-2.0.0/src/attune/meta_workflows/pattern_learner.py +738 -0
- attune_ai-2.0.0/src/attune/meta_workflows/plan_generator.py +384 -0
- attune_ai-2.0.0/src/attune/meta_workflows/session_context.py +397 -0
- attune_ai-2.0.0/src/attune/meta_workflows/template_registry.py +229 -0
- attune_ai-2.0.0/src/attune/meta_workflows/workflow.py +984 -0
- attune_ai-2.0.0/src/attune/metrics/__init__.py +12 -0
- attune_ai-2.0.0/src/attune/metrics/collector.py +31 -0
- attune_ai-2.0.0/src/attune/metrics/prompt_metrics.py +194 -0
- attune_ai-2.0.0/src/attune/models/__init__.py +172 -0
- attune_ai-2.0.0/src/attune/models/__main__.py +13 -0
- attune_ai-2.0.0/src/attune/models/adaptive_routing.py +437 -0
- attune_ai-2.0.0/src/attune/models/auth_cli.py +444 -0
- attune_ai-2.0.0/src/attune/models/auth_strategy.py +450 -0
- attune_ai-2.0.0/src/attune/models/cli.py +655 -0
- attune_ai-2.0.0/src/attune/models/empathy_executor.py +354 -0
- attune_ai-2.0.0/src/attune/models/executor.py +257 -0
- attune_ai-2.0.0/src/attune/models/fallback.py +762 -0
- attune_ai-2.0.0/src/attune/models/provider_config.py +282 -0
- attune_ai-2.0.0/src/attune/models/registry.py +472 -0
- attune_ai-2.0.0/src/attune/models/tasks.py +359 -0
- attune_ai-2.0.0/src/attune/models/telemetry/__init__.py +71 -0
- attune_ai-2.0.0/src/attune/models/telemetry/analytics.py +594 -0
- attune_ai-2.0.0/src/attune/models/telemetry/backend.py +196 -0
- attune_ai-2.0.0/src/attune/models/telemetry/data_models.py +431 -0
- attune_ai-2.0.0/src/attune/models/telemetry/storage.py +489 -0
- attune_ai-2.0.0/src/attune/models/token_estimator.py +420 -0
- attune_ai-2.0.0/src/attune/models/validation.py +280 -0
- attune_ai-2.0.0/src/attune/monitoring/__init__.py +52 -0
- attune_ai-2.0.0/src/attune/monitoring/alerts.py +946 -0
- attune_ai-2.0.0/src/attune/monitoring/alerts_cli.py +448 -0
- attune_ai-2.0.0/src/attune/monitoring/multi_backend.py +271 -0
- attune_ai-2.0.0/src/attune/monitoring/otel_backend.py +362 -0
- attune_ai-2.0.0/src/attune/optimization/__init__.py +19 -0
- attune_ai-2.0.0/src/attune/optimization/context_optimizer.py +272 -0
- attune_ai-2.0.0/src/attune/orchestration/__init__.py +67 -0
- attune_ai-2.0.0/src/attune/orchestration/agent_templates.py +707 -0
- attune_ai-2.0.0/src/attune/orchestration/config_store.py +499 -0
- attune_ai-2.0.0/src/attune/orchestration/execution_strategies.py +2111 -0
- attune_ai-2.0.0/src/attune/orchestration/meta_orchestrator.py +1168 -0
- attune_ai-2.0.0/src/attune/orchestration/pattern_learner.py +696 -0
- attune_ai-2.0.0/src/attune/orchestration/real_tools.py +931 -0
- attune_ai-2.0.0/src/attune/pattern_cache.py +187 -0
- attune_ai-2.0.0/src/attune/pattern_library.py +542 -0
- attune_ai-2.0.0/src/attune/patterns/debugging/all_patterns.json +81 -0
- attune_ai-2.0.0/src/attune/patterns/debugging/workflow_20260107_1770825e.json +77 -0
- attune_ai-2.0.0/src/attune/patterns/refactoring_memory.json +89 -0
- attune_ai-2.0.0/src/attune/persistence.py +564 -0
- attune_ai-2.0.0/src/attune/platform_utils.py +265 -0
- attune_ai-2.0.0/src/attune/plugins/__init__.py +28 -0
- attune_ai-2.0.0/src/attune/plugins/base.py +361 -0
- attune_ai-2.0.0/src/attune/plugins/registry.py +268 -0
- attune_ai-2.0.0/src/attune/project_index/__init__.py +32 -0
- attune_ai-2.0.0/src/attune/project_index/cli.py +335 -0
- attune_ai-2.0.0/src/attune/project_index/index.py +667 -0
- attune_ai-2.0.0/src/attune/project_index/models.py +504 -0
- attune_ai-2.0.0/src/attune/project_index/reports.py +474 -0
- attune_ai-2.0.0/src/attune/project_index/scanner.py +777 -0
- attune_ai-2.0.0/src/attune/project_index/scanner_parallel.py +291 -0
- attune_ai-2.0.0/src/attune/prompts/__init__.py +61 -0
- attune_ai-2.0.0/src/attune/prompts/config.py +77 -0
- attune_ai-2.0.0/src/attune/prompts/context.py +177 -0
- attune_ai-2.0.0/src/attune/prompts/parser.py +285 -0
- attune_ai-2.0.0/src/attune/prompts/registry.py +313 -0
- attune_ai-2.0.0/src/attune/prompts/templates.py +208 -0
- attune_ai-2.0.0/src/attune/redis_config.py +302 -0
- attune_ai-2.0.0/src/attune/redis_memory.py +799 -0
- attune_ai-2.0.0/src/attune/resilience/__init__.py +56 -0
- attune_ai-2.0.0/src/attune/resilience/circuit_breaker.py +256 -0
- attune_ai-2.0.0/src/attune/resilience/fallback.py +179 -0
- attune_ai-2.0.0/src/attune/resilience/health.py +300 -0
- attune_ai-2.0.0/src/attune/resilience/retry.py +209 -0
- attune_ai-2.0.0/src/attune/resilience/timeout.py +135 -0
- attune_ai-2.0.0/src/attune/routing/__init__.py +43 -0
- attune_ai-2.0.0/src/attune/routing/chain_executor.py +433 -0
- attune_ai-2.0.0/src/attune/routing/classifier.py +217 -0
- attune_ai-2.0.0/src/attune/routing/smart_router.py +234 -0
- attune_ai-2.0.0/src/attune/routing/workflow_registry.py +343 -0
- attune_ai-2.0.0/src/attune/scaffolding/README.md +589 -0
- attune_ai-2.0.0/src/attune/scaffolding/__init__.py +35 -0
- attune_ai-2.0.0/src/attune/scaffolding/__main__.py +14 -0
- attune_ai-2.0.0/src/attune/scaffolding/cli.py +240 -0
- attune_ai-2.0.0/src/attune/scaffolding/templates/base_wizard.py.jinja2 +121 -0
- attune_ai-2.0.0/src/attune/scaffolding/templates/coach_wizard.py.jinja2 +321 -0
- attune_ai-2.0.0/src/attune/scaffolding/templates/domain_wizard.py.jinja2 +408 -0
- attune_ai-2.0.0/src/attune/scaffolding/templates/linear_flow_wizard.py.jinja2 +203 -0
- attune_ai-2.0.0/src/attune/socratic/__init__.py +256 -0
- attune_ai-2.0.0/src/attune/socratic/ab_testing.py +958 -0
- attune_ai-2.0.0/src/attune/socratic/blueprint.py +533 -0
- attune_ai-2.0.0/src/attune/socratic/cli.py +703 -0
- attune_ai-2.0.0/src/attune/socratic/collaboration.py +1114 -0
- attune_ai-2.0.0/src/attune/socratic/domain_templates.py +924 -0
- attune_ai-2.0.0/src/attune/socratic/embeddings.py +738 -0
- attune_ai-2.0.0/src/attune/socratic/engine.py +794 -0
- attune_ai-2.0.0/src/attune/socratic/explainer.py +682 -0
- attune_ai-2.0.0/src/attune/socratic/feedback.py +772 -0
- attune_ai-2.0.0/src/attune/socratic/forms.py +629 -0
- attune_ai-2.0.0/src/attune/socratic/generator.py +732 -0
- attune_ai-2.0.0/src/attune/socratic/llm_analyzer.py +637 -0
- attune_ai-2.0.0/src/attune/socratic/mcp_server.py +702 -0
- attune_ai-2.0.0/src/attune/socratic/session.py +312 -0
- attune_ai-2.0.0/src/attune/socratic/storage.py +667 -0
- attune_ai-2.0.0/src/attune/socratic/success.py +730 -0
- attune_ai-2.0.0/src/attune/socratic/visual_editor.py +860 -0
- attune_ai-2.0.0/src/attune/socratic/web_ui.py +958 -0
- attune_ai-2.0.0/src/attune/telemetry/__init__.py +39 -0
- attune_ai-2.0.0/src/attune/telemetry/agent_coordination.py +475 -0
- attune_ai-2.0.0/src/attune/telemetry/agent_tracking.py +367 -0
- attune_ai-2.0.0/src/attune/telemetry/approval_gates.py +545 -0
- attune_ai-2.0.0/src/attune/telemetry/cli.py +1231 -0
- attune_ai-2.0.0/src/attune/telemetry/commands/__init__.py +14 -0
- attune_ai-2.0.0/src/attune/telemetry/commands/dashboard_commands.py +696 -0
- attune_ai-2.0.0/src/attune/telemetry/event_streaming.py +409 -0
- attune_ai-2.0.0/src/attune/telemetry/feedback_loop.py +567 -0
- attune_ai-2.0.0/src/attune/telemetry/usage_tracker.py +591 -0
- attune_ai-2.0.0/src/attune/templates.py +754 -0
- attune_ai-2.0.0/src/attune/test_generator/__init__.py +38 -0
- attune_ai-2.0.0/src/attune/test_generator/__main__.py +14 -0
- attune_ai-2.0.0/src/attune/test_generator/cli.py +234 -0
- attune_ai-2.0.0/src/attune/test_generator/generator.py +355 -0
- attune_ai-2.0.0/src/attune/test_generator/risk_analyzer.py +216 -0
- attune_ai-2.0.0/src/attune/test_generator/templates/unit_test.py.jinja2 +272 -0
- attune_ai-2.0.0/src/attune/tier_recommender.py +384 -0
- attune_ai-2.0.0/src/attune/tools.py +183 -0
- attune_ai-2.0.0/src/attune/trust/__init__.py +28 -0
- attune_ai-2.0.0/src/attune/trust/circuit_breaker.py +579 -0
- attune_ai-2.0.0/src/attune/trust_building.py +527 -0
- attune_ai-2.0.0/src/attune/validation/__init__.py +19 -0
- attune_ai-2.0.0/src/attune/validation/xml_validator.py +281 -0
- attune_ai-2.0.0/src/attune/vscode_bridge.py +173 -0
- attune_ai-2.0.0/src/attune/workflow_commands.py +780 -0
- attune_ai-2.0.0/src/attune/workflow_patterns/__init__.py +33 -0
- attune_ai-2.0.0/src/attune/workflow_patterns/behavior.py +249 -0
- attune_ai-2.0.0/src/attune/workflow_patterns/core.py +76 -0
- attune_ai-2.0.0/src/attune/workflow_patterns/output.py +99 -0
- attune_ai-2.0.0/src/attune/workflow_patterns/registry.py +255 -0
- attune_ai-2.0.0/src/attune/workflow_patterns/structural.py +288 -0
- attune_ai-2.0.0/src/attune/workflows/__init__.py +539 -0
- attune_ai-2.0.0/src/attune/workflows/autonomous_test_gen.py +1268 -0
- attune_ai-2.0.0/src/attune/workflows/base.py +2667 -0
- attune_ai-2.0.0/src/attune/workflows/batch_processing.py +342 -0
- attune_ai-2.0.0/src/attune/workflows/bug_predict.py +1084 -0
- attune_ai-2.0.0/src/attune/workflows/builder.py +273 -0
- attune_ai-2.0.0/src/attune/workflows/caching.py +253 -0
- attune_ai-2.0.0/src/attune/workflows/code_review.py +1048 -0
- attune_ai-2.0.0/src/attune/workflows/code_review_adapters.py +312 -0
- attune_ai-2.0.0/src/attune/workflows/code_review_pipeline.py +722 -0
- attune_ai-2.0.0/src/attune/workflows/config.py +645 -0
- attune_ai-2.0.0/src/attune/workflows/dependency_check.py +644 -0
- attune_ai-2.0.0/src/attune/workflows/document_gen/__init__.py +25 -0
- attune_ai-2.0.0/src/attune/workflows/document_gen/config.py +30 -0
- attune_ai-2.0.0/src/attune/workflows/document_gen/report_formatter.py +162 -0
- attune_ai-2.0.0/src/attune/workflows/document_gen/workflow.py +1426 -0
- attune_ai-2.0.0/src/attune/workflows/document_manager.py +216 -0
- attune_ai-2.0.0/src/attune/workflows/document_manager_README.md +134 -0
- attune_ai-2.0.0/src/attune/workflows/documentation_orchestrator.py +1205 -0
- attune_ai-2.0.0/src/attune/workflows/history.py +510 -0
- attune_ai-2.0.0/src/attune/workflows/keyboard_shortcuts/__init__.py +39 -0
- attune_ai-2.0.0/src/attune/workflows/keyboard_shortcuts/generators.py +391 -0
- attune_ai-2.0.0/src/attune/workflows/keyboard_shortcuts/parsers.py +416 -0
- attune_ai-2.0.0/src/attune/workflows/keyboard_shortcuts/prompts.py +295 -0
- attune_ai-2.0.0/src/attune/workflows/keyboard_shortcuts/schema.py +193 -0
- attune_ai-2.0.0/src/attune/workflows/keyboard_shortcuts/workflow.py +509 -0
- attune_ai-2.0.0/src/attune/workflows/llm_base.py +363 -0
- attune_ai-2.0.0/src/attune/workflows/manage_docs.py +87 -0
- attune_ai-2.0.0/src/attune/workflows/manage_docs_README.md +134 -0
- attune_ai-2.0.0/src/attune/workflows/manage_documentation.py +821 -0
- attune_ai-2.0.0/src/attune/workflows/new_sample_workflow1.py +149 -0
- attune_ai-2.0.0/src/attune/workflows/new_sample_workflow1_README.md +150 -0
- attune_ai-2.0.0/src/attune/workflows/orchestrated_health_check.py +849 -0
- attune_ai-2.0.0/src/attune/workflows/orchestrated_release_prep.py +600 -0
- attune_ai-2.0.0/src/attune/workflows/output.py +413 -0
- attune_ai-2.0.0/src/attune/workflows/perf_audit.py +863 -0
- attune_ai-2.0.0/src/attune/workflows/pr_review.py +762 -0
- attune_ai-2.0.0/src/attune/workflows/progress.py +785 -0
- attune_ai-2.0.0/src/attune/workflows/progress_server.py +322 -0
- attune_ai-2.0.0/src/attune/workflows/progressive/README 2.md +454 -0
- attune_ai-2.0.0/src/attune/workflows/progressive/README.md +454 -0
- attune_ai-2.0.0/src/attune/workflows/progressive/__init__.py +82 -0
- attune_ai-2.0.0/src/attune/workflows/progressive/cli.py +219 -0
- attune_ai-2.0.0/src/attune/workflows/progressive/core.py +488 -0
- attune_ai-2.0.0/src/attune/workflows/progressive/orchestrator.py +723 -0
- attune_ai-2.0.0/src/attune/workflows/progressive/reports.py +520 -0
- attune_ai-2.0.0/src/attune/workflows/progressive/telemetry.py +274 -0
- attune_ai-2.0.0/src/attune/workflows/progressive/test_gen.py +495 -0
- attune_ai-2.0.0/src/attune/workflows/progressive/workflow.py +589 -0
- attune_ai-2.0.0/src/attune/workflows/refactor_plan.py +694 -0
- attune_ai-2.0.0/src/attune/workflows/release_prep.py +895 -0
- attune_ai-2.0.0/src/attune/workflows/release_prep_crew.py +969 -0
- attune_ai-2.0.0/src/attune/workflows/research_synthesis.py +404 -0
- attune_ai-2.0.0/src/attune/workflows/routing.py +168 -0
- attune_ai-2.0.0/src/attune/workflows/secure_release.py +593 -0
- attune_ai-2.0.0/src/attune/workflows/security_adapters.py +297 -0
- attune_ai-2.0.0/src/attune/workflows/security_audit.py +1329 -0
- attune_ai-2.0.0/src/attune/workflows/security_audit_phase3.py +355 -0
- attune_ai-2.0.0/src/attune/workflows/seo_optimization.py +633 -0
- attune_ai-2.0.0/src/attune/workflows/step_config.py +234 -0
- attune_ai-2.0.0/src/attune/workflows/telemetry_mixin.py +269 -0
- attune_ai-2.0.0/src/attune/workflows/test5.py +125 -0
- attune_ai-2.0.0/src/attune/workflows/test5_README.md +158 -0
- attune_ai-2.0.0/src/attune/workflows/test_coverage_boost_crew.py +849 -0
- attune_ai-2.0.0/src/attune/workflows/test_gen/__init__.py +52 -0
- attune_ai-2.0.0/src/attune/workflows/test_gen/ast_analyzer.py +249 -0
- attune_ai-2.0.0/src/attune/workflows/test_gen/config.py +88 -0
- attune_ai-2.0.0/src/attune/workflows/test_gen/data_models.py +38 -0
- attune_ai-2.0.0/src/attune/workflows/test_gen/report_formatter.py +289 -0
- attune_ai-2.0.0/src/attune/workflows/test_gen/test_templates.py +381 -0
- attune_ai-2.0.0/src/attune/workflows/test_gen/workflow.py +655 -0
- attune_ai-2.0.0/src/attune/workflows/test_gen.py +54 -0
- attune_ai-2.0.0/src/attune/workflows/test_gen_behavioral.py +477 -0
- attune_ai-2.0.0/src/attune/workflows/test_gen_parallel.py +341 -0
- attune_ai-2.0.0/src/attune/workflows/test_lifecycle.py +526 -0
- attune_ai-2.0.0/src/attune/workflows/test_maintenance.py +627 -0
- attune_ai-2.0.0/src/attune/workflows/test_maintenance_cli.py +590 -0
- attune_ai-2.0.0/src/attune/workflows/test_maintenance_crew.py +840 -0
- attune_ai-2.0.0/src/attune/workflows/test_runner.py +622 -0
- attune_ai-2.0.0/src/attune/workflows/tier_tracking.py +531 -0
- attune_ai-2.0.0/src/attune/workflows/xml_enhanced_crew.py +285 -0
- attune_ai-2.0.0/tests/test_agent_factory.py +475 -0
- attune_ai-2.0.0/tests/test_agent_factory_memory.py +478 -0
- attune_ai-2.0.0/tests/test_agent_factory_resilience.py +505 -0
- attune_ai-2.0.0/tests/test_audit_logger.py +519 -0
- attune_ai-2.0.0/tests/test_audit_logger_extended.py +811 -0
- attune_ai-2.0.0/tests/test_base.py +596 -0
- attune_ai-2.0.0/tests/test_baseline.py +1015 -0
- attune_ai-2.0.0/tests/test_book_production_agents.py +606 -0
- attune_ai-2.0.0/tests/test_bug_predict_workflow.py +798 -0
- attune_ai-2.0.0/tests/test_claude_memory.py +344 -0
- attune_ai-2.0.0/tests/test_claude_memory_extended.py +954 -0
- attune_ai-2.0.0/tests/test_clinical_protocol_monitor.py +650 -0
- attune_ai-2.0.0/tests/test_code_health.py +493 -0
- attune_ai-2.0.0/tests/test_code_review.py +476 -0
- attune_ai-2.0.0/tests/test_code_review_crew_integration.py +580 -0
- attune_ai-2.0.0/tests/test_code_review_pipeline.py +416 -0
- attune_ai-2.0.0/tests/test_code_review_pipeline_workflow.py +607 -0
- attune_ai-2.0.0/tests/test_code_review_workflow.py +264 -0
- attune_ai-2.0.0/tests/test_config.py +1028 -0
- attune_ai-2.0.0/tests/test_control_panel.py +836 -0
- attune_ai-2.0.0/tests/test_control_panel_security.py +345 -0
- attune_ai-2.0.0/tests/test_coordination.py +522 -0
- attune_ai-2.0.0/tests/test_core.py +1157 -0
- attune_ai-2.0.0/tests/test_core_reliability.py +387 -0
- attune_ai-2.0.0/tests/test_cost_tracker.py +406 -0
- attune_ai-2.0.0/tests/test_dependency_check.py +454 -0
- attune_ai-2.0.0/tests/test_dependency_check_workflow.py +544 -0
- attune_ai-2.0.0/tests/test_discovery.py +399 -0
- attune_ai-2.0.0/tests/test_document_gen.py +538 -0
- attune_ai-2.0.0/tests/test_document_gen_workflow.py +773 -0
- attune_ai-2.0.0/tests/test_emergence.py +373 -0
- attune_ai-2.0.0/tests/test_empathy_llm_core.py +868 -0
- attune_ai-2.0.0/tests/test_empathy_llm_security.py +674 -0
- attune_ai-2.0.0/tests/test_empathy_os.py +156 -0
- attune_ai-2.0.0/tests/test_exceptions.py +499 -0
- attune_ai-2.0.0/tests/test_executor_integration.py +491 -0
- attune_ai-2.0.0/tests/test_fallback.py +444 -0
- attune_ai-2.0.0/tests/test_fallback_suite.py +695 -0
- attune_ai-2.0.0/tests/test_feedback_loops.py +334 -0
- attune_ai-2.0.0/tests/test_finding_extraction.py +174 -0
- attune_ai-2.0.0/tests/test_graph.py +1136 -0
- attune_ai-2.0.0/tests/test_health_check.py +637 -0
- attune_ai-2.0.0/tests/test_healthcare_plugin.py +997 -0
- attune_ai-2.0.0/tests/test_intelligence_integration.py +389 -0
- attune_ai-2.0.0/tests/test_levels.py +700 -0
- attune_ai-2.0.0/tests/test_leverage_points.py +444 -0
- attune_ai-2.0.0/tests/test_llm_integration.py +425 -0
- attune_ai-2.0.0/tests/test_llm_toolkit_agents.py +767 -0
- attune_ai-2.0.0/tests/test_llm_toolkit_core.py +968 -0
- attune_ai-2.0.0/tests/test_llm_toolkit_decorators.py +559 -0
- attune_ai-2.0.0/tests/test_llm_toolkit_empathy_core.py +1029 -0
- attune_ai-2.0.0/tests/test_llm_toolkit_langgraph_adapter.py +577 -0
- attune_ai-2.0.0/tests/test_llm_toolkit_levels.py +320 -0
- attune_ai-2.0.0/tests/test_llm_toolkit_memory.py +680 -0
- attune_ai-2.0.0/tests/test_llm_toolkit_patterns.py +697 -0
- attune_ai-2.0.0/tests/test_llm_toolkit_providers.py +678 -0
- attune_ai-2.0.0/tests/test_llm_toolkit_security.py +882 -0
- attune_ai-2.0.0/tests/test_llm_toolkit_session_status.py +924 -0
- attune_ai-2.0.0/tests/test_llm_toolkit_wizard_adapter.py +525 -0
- attune_ai-2.0.0/tests/test_logging_config.py +561 -0
- attune_ai-2.0.0/tests/test_long_term.py +474 -0
- attune_ai-2.0.0/tests/test_memory_graph.py +357 -0
- attune_ai-2.0.0/tests/test_model_registry.py +306 -0
- attune_ai-2.0.0/tests/test_model_router.py +252 -0
- attune_ai-2.0.0/tests/test_monitoring.py +435 -0
- attune_ai-2.0.0/tests/test_pattern_cache.py +536 -0
- attune_ai-2.0.0/tests/test_pattern_library.py +904 -0
- attune_ai-2.0.0/tests/test_perf_audit_workflow.py +639 -0
- attune_ai-2.0.0/tests/test_persistence.py +501 -0
- attune_ai-2.0.0/tests/test_pii_scrubber.py +278 -0
- attune_ai-2.0.0/tests/test_pii_scrubber_extended.py +999 -0
- attune_ai-2.0.0/tests/test_platform_compat_ci.py +103 -0
- attune_ai-2.0.0/tests/test_platform_utils.py +460 -0
- attune_ai-2.0.0/tests/test_plugin_base.py +505 -0
- attune_ai-2.0.0/tests/test_plugin_registry.py +464 -0
- attune_ai-2.0.0/tests/test_pr_review.py +1021 -0
- attune_ai-2.0.0/tests/test_pr_review_workflow.py +563 -0
- attune_ai-2.0.0/tests/test_production_smoke.py +117 -0
- attune_ai-2.0.0/tests/test_progress.py +657 -0
- attune_ai-2.0.0/tests/test_protocol_checker.py +1628 -0
- attune_ai-2.0.0/tests/test_protocol_loader.py +752 -0
- attune_ai-2.0.0/tests/test_provider_config.py +391 -0
- attune_ai-2.0.0/tests/test_providers.py +910 -0
- attune_ai-2.0.0/tests/test_redis_bootstrap.py +778 -0
- attune_ai-2.0.0/tests/test_redis_config.py +261 -0
- attune_ai-2.0.0/tests/test_redis_integration.py +507 -0
- attune_ai-2.0.0/tests/test_redis_memory.py +572 -0
- attune_ai-2.0.0/tests/test_redis_memory_errors.py +291 -0
- attune_ai-2.0.0/tests/test_refactor_golden.py +307 -0
- attune_ai-2.0.0/tests/test_refactor_plan_workflow.py +656 -0
- attune_ai-2.0.0/tests/test_refactoring.py +973 -0
- attune_ai-2.0.0/tests/test_refactoring_crew.py +936 -0
- attune_ai-2.0.0/tests/test_registry.py +336 -0
- attune_ai-2.0.0/tests/test_release_prep.py +1166 -0
- attune_ai-2.0.0/tests/test_reporting.py +372 -0
- attune_ai-2.0.0/tests/test_reports.py +1170 -0
- attune_ai-2.0.0/tests/test_resilience.py +452 -0
- attune_ai-2.0.0/tests/test_sbar_wizard.py +170 -0
- attune_ai-2.0.0/tests/test_scanner.py +772 -0
- attune_ai-2.0.0/tests/test_scanner_exceptions.py +381 -0
- attune_ai-2.0.0/tests/test_secrets_detector.py +435 -0
- attune_ai-2.0.0/tests/test_secure_memdocs.py +417 -0
- attune_ai-2.0.0/tests/test_secure_memdocs_extended.py +1031 -0
- attune_ai-2.0.0/tests/test_secure_release.py +360 -0
- attune_ai-2.0.0/tests/test_secure_release_workflow.py +678 -0
- attune_ai-2.0.0/tests/test_security_audit.py +1087 -0
- attune_ai-2.0.0/tests/test_security_audit_crew.py +549 -0
- attune_ai-2.0.0/tests/test_security_audit_workflow.py +437 -0
- attune_ai-2.0.0/tests/test_security_crew_integration.py +689 -0
- attune_ai-2.0.0/tests/test_security_integration.py +451 -0
- attune_ai-2.0.0/tests/test_security_negative_cases.py +399 -0
- attune_ai-2.0.0/tests/test_security_scan.py +82 -0
- attune_ai-2.0.0/tests/test_sensor_parsers.py +960 -0
- attune_ai-2.0.0/tests/test_session_status.py +591 -0
- attune_ai-2.0.0/tests/test_short_term.py +712 -0
- attune_ai-2.0.0/tests/test_smart_router.py +345 -0
- attune_ai-2.0.0/tests/test_smoke.py +157 -0
- attune_ai-2.0.0/tests/test_sonnet_opus_fallback.py +278 -0
- attune_ai-2.0.0/tests/test_state.py +710 -0
- attune_ai-2.0.0/tests/test_step_config.py +481 -0
- attune_ai-2.0.0/tests/test_summary_index.py +468 -0
- attune_ai-2.0.0/tests/test_sync_claude.py +291 -0
- attune_ai-2.0.0/tests/test_tech_debt_wizard.py +470 -0
- attune_ai-2.0.0/tests/test_telemetry.py +449 -0
- attune_ai-2.0.0/tests/test_templates.py +393 -0
- attune_ai-2.0.0/tests/test_timeout.py +518 -0
- attune_ai-2.0.0/tests/test_token_estimator.py +413 -0
- attune_ai-2.0.0/tests/test_trajectory_analyzer.py +1512 -0
- attune_ai-2.0.0/tests/test_trust_building.py +507 -0
- attune_ai-2.0.0/tests/test_trust_circuit_breaker.py +365 -0
- attune_ai-2.0.0/tests/test_unified_memory.py +883 -0
- attune_ai-2.0.0/tests/test_validation.py +422 -0
- attune_ai-2.0.0/tests/test_wizard_outputs.py +677 -0
- attune_ai-2.0.0/tests/test_wizard_site_comprehensive.py +775 -0
- attune_ai-2.0.0/tests/test_workflow_base.py +959 -0
- attune_ai-2.0.0/tests/test_workflow_commands.py +302 -0
- attune_ai-2.0.0/tests/test_workflow_wizard_integration.py +335 -0
- attune_ai-2.0.0/tests/test_xml_prompts.py +460 -0
- attune_ai-2.0.0/tests/test_xml_spec_generation.py +225 -0
- attune_ai-2.0.0/workflow_scaffolding/__init__.py +11 -0
- attune_ai-2.0.0/workflow_scaffolding/__main__.py +12 -0
- attune_ai-2.0.0/workflow_scaffolding/cli.py +206 -0
- attune_ai-2.0.0/workflow_scaffolding/generator.py +265 -0
attune_ai-2.0.0/.bandit
ADDED