create-leafmesh 2.3.2__tar.gz → 2.4.1__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.
- create_leafmesh-2.4.1/PKG-INFO +94 -0
- create_leafmesh-2.4.1/create_leafmesh/__init__.py +3 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/_inspire/__pycache__/main.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/_inspire/agency/__pycache__/advisor_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/_inspire/agency/__pycache__/fallback_researcher_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/_inspire/agency/__pycache__/greeter_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/_inspire/agency/__pycache__/processor_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/_inspire/agency/__pycache__/researcher_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/_inspire/agency/__pycache__/risk_scorer_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/_inspire/agency/advisor_agent.py +195 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/_inspire/agency/fallback_researcher_agent.py +110 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/_inspire/agency/greeter_agent.py +129 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/_inspire/agency/processor_agent.py +146 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/_inspire/agency/researcher_agent.py +143 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/_inspire/agency/risk_scorer_agent.py +197 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/_inspire/configs/config.yaml +1280 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/_inspire/logs/leafmesh_2026-06-11.log +6 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/_inspire/requirements.txt +10 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/_inspire/validate_config.py +181 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/_registry.yaml +415 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/bd-proposals/README.md +17 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/bd-proposals/__pycache__/main.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/bd-proposals/agency/__pycache__/__init__.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/bd-proposals/agency/__pycache__/bid_no_bid_decisioner_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/bd-proposals/agency/__pycache__/competitive_intel_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/bd-proposals/agency/__pycache__/contracts_review_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/bd-proposals/agency/__pycache__/precedent_research_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/bd-proposals/agency/__pycache__/pricing_configurator_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/bd-proposals/agency/__pycache__/rfp_intake_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/bd-proposals/agency/__pycache__/section_drafter_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/bd-proposals/agency/_shared/__pycache__/__init__.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/bd-proposals/agency/_shared/__pycache__/audit_logger.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/bd-proposals/agency/_shared/audit_logger.py +149 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/bd-proposals/agency/bid_no_bid_decisioner_agent.py +111 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/bd-proposals/agency/competitive_intel_agent.py +253 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/bd-proposals/agency/contracts_review_agent.py +292 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/bd-proposals/agency/precedent_research_agent.py +225 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/bd-proposals/agency/rfp_intake_agent.py +351 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/bd-proposals/configs/config.yaml +827 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/bd-proposals/examples/01_new_rfp_received.json +13 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/bd-proposals/examples/02_win_post_mortem.json +23 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/bd-proposals/examples/README.md +23 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/bd-proposals/main.py +49 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/bd-proposals/requirements.txt +6 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/bd-proposals/tests/__pycache__/test_agent_logic.cpython-314-pytest-9.0.2.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/bd-proposals/tests/test_agent_logic.py +323 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/bd-proposals/validate_config.py +181 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/bench-management/README.md +15 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/bench-management/__pycache__/main.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/bench-management/agency/__pycache__/__init__.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/bench-management/agency/__pycache__/esat_survey_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/bench-management/agency/__pycache__/performance_review_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/bench-management/agency/__pycache__/staffing_coordinator_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/bench-management/agency/__pycache__/talent_development_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/bench-management/agency/__pycache__/weekly_bench_sweep_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/bench-management/agency/__pycache__/workforce_analytics_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/bench-management/agency/_shared/__pycache__/__init__.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/bench-management/agency/_shared/__pycache__/audit_logger.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/bench-management/agency/_shared/audit_logger.py +149 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/bench-management/agency/esat_survey_agent.py +224 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/bench-management/agency/performance_review_agent.py +200 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/bench-management/agency/staffing_coordinator_agent.py +118 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/bench-management/agency/talent_development_agent.py +160 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/bench-management/agency/workforce_analytics_agent.py +347 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/bench-management/configs/config.yaml +673 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/bench-management/examples/01_new_project_kickoff.json +19 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/bench-management/examples/02_weekly_bench_review.json +10 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/bench-management/examples/03_promotion_readiness.json +14 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/bench-management/examples/README.md +23 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/bench-management/main.py +49 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/bench-management/requirements.txt +6 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/bench-management/tests/__pycache__/conftest.cpython-314-pytest-9.0.2.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/bench-management/tests/__pycache__/test_agent_logic.cpython-314-pytest-9.0.2.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/bench-management/tests/conftest.py +26 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/bench-management/tests/test_agent_logic.py +91 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/bench-management/validate_config.py +181 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/claude_skills/leafmesh/SKILL.md +2602 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/customer-success/README.md +193 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/customer-success/agency/__init__.py +8 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/customer-success/agency/__pycache__/__init__.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/customer-success/agency/__pycache__/account_intel_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/customer-success/agency/__pycache__/competitor_intel_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/customer-success/agency/__pycache__/cs_operations_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/customer-success/agency/__pycache__/customer_onboarding_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/customer-success/agency/__pycache__/health_score_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/customer-success/agency/__pycache__/playbook_trigger_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/customer-success/agency/__pycache__/qbr_drafter_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/customer-success/agency/__pycache__/renewals_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/customer-success/agency/__pycache__/risk_detector_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/customer-success/agency/__pycache__/save_play_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/customer-success/agency/_shared/__pycache__/__init__.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/customer-success/agency/_shared/__pycache__/audit_logger.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/customer-success/agency/_shared/audit_logger.py +149 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/customer-success/agency/account_intel_agent.py +275 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/customer-success/agency/competitor_intel_agent.py +236 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/customer-success/agency/cs_operations_agent.py +238 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/customer-success/agency/customer_onboarding_agent.py +278 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/customer-success/agency/health_score_agent.py +118 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/customer-success/agency/renewals_agent.py +199 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/customer-success/agency/risk_detector_agent.py +123 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/customer-success/agency/save_play_agent.py +109 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/customer-success/configs/config.yaml +1387 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/customer-success/examples/02_billing_failed_payment.json +19 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/customer-success/examples/03_renewal_window_60d.json +21 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/customer-success/examples/04_executive_change.json +26 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/customer-success/examples/README.md +23 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/customer-success/logs/leafmesh_2026-06-11.log +102 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/customer-success/main.py +119 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/customer-success/requirements.txt +7 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/customer-success/tests/__pycache__/test_agent_logic.cpython-314-pytest-9.0.2.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/customer-success/tests/__pycache__/test_config_shape.cpython-314-pytest-9.0.2.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/customer-success/tests/test_agent_logic.py +452 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/customer-success/tests/test_config_shape.py +169 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/customer-success/validate_config.py +181 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/customer-support/README.md +62 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/customer-support/__pycache__/main.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/customer-support/agency/__pycache__/__init__.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/customer-support/agency/__pycache__/crm_case_generator_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/customer-support/agency/__pycache__/cross_channel_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/customer-support/agency/__pycache__/kb_gap_filler_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/customer-support/agency/__pycache__/qa_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/customer-support/agency/__pycache__/response_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/customer-support/agency/__pycache__/sentiment_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/customer-support/agency/__pycache__/sla_watchdog_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/customer-support/agency/__pycache__/support_insights_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/customer-support/agency/__pycache__/ticket_intake_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/customer-support/agency/_shared/__pycache__/__init__.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/customer-support/agency/_shared/__pycache__/audit_logger.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/customer-support/agency/_shared/audit_logger.py +149 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/customer-support/agency/crm_case_generator_agent.py +228 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/customer-support/agency/cross_channel_agent.py +190 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/customer-support/agency/kb_gap_filler_agent.py +46 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/customer-support/agency/qa_agent.py +104 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/customer-support/agency/response_agent.py +97 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/customer-support/agency/support_insights_agent.py +336 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/customer-support/agency/ticket_intake_agent.py +413 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/customer-support/configs/config.yaml +989 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/customer-support/data/csat_ledger.db +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/customer-support/data/ticket_history.db +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/customer-support/logs/leafmesh_2026-06-11.log +80 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/customer-support/main.py +62 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/customer-support/requirements.txt +6 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/customer-support/tests/__pycache__/test_agent_logic.cpython-314-pytest-9.0.2.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/customer-support/tests/__pycache__/test_config_shape.cpython-314-pytest-9.0.2.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/customer-support/tests/test_agent_logic.py +346 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/customer-support/tests/test_config_shape.py +197 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/customer-support/validate_config.py +181 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/engineering-sdlc/__pycache__/main.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/engineering-sdlc/agency/__pycache__/__init__.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/engineering-sdlc/agency/__pycache__/code_reviewer_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/engineering-sdlc/agency/__pycache__/junior_engineer_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/engineering-sdlc/agency/__pycache__/oncall_alert_triager_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/engineering-sdlc/agency/__pycache__/refactor_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/engineering-sdlc/agency/__pycache__/regression_detector_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/engineering-sdlc/agency/__pycache__/regulatory_monitor_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/engineering-sdlc/agency/__pycache__/release_notes_drafter_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/engineering-sdlc/agency/__pycache__/security_scanner_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/engineering-sdlc/agency/__pycache__/spec_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/engineering-sdlc/agency/__pycache__/test_engineer_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/engineering-sdlc/agency/_shared/__pycache__/__init__.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/engineering-sdlc/agency/_shared/__pycache__/audit_logger.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/engineering-sdlc/agency/_shared/__pycache__/session_stash.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/engineering-sdlc/agency/_shared/audit_logger.py +149 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/engineering-sdlc/agency/_shared/session_stash.py +53 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/engineering-sdlc/agency/code_reviewer_agent.py +129 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/engineering-sdlc/agency/junior_engineer_agent.py +121 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/engineering-sdlc/agency/spec_agent.py +104 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/engineering-sdlc/configs/config.yaml +868 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/engineering-sdlc/logs/leafmesh_2026-06-11.log +28 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/engineering-sdlc/main.py +62 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/engineering-sdlc/requirements.txt +6 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/engineering-sdlc/validate_config.py +181 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/finance-ops/README.md +188 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/finance-ops/__pycache__/main.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/finance-ops/agency/__pycache__/__init__.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/finance-ops/agency/__pycache__/approval_router_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/finance-ops/agency/__pycache__/close_cycle_orchestrator_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/finance-ops/agency/__pycache__/erp_poster_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/finance-ops/agency/__pycache__/gl_coding_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/finance-ops/agency/__pycache__/invoice_intake_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/finance-ops/agency/__pycache__/loan_origination_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/finance-ops/agency/__pycache__/loan_servicing_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/finance-ops/agency/__pycache__/matching_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/finance-ops/agency/__pycache__/payment_risk_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/finance-ops/agency/__pycache__/payment_scheduler_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/finance-ops/agency/__pycache__/regulatory_monitor_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/finance-ops/agency/__pycache__/vendor_comms_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/finance-ops/agency/__pycache__/vendor_compliance_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/finance-ops/agency/_shared/__pycache__/__init__.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/finance-ops/agency/_shared/__pycache__/audit_logger.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/finance-ops/agency/_shared/__pycache__/erp_poster.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/finance-ops/agency/_shared/__pycache__/session_stash.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/finance-ops/agency/_shared/audit_logger.py +149 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/finance-ops/agency/_shared/erp_poster.py +135 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/finance-ops/agency/_shared/session_stash.py +53 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/finance-ops/agency/approval_router_agent.py +155 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/finance-ops/agency/erp_poster_agent.py +93 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/finance-ops/agency/gl_coding_agent.py +135 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/finance-ops/agency/invoice_intake_agent.py +133 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/finance-ops/agency/loan_origination_agent.py +216 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/finance-ops/agency/matching_agent.py +169 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/finance-ops/agency/payment_risk_agent.py +301 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/finance-ops/agency/payment_scheduler_agent.py +171 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/finance-ops/agency/vendor_comms_agent.py +198 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/finance-ops/agency/vendor_compliance_agent.py +444 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/finance-ops/configs/config.yaml +1451 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/finance-ops/examples/02_fraud_signal_round_number.json +26 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/finance-ops/examples/03_po_mismatch_exception.json +26 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/finance-ops/examples/05_vendor_inquiry.json +14 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/finance-ops/examples/README.md +63 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/finance-ops/main.py +157 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/finance-ops/requirements.txt +11 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/finance-ops/tests/__pycache__/conftest.cpython-314-pytest-9.0.2.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/finance-ops/tests/__pycache__/test_agent_logic.cpython-314-pytest-9.0.2.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/finance-ops/tests/__pycache__/test_config_shape.cpython-314-pytest-9.0.2.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/finance-ops/tests/conftest.py +41 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/finance-ops/tests/test_agent_logic.py +616 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/finance-ops/tests/test_config_shape.py +270 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/finance-ops/validate_config.py +181 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/infra-cost-ops/README.md +13 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/infra-cost-ops/__pycache__/main.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/infra-cost-ops/agency/__pycache__/__init__.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/infra-cost-ops/agency/__pycache__/commitments_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/infra-cost-ops/agency/__pycache__/cost_anomaly_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/infra-cost-ops/agency/__pycache__/cost_tuner_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/infra-cost-ops/agency/__pycache__/finops_governance_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/infra-cost-ops/agency/__pycache__/iac_drift_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/infra-cost-ops/agency/__pycache__/regulatory_monitor_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/infra-cost-ops/agency/_shared/__pycache__/__init__.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/infra-cost-ops/agency/_shared/__pycache__/audit_logger.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/infra-cost-ops/agency/_shared/__pycache__/session_stash.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/infra-cost-ops/agency/_shared/audit_logger.py +149 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/infra-cost-ops/agency/_shared/session_stash.py +53 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/infra-cost-ops/agency/commitments_agent.py +130 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/infra-cost-ops/agency/cost_anomaly_agent.py +133 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/infra-cost-ops/agency/cost_tuner_agent.py +79 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/infra-cost-ops/agency/finops_governance_agent.py +320 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/infra-cost-ops/agency/regulatory_monitor_agent.py +218 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/infra-cost-ops/configs/config.yaml +551 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/infra-cost-ops/data/cloud_resources.db +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/infra-cost-ops/data/cloud_spend.db +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/infra-cost-ops/examples/02_savings_plan_under_utilised.json +13 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/infra-cost-ops/examples/03_ri_expiry_30d.json +14 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/infra-cost-ops/examples/README.md +23 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/infra-cost-ops/logs/leafmesh_2026-06-11.log +25 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/infra-cost-ops/main.py +49 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/infra-cost-ops/requirements.txt +6 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/infra-cost-ops/tests/__pycache__/test_agent_logic.cpython-314-pytest-9.0.2.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/infra-cost-ops/tests/__pycache__/test_config_shape.cpython-314-pytest-9.0.2.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/infra-cost-ops/tests/test_agent_logic.py +199 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/infra-cost-ops/tests/test_config_shape.py +45 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/infra-cost-ops/validate_config.py +181 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/marketing-ops/__pycache__/main.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/marketing-ops/agency/__pycache__/__init__.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/marketing-ops/agency/__pycache__/aeo_geo_optimiser_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/marketing-ops/agency/__pycache__/brand_guardian_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/marketing-ops/agency/__pycache__/campaign_orchestrator_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/marketing-ops/agency/__pycache__/campaign_strategist_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/marketing-ops/agency/__pycache__/compliance_reviewer_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/marketing-ops/agency/__pycache__/copywriter_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/marketing-ops/agency/__pycache__/market_intelligence_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/marketing-ops/agency/__pycache__/marketing_analytics_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/marketing-ops/agency/__pycache__/marketing_audit_logger_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/marketing-ops/agency/__pycache__/publisher_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/marketing-ops/agency/__pycache__/social_media_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/marketing-ops/agency/__pycache__/visual_briefer_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/marketing-ops/agency/_shared/__pycache__/__init__.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/marketing-ops/agency/_shared/__pycache__/audit_logger.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/marketing-ops/agency/_shared/__pycache__/session_stash.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/marketing-ops/agency/_shared/audit_logger.py +149 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/marketing-ops/agency/_shared/session_stash.py +53 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/marketing-ops/agency/aeo_geo_optimiser_agent.py +250 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/marketing-ops/agency/brand_guardian_agent.py +297 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/marketing-ops/agency/campaign_strategist_agent.py +181 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/marketing-ops/agency/compliance_reviewer_agent.py +122 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/marketing-ops/agency/copywriter_agent.py +107 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/marketing-ops/agency/market_intelligence_agent.py +98 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/marketing-ops/agency/marketing_analytics_agent.py +325 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/marketing-ops/agency/marketing_audit_logger_agent.py +107 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/marketing-ops/agency/publisher_agent.py +114 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/marketing-ops/agency/social_media_agent.py +262 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/marketing-ops/configs/config.yaml +912 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/marketing-ops/examples/01_new_campaign_brief.json +18 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/marketing-ops/examples/02_product_launch_kickoff.json +17 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/marketing-ops/examples/03_brand_crisis.json +17 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/marketing-ops/examples/04_competitor_pricing_move.json +17 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/marketing-ops/examples/README.md +23 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/marketing-ops/main.py +114 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/marketing-ops/requirements.txt +7 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/marketing-ops/tests/__pycache__/conftest.cpython-314-pytest-9.0.2.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/marketing-ops/tests/__pycache__/test_agent_logic.cpython-314-pytest-9.0.2.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/marketing-ops/tests/__pycache__/test_config_shape.cpython-314-pytest-9.0.2.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/marketing-ops/tests/conftest.py +38 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/marketing-ops/tests/test_agent_logic.py +254 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/marketing-ops/tests/test_config_shape.py +162 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/marketing-ops/validate_config.py +181 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/predictive-maintenance/README.md +21 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/predictive-maintenance/__pycache__/main.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/predictive-maintenance/agency/__pycache__/__init__.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/predictive-maintenance/agency/__pycache__/condition_sensor_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/predictive-maintenance/agency/__pycache__/equipment_lifecycle_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/predictive-maintenance/agency/__pycache__/failure_predictor_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/predictive-maintenance/agency/__pycache__/maintenance_records_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/predictive-maintenance/agency/__pycache__/safety_incident_reporter_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/predictive-maintenance/agency/__pycache__/spare_parts_forecaster_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/predictive-maintenance/agency/__pycache__/work_order_scheduler_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/predictive-maintenance/agency/_shared/__pycache__/__init__.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/predictive-maintenance/agency/_shared/__pycache__/audit_logger.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/predictive-maintenance/agency/_shared/audit_logger.py +149 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/predictive-maintenance/agency/equipment_lifecycle_agent.py +186 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/predictive-maintenance/agency/maintenance_records_agent.py +355 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/predictive-maintenance/agency/safety_incident_reporter_agent.py +177 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/predictive-maintenance/agency/work_order_scheduler_agent.py +139 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/predictive-maintenance/configs/config.yaml +650 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/predictive-maintenance/logs/leafmesh_2026-06-11.log +88 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/predictive-maintenance/main.py +61 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/predictive-maintenance/requirements.txt +6 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/predictive-maintenance/tests/__pycache__/test_agent_logic.cpython-314-pytest-9.0.2.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/predictive-maintenance/tests/__pycache__/test_config_shape.cpython-314-pytest-9.0.2.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/predictive-maintenance/tests/test_agent_logic.py +248 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/predictive-maintenance/tests/test_config_shape.py +64 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/predictive-maintenance/validate_config.py +181 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/procurement-ops/__pycache__/main.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/procurement-ops/agency/__pycache__/inventory_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/procurement-ops/agency/__pycache__/logistics_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/procurement-ops/agency/__pycache__/order_intake_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/procurement-ops/agency/__pycache__/purchase_order_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/procurement-ops/agency/__pycache__/supplier_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/procurement-ops/agency/__pycache__/trade_compliance_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/procurement-ops/agency/_shared/__init__.py +5 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/procurement-ops/agency/_shared/__pycache__/__init__.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/procurement-ops/agency/_shared/__pycache__/session_stash.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/procurement-ops/agency/_shared/session_stash.py +53 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/procurement-ops/agency/inventory_agent.py +384 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/procurement-ops/agency/logistics_agent.py +420 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/procurement-ops/agency/order_intake_agent.py +260 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/procurement-ops/agency/purchase_order_agent.py +439 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/procurement-ops/agency/supplier_agent.py +239 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/procurement-ops/agency/trade_compliance_agent.py +228 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/procurement-ops/configs/config.yaml +523 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/procurement-ops/requirements.txt +14 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/procurement-ops/validate_config.py +181 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/production-planning/__pycache__/main.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/production-planning/agency/__pycache__/__init__.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/production-planning/agency/__pycache__/capacity_model_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/production-planning/agency/__pycache__/capacity_what_if_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/production-planning/agency/__pycache__/constraint_flagger_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/production-planning/agency/__pycache__/demand_sensor_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/production-planning/agency/__pycache__/material_requirements_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/production-planning/agency/__pycache__/planning_analytics_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/production-planning/agency/__pycache__/release_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/production-planning/agency/__pycache__/rolling_reopt_orchestrator_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/production-planning/agency/__pycache__/scheduler_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/production-planning/agency/__pycache__/supplier_signal_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/production-planning/agency/_shared/__pycache__/__init__.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/production-planning/agency/_shared/__pycache__/audit_logger.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/production-planning/agency/_shared/__pycache__/session_stash.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/production-planning/agency/_shared/audit_logger.py +149 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/production-planning/agency/_shared/session_stash.py +53 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/production-planning/agency/capacity_model_agent.py +60 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/production-planning/agency/capacity_what_if_agent.py +157 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/production-planning/agency/constraint_flagger_agent.py +102 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/production-planning/agency/planning_analytics_agent.py +391 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/production-planning/agency/release_agent.py +77 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/production-planning/agency/scheduler_agent.py +72 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/production-planning/configs/config.yaml +718 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/production-planning/logs/leafmesh_2026-06-11.log +21 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/production-planning/main.py +61 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/production-planning/requirements.txt +6 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/production-planning/tests/__pycache__/conftest.cpython-314-pytest-9.0.2.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/production-planning/tests/__pycache__/test_agent_logic.cpython-314-pytest-9.0.2.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/production-planning/tests/__pycache__/test_config_shape.cpython-314-pytest-9.0.2.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/production-planning/tests/conftest.py +37 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/production-planning/tests/test_agent_logic.py +115 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/production-planning/tests/test_config_shape.py +69 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/production-planning/validate_config.py +181 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/quality-yield/README.md +15 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/quality-yield/__pycache__/main.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/quality-yield/agency/__pycache__/__init__.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/quality-yield/agency/__pycache__/corrective_action_tracker_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/quality-yield/agency/__pycache__/inspection_intake_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/quality-yield/agency/__pycache__/quality_engineer_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/quality-yield/agency/__pycache__/recall_traceability_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/quality-yield/agency/__pycache__/regulatory_compliance_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/quality-yield/agency/__pycache__/spc_monitor_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/quality-yield/agency/_shared/__pycache__/__init__.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/quality-yield/agency/_shared/__pycache__/audit_logger.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/quality-yield/agency/_shared/audit_logger.py +149 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/quality-yield/agency/inspection_intake_agent.py +122 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/quality-yield/agency/quality_engineer_agent.py +126 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/quality-yield/agency/recall_traceability_agent.py +259 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/quality-yield/agency/regulatory_compliance_agent.py +149 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/quality-yield/agency/spc_monitor_agent.py +208 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/quality-yield/configs/config.yaml +667 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/quality-yield/examples/01_routine_inspection.json +11 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/quality-yield/examples/02_defect_cluster.json +19 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/quality-yield/examples/03_field_complaint_recall.json +12 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/quality-yield/examples/README.md +23 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/quality-yield/main.py +49 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/quality-yield/requirements.txt +6 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/quality-yield/tests/__pycache__/test_agent_logic.cpython-314-pytest-9.0.2.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/quality-yield/tests/__pycache__/test_config_shape.cpython-314-pytest-9.0.2.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/quality-yield/tests/test_agent_logic.py +199 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/quality-yield/tests/test_config_shape.py +81 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/quality-yield/validate_config.py +181 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/quote-to-cash/README.md +14 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/quote-to-cash/__pycache__/main.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/quote-to-cash/agency/__pycache__/__init__.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/quote-to-cash/agency/__pycache__/approval_router_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/quote-to-cash/agency/__pycache__/bundle_recommender_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/quote-to-cash/agency/__pycache__/competitor_watch_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/quote-to-cash/agency/__pycache__/contract_redline_tracker_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/quote-to-cash/agency/__pycache__/cost_calculator_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/quote-to-cash/agency/__pycache__/deal_compliance_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/quote-to-cash/agency/__pycache__/discount_policy_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/quote-to-cash/agency/__pycache__/quote_drafter_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/quote-to-cash/agency/__pycache__/rfq_ingester_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/quote-to-cash/agency/_shared/__pycache__/__init__.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/quote-to-cash/agency/_shared/__pycache__/audit_logger.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/quote-to-cash/agency/_shared/__pycache__/session_stash.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/quote-to-cash/agency/_shared/audit_logger.py +149 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/quote-to-cash/agency/_shared/session_stash.py +53 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/quote-to-cash/agency/approval_router_agent.py +91 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/quote-to-cash/agency/deal_compliance_agent.py +328 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/quote-to-cash/agency/quote_drafter_agent.py +112 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/quote-to-cash/configs/config.yaml +687 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/quote-to-cash/logs/leafmesh_2026-06-11.log +16 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/quote-to-cash/main.py +49 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/quote-to-cash/requirements.txt +6 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/quote-to-cash/tests/__pycache__/test_agent_logic.cpython-314-pytest-9.0.2.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/quote-to-cash/tests/test_agent_logic.py +134 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/quote-to-cash/validate_config.py +181 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/recruiting-ops/README.md +16 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/recruiting-ops/__pycache__/main.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/recruiting-ops/agency/__pycache__/__init__.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/recruiting-ops/agency/__pycache__/bias_audit_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/recruiting-ops/agency/__pycache__/correspondence_drafter_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/recruiting-ops/agency/__pycache__/hiring_assistant_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/recruiting-ops/agency/__pycache__/interview_coordinator_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/recruiting-ops/agency/__pycache__/recruiting_ops_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/recruiting-ops/agency/__pycache__/req_intake_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/recruiting-ops/agency/__pycache__/resume_screener_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/recruiting-ops/agency/__pycache__/sourcing_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/recruiting-ops/agency/_shared/__pycache__/__init__.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/recruiting-ops/agency/_shared/__pycache__/audit_logger.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/recruiting-ops/agency/_shared/audit_logger.py +149 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/recruiting-ops/agency/correspondence_drafter_agent.py +204 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/recruiting-ops/agency/hiring_assistant_agent.py +187 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/recruiting-ops/agency/interview_coordinator_agent.py +148 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/recruiting-ops/agency/recruiting_ops_agent.py +250 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/recruiting-ops/configs/config.yaml +738 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/recruiting-ops/examples/02_candidate_rejection_letter.json +14 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/recruiting-ops/examples/03_offer_drafting.json +15 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/recruiting-ops/examples/README.md +23 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/recruiting-ops/logs/leafmesh_2026-06-11.log +22 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/recruiting-ops/main.py +49 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/recruiting-ops/requirements.txt +6 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/recruiting-ops/tests/__pycache__/test_agent_logic.cpython-314-pytest-9.0.2.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/recruiting-ops/tests/__pycache__/test_config_shape.cpython-314-pytest-9.0.2.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/recruiting-ops/tests/test_agent_logic.py +276 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/recruiting-ops/tests/test_config_shape.py +43 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/recruiting-ops/validate_config.py +181 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/sales-orchestration/README.md +16 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/sales-orchestration/__pycache__/main.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/sales-orchestration/agency/__pycache__/__init__.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/sales-orchestration/agency/__pycache__/abm_orchestrator_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/sales-orchestration/agency/__pycache__/deal_nurturer_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/sales-orchestration/agency/__pycache__/lead_intake_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/sales-orchestration/agency/__pycache__/lead_qualification_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/sales-orchestration/agency/__pycache__/lead_revival_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/sales-orchestration/agency/__pycache__/pipeline_health_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/sales-orchestration/agency/__pycache__/sales_research_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/sales-orchestration/agency/__pycache__/sequence_orchestrator_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/sales-orchestration/agency/_shared/__pycache__/__init__.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/sales-orchestration/agency/_shared/__pycache__/audit_logger.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/sales-orchestration/agency/_shared/audit_logger.py +149 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/sales-orchestration/agency/lead_intake_agent.py +219 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/sales-orchestration/agency/lead_qualification_agent.py +105 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/sales-orchestration/agency/pipeline_health_agent.py +258 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/sales-orchestration/agency/sales_research_agent.py +352 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/sales-orchestration/agency/sequence_orchestrator_agent.py +84 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/sales-orchestration/configs/config.yaml +819 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/sales-orchestration/examples/01_inbound_demo_request.json +23 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/sales-orchestration/examples/03_competitor_steal_signal.json +15 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/sales-orchestration/examples/05_enriched_inbound_lead.json +22 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/sales-orchestration/examples/08_competitive_intel_pull.json +21 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/sales-orchestration/examples/README.md +23 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/sales-orchestration/main.py +49 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/sales-orchestration/requirements.txt +6 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/sales-orchestration/tests/__pycache__/conftest.cpython-314-pytest-9.0.2.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/sales-orchestration/tests/__pycache__/test_agent_logic.cpython-314-pytest-9.0.2.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/sales-orchestration/tests/conftest.py +27 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/sales-orchestration/tests/test_agent_logic.py +317 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/sales-orchestration/validate_config.py +181 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/services-delivery/README.md +59 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/services-delivery/__pycache__/main.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/services-delivery/agency/__pycache__/__init__.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/services-delivery/agency/__pycache__/brief_intake_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/services-delivery/agency/__pycache__/citation_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/services-delivery/agency/__pycache__/consultant_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/services-delivery/agency/__pycache__/context_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/services-delivery/agency/__pycache__/delivery_router_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/services-delivery/agency/__pycache__/doc_extraction_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/services-delivery/agency/__pycache__/engagement_controller_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/services-delivery/agency/__pycache__/engagement_status_drafter_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/services-delivery/agency/__pycache__/performance_review_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/services-delivery/agency/__pycache__/qa_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/services-delivery/agency/__pycache__/research_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/services-delivery/agency/__pycache__/status_sweep_orchestrator_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/services-delivery/agency/_shared/__pycache__/__init__.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/services-delivery/agency/_shared/__pycache__/audit_logger.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/services-delivery/agency/_shared/__pycache__/session_stash.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/services-delivery/agency/_shared/audit_logger.py +149 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/services-delivery/agency/_shared/session_stash.py +53 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/services-delivery/agency/brief_intake_agent.py +52 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/services-delivery/agency/consultant_agent.py +129 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/services-delivery/agency/delivery_router_agent.py +100 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/services-delivery/agency/doc_extraction_agent.py +186 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/services-delivery/agency/engagement_controller_agent.py +258 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/services-delivery/agency/performance_review_agent.py +207 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/services-delivery/agency/qa_agent.py +97 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/services-delivery/agency/research_agent.py +116 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/services-delivery/configs/config.yaml +1340 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/services-delivery/data/time_ledger.db +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/services-delivery/examples/01_new_engagement_memo.json +14 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/services-delivery/examples/README.md +23 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/services-delivery/logs/leafmesh_2026-06-11.log +86 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/services-delivery/main.py +71 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/services-delivery/requirements.txt +6 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/services-delivery/tests/__pycache__/test_agent_logic.cpython-314-pytest-9.0.2.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/services-delivery/tests/__pycache__/test_config_shape.cpython-314-pytest-9.0.2.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/services-delivery/tests/test_agent_logic.py +262 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/services-delivery/tests/test_config_shape.py +200 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/services-delivery/validate_config.py +181 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/warehouse-supply-chain/README.md +41 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/warehouse-supply-chain/__pycache__/main.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/warehouse-supply-chain/agency/__pycache__/__init__.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/warehouse-supply-chain/agency/__pycache__/allocation_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/warehouse-supply-chain/agency/__pycache__/carrier_selector_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/warehouse-supply-chain/agency/__pycache__/exception_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/warehouse-supply-chain/agency/__pycache__/humanoid_status_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/warehouse-supply-chain/agency/__pycache__/inspection_humanoid.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/warehouse-supply-chain/agency/__pycache__/inventory_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/warehouse-supply-chain/agency/__pycache__/inventory_control_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/warehouse-supply-chain/agency/__pycache__/loader_humanoid.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/warehouse-supply-chain/agency/__pycache__/packer_humanoid.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/warehouse-supply-chain/agency/__pycache__/picker_humanoid.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/warehouse-supply-chain/agency/__pycache__/replenishment_planner_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/warehouse-supply-chain/agency/__pycache__/returns_handler_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/warehouse-supply-chain/agency/__pycache__/supplier_relations_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/warehouse-supply-chain/agency/_shared/__pycache__/__init__.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/warehouse-supply-chain/agency/_shared/__pycache__/audit_logger.cpython-314.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/warehouse-supply-chain/agency/_shared/audit_logger.py +149 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/warehouse-supply-chain/agency/allocation_agent.py +100 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/warehouse-supply-chain/agency/exception_agent.py +96 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/warehouse-supply-chain/agency/inventory_control_agent.py +230 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/warehouse-supply-chain/agency/supplier_relations_agent.py +565 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/warehouse-supply-chain/configs/config.yaml +801 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/warehouse-supply-chain/examples/01_routine_order.json +24 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/warehouse-supply-chain/examples/README.md +23 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/warehouse-supply-chain/logs/leafmesh_2026-06-11.log +9 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/warehouse-supply-chain/main.py +61 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/warehouse-supply-chain/requirements.txt +6 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/warehouse-supply-chain/tests/__pycache__/test_agent_logic.cpython-314-pytest-9.0.2.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/warehouse-supply-chain/tests/__pycache__/test_config_shape.cpython-314-pytest-9.0.2.pyc +0 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/warehouse-supply-chain/tests/test_agent_logic.py +338 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/warehouse-supply-chain/tests/test_config_shape.py +132 -0
- create_leafmesh-2.4.1/create_leafmesh/templates/warehouse-supply-chain/validate_config.py +181 -0
- create_leafmesh-2.4.1/create_leafmesh.egg-info/PKG-INFO +94 -0
- create_leafmesh-2.4.1/create_leafmesh.egg-info/SOURCES.txt +991 -0
- create_leafmesh-2.4.1/pyproject.toml +26 -0
- create_leafmesh-2.3.2/PKG-INFO +0 -94
- create_leafmesh-2.3.2/create_leafmesh/__init__.py +0 -3
- create_leafmesh-2.3.2/create_leafmesh/templates/_inspire/agency/__pycache__/advisor_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/_inspire/agency/__pycache__/fallback_researcher_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/_inspire/agency/__pycache__/greeter_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/_inspire/agency/__pycache__/processor_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/_inspire/agency/__pycache__/researcher_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/_inspire/agency/__pycache__/risk_scorer_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/_inspire/agency/advisor_agent.py +0 -151
- create_leafmesh-2.3.2/create_leafmesh/templates/_inspire/agency/fallback_researcher_agent.py +0 -80
- create_leafmesh-2.3.2/create_leafmesh/templates/_inspire/agency/greeter_agent.py +0 -91
- create_leafmesh-2.3.2/create_leafmesh/templates/_inspire/agency/processor_agent.py +0 -120
- create_leafmesh-2.3.2/create_leafmesh/templates/_inspire/agency/researcher_agent.py +0 -114
- create_leafmesh-2.3.2/create_leafmesh/templates/_inspire/agency/risk_scorer_agent.py +0 -174
- create_leafmesh-2.3.2/create_leafmesh/templates/_inspire/configs/config.yaml +0 -1257
- create_leafmesh-2.3.2/create_leafmesh/templates/_inspire/requirements.txt +0 -10
- create_leafmesh-2.3.2/create_leafmesh/templates/_registry.yaml +0 -415
- create_leafmesh-2.3.2/create_leafmesh/templates/bd-proposals/README.md +0 -11
- create_leafmesh-2.3.2/create_leafmesh/templates/bd-proposals/agency/__pycache__/__init__.cpython-314.pyc +0 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/bd-proposals/agency/__pycache__/compliance_reviewer_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/bd-proposals/agency/__pycache__/contract_review_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/bd-proposals/agency/__pycache__/contract_search_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/bd-proposals/agency/__pycache__/doc_extraction_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/bd-proposals/agency/__pycache__/past_proposal_retriever_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/bd-proposals/agency/__pycache__/pricing_configurator_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/bd-proposals/agency/__pycache__/rfp_scout_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/bd-proposals/agency/_shared/audit_logger.py +0 -47
- create_leafmesh-2.3.2/create_leafmesh/templates/bd-proposals/agency/bid_no_bid_decisioner_agent.py +0 -87
- create_leafmesh-2.3.2/create_leafmesh/templates/bd-proposals/agency/competitor_intel_archive_agent.py +0 -136
- create_leafmesh-2.3.2/create_leafmesh/templates/bd-proposals/agency/compliance_reviewer_agent.py +0 -48
- create_leafmesh-2.3.2/create_leafmesh/templates/bd-proposals/agency/contract_review_agent.py +0 -162
- create_leafmesh-2.3.2/create_leafmesh/templates/bd-proposals/agency/contract_search_agent.py +0 -148
- create_leafmesh-2.3.2/create_leafmesh/templates/bd-proposals/agency/doc_extraction_agent.py +0 -115
- create_leafmesh-2.3.2/create_leafmesh/templates/bd-proposals/agency/past_proposal_retriever_agent.py +0 -30
- create_leafmesh-2.3.2/create_leafmesh/templates/bd-proposals/agency/rfp_ingester_agent.py +0 -31
- create_leafmesh-2.3.2/create_leafmesh/templates/bd-proposals/agency/rfp_scout_agent.py +0 -166
- create_leafmesh-2.3.2/create_leafmesh/templates/bd-proposals/agency/win_loss_analyzer_agent.py +0 -39
- create_leafmesh-2.3.2/create_leafmesh/templates/bd-proposals/configs/config.yaml +0 -819
- create_leafmesh-2.3.2/create_leafmesh/templates/bd-proposals/examples/01_new_rfp_received.json +0 -13
- create_leafmesh-2.3.2/create_leafmesh/templates/bd-proposals/examples/02_win_post_mortem.json +0 -23
- create_leafmesh-2.3.2/create_leafmesh/templates/bd-proposals/examples/README.md +0 -23
- create_leafmesh-2.3.2/create_leafmesh/templates/bd-proposals/logs/leafmesh_2026-06-09.log +0 -24
- create_leafmesh-2.3.2/create_leafmesh/templates/bd-proposals/logs/leafmesh_2026-06-10.log +0 -6
- create_leafmesh-2.3.2/create_leafmesh/templates/bd-proposals/main.py +0 -45
- create_leafmesh-2.3.2/create_leafmesh/templates/bd-proposals/requirements.txt +0 -3
- create_leafmesh-2.3.2/create_leafmesh/templates/bd-proposals/tests/__pycache__/test_agent_logic.cpython-314-pytest-9.0.2.pyc +0 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/bd-proposals/tests/test_agent_logic.py +0 -62
- create_leafmesh-2.3.2/create_leafmesh/templates/bench-management/README.md +0 -12
- create_leafmesh-2.3.2/create_leafmesh/templates/bench-management/agency/__pycache__/__init__.cpython-314.pyc +0 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/bench-management/agency/__pycache__/allocation_planner_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/bench-management/agency/_shared/audit_logger.py +0 -47
- create_leafmesh-2.3.2/create_leafmesh/templates/bench-management/agency/allocation_planner_agent.py +0 -32
- create_leafmesh-2.3.2/create_leafmesh/templates/bench-management/agency/capacity_forecaster_agent.py +0 -27
- create_leafmesh-2.3.2/create_leafmesh/templates/bench-management/agency/career_path_recommender_agent.py +0 -54
- create_leafmesh-2.3.2/create_leafmesh/templates/bench-management/agency/esat_survey_agent.py +0 -205
- create_leafmesh-2.3.2/create_leafmesh/templates/bench-management/agency/idle_detector_agent.py +0 -19
- create_leafmesh-2.3.2/create_leafmesh/templates/bench-management/agency/performance_review_agent.py +0 -153
- create_leafmesh-2.3.2/create_leafmesh/templates/bench-management/agency/reskilling_recommender_agent.py +0 -20
- create_leafmesh-2.3.2/create_leafmesh/templates/bench-management/agency/skills_inventory_agent.py +0 -138
- create_leafmesh-2.3.2/create_leafmesh/templates/bench-management/agency/skills_matcher_agent.py +0 -44
- create_leafmesh-2.3.2/create_leafmesh/templates/bench-management/agency/utilisation_calculator_agent.py +0 -145
- create_leafmesh-2.3.2/create_leafmesh/templates/bench-management/configs/config.yaml +0 -669
- create_leafmesh-2.3.2/create_leafmesh/templates/bench-management/examples/01_new_project_kickoff.json +0 -19
- create_leafmesh-2.3.2/create_leafmesh/templates/bench-management/examples/02_weekly_bench_review.json +0 -10
- create_leafmesh-2.3.2/create_leafmesh/templates/bench-management/examples/03_promotion_readiness.json +0 -14
- create_leafmesh-2.3.2/create_leafmesh/templates/bench-management/examples/README.md +0 -23
- create_leafmesh-2.3.2/create_leafmesh/templates/bench-management/logs/leafmesh_2026-06-09.log +0 -6
- create_leafmesh-2.3.2/create_leafmesh/templates/bench-management/logs/leafmesh_2026-06-10.log +0 -2
- create_leafmesh-2.3.2/create_leafmesh/templates/bench-management/main.py +0 -45
- create_leafmesh-2.3.2/create_leafmesh/templates/bench-management/requirements.txt +0 -3
- create_leafmesh-2.3.2/create_leafmesh/templates/bench-management/tests/__pycache__/conftest.cpython-314-pytest-9.0.2.pyc +0 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/bench-management/tests/__pycache__/test_agent_logic.cpython-314-pytest-9.0.2.pyc +0 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/bench-management/tests/conftest.py +0 -20
- create_leafmesh-2.3.2/create_leafmesh/templates/bench-management/tests/test_agent_logic.py +0 -31
- create_leafmesh-2.3.2/create_leafmesh/templates/claude_skills/leafmesh/SKILL.md +0 -2554
- create_leafmesh-2.3.2/create_leafmesh/templates/customer-success/agency/__init__.py +0 -6
- create_leafmesh-2.3.2/create_leafmesh/templates/customer-success/agency/__pycache__/__init__.cpython-314.pyc +0 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/customer-success/agency/__pycache__/competitor_intel_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/customer-success/agency/__pycache__/customer_onboarding_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/customer-success/agency/__pycache__/exec_alignment_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/customer-success/agency/__pycache__/health_score_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/customer-success/agency/__pycache__/playbook_trigger_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/customer-success/agency/__pycache__/renewal_forecaster_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/customer-success/agency/__pycache__/risk_detector_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/customer-success/agency/__pycache__/save_play_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/customer-success/agency/_shared/audit_logger.py +0 -72
- create_leafmesh-2.3.2/create_leafmesh/templates/customer-success/agency/competitor_intel_agent.py +0 -215
- create_leafmesh-2.3.2/create_leafmesh/templates/customer-success/agency/customer_onboarding_agent.py +0 -278
- create_leafmesh-2.3.2/create_leafmesh/templates/customer-success/agency/exec_alignment_agent.py +0 -69
- create_leafmesh-2.3.2/create_leafmesh/templates/customer-success/agency/expansion_signal_agent.py +0 -111
- create_leafmesh-2.3.2/create_leafmesh/templates/customer-success/agency/health_score_agent.py +0 -85
- create_leafmesh-2.3.2/create_leafmesh/templates/customer-success/agency/health_score_explainer_agent.py +0 -50
- create_leafmesh-2.3.2/create_leafmesh/templates/customer-success/agency/health_sweep_orchestrator_agent.py +0 -38
- create_leafmesh-2.3.2/create_leafmesh/templates/customer-success/agency/renewal_forecaster_agent.py +0 -79
- create_leafmesh-2.3.2/create_leafmesh/templates/customer-success/agency/renewal_window_monitor_agent.py +0 -44
- create_leafmesh-2.3.2/create_leafmesh/templates/customer-success/agency/risk_detector_agent.py +0 -123
- create_leafmesh-2.3.2/create_leafmesh/templates/customer-success/agency/save_play_agent.py +0 -94
- create_leafmesh-2.3.2/create_leafmesh/templates/customer-success/agency/usage_analytics_agent.py +0 -164
- create_leafmesh-2.3.2/create_leafmesh/templates/customer-success/configs/config.yaml +0 -1349
- create_leafmesh-2.3.2/create_leafmesh/templates/customer-success/examples/02_billing_failed_payment.json +0 -19
- create_leafmesh-2.3.2/create_leafmesh/templates/customer-success/examples/03_renewal_window_60d.json +0 -21
- create_leafmesh-2.3.2/create_leafmesh/templates/customer-success/examples/04_executive_change.json +0 -26
- create_leafmesh-2.3.2/create_leafmesh/templates/customer-success/examples/README.md +0 -23
- create_leafmesh-2.3.2/create_leafmesh/templates/customer-success/logs/leafmesh_2026-06-09.log +0 -108
- create_leafmesh-2.3.2/create_leafmesh/templates/customer-success/logs/leafmesh_2026-06-10.log +0 -108
- create_leafmesh-2.3.2/create_leafmesh/templates/customer-success/main.py +0 -116
- create_leafmesh-2.3.2/create_leafmesh/templates/customer-success/requirements.txt +0 -4
- create_leafmesh-2.3.2/create_leafmesh/templates/customer-success/tests/__pycache__/test_agent_logic.cpython-314-pytest-9.0.2.pyc +0 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/customer-success/tests/__pycache__/test_config_shape.cpython-314-pytest-9.0.2.pyc +0 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/customer-success/tests/test_agent_logic.py +0 -220
- create_leafmesh-2.3.2/create_leafmesh/templates/customer-success/tests/test_config_shape.py +0 -160
- create_leafmesh-2.3.2/create_leafmesh/templates/customer-support/README.md +0 -52
- create_leafmesh-2.3.2/create_leafmesh/templates/customer-support/agency/__pycache__/__init__.cpython-314.pyc +0 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/customer-support/agency/__pycache__/crm_case_generator_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/customer-support/agency/__pycache__/cross_channel_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/customer-support/agency/__pycache__/knowledge_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/customer-support/agency/__pycache__/phone_support_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/customer-support/agency/__pycache__/qa_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/customer-support/agency/__pycache__/sentiment_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/customer-support/agency/__pycache__/ticket_intake_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/customer-support/agency/__pycache__/triage_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/customer-support/agency/_shared/audit_logger.py +0 -53
- create_leafmesh-2.3.2/create_leafmesh/templates/customer-support/agency/crm_case_generator_agent.py +0 -206
- create_leafmesh-2.3.2/create_leafmesh/templates/customer-support/agency/cross_channel_agent.py +0 -171
- create_leafmesh-2.3.2/create_leafmesh/templates/customer-support/agency/csat_collector_agent.py +0 -150
- create_leafmesh-2.3.2/create_leafmesh/templates/customer-support/agency/kb_gap_filler_agent.py +0 -46
- create_leafmesh-2.3.2/create_leafmesh/templates/customer-support/agency/knowledge_agent.py +0 -47
- create_leafmesh-2.3.2/create_leafmesh/templates/customer-support/agency/phone_support_agent.py +0 -176
- create_leafmesh-2.3.2/create_leafmesh/templates/customer-support/agency/qa_agent.py +0 -74
- create_leafmesh-2.3.2/create_leafmesh/templates/customer-support/agency/response_agent.py +0 -41
- create_leafmesh-2.3.2/create_leafmesh/templates/customer-support/agency/ticket_clustering_agent.py +0 -151
- create_leafmesh-2.3.2/create_leafmesh/templates/customer-support/agency/ticket_intake_agent.py +0 -49
- create_leafmesh-2.3.2/create_leafmesh/templates/customer-support/agency/triage_agent.py +0 -82
- create_leafmesh-2.3.2/create_leafmesh/templates/customer-support/configs/config.yaml +0 -1018
- create_leafmesh-2.3.2/create_leafmesh/templates/customer-support/logs/leafmesh_2026-06-09.log +0 -76
- create_leafmesh-2.3.2/create_leafmesh/templates/customer-support/logs/leafmesh_2026-06-10.log +0 -38
- create_leafmesh-2.3.2/create_leafmesh/templates/customer-support/main.py +0 -58
- create_leafmesh-2.3.2/create_leafmesh/templates/customer-support/requirements.txt +0 -3
- create_leafmesh-2.3.2/create_leafmesh/templates/customer-support/tests/__pycache__/test_agent_logic.cpython-314-pytest-9.0.2.pyc +0 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/customer-support/tests/__pycache__/test_config_shape.cpython-314-pytest-9.0.2.pyc +0 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/customer-support/tests/test_agent_logic.py +0 -124
- create_leafmesh-2.3.2/create_leafmesh/templates/customer-support/tests/test_config_shape.py +0 -96
- create_leafmesh-2.3.2/create_leafmesh/templates/engineering-sdlc/agency/__pycache__/__init__.cpython-314.pyc +0 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/engineering-sdlc/agency/__pycache__/code_reviewer_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/engineering-sdlc/agency/__pycache__/junior_engineer_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/engineering-sdlc/agency/__pycache__/regulatory_monitor_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/engineering-sdlc/agency/__pycache__/spec_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/engineering-sdlc/agency/_shared/audit_logger.py +0 -53
- create_leafmesh-2.3.2/create_leafmesh/templates/engineering-sdlc/agency/code_reviewer_agent.py +0 -71
- create_leafmesh-2.3.2/create_leafmesh/templates/engineering-sdlc/agency/junior_engineer_agent.py +0 -50
- create_leafmesh-2.3.2/create_leafmesh/templates/engineering-sdlc/agency/spec_agent.py +0 -59
- create_leafmesh-2.3.2/create_leafmesh/templates/engineering-sdlc/configs/config.yaml +0 -820
- create_leafmesh-2.3.2/create_leafmesh/templates/engineering-sdlc/main.py +0 -58
- create_leafmesh-2.3.2/create_leafmesh/templates/engineering-sdlc/requirements.txt +0 -3
- create_leafmesh-2.3.2/create_leafmesh/templates/finance-ops/README.md +0 -188
- create_leafmesh-2.3.2/create_leafmesh/templates/finance-ops/agency/__pycache__/__init__.cpython-314.pyc +0 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/finance-ops/agency/__pycache__/approval_router_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/finance-ops/agency/__pycache__/fraud_check_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/finance-ops/agency/__pycache__/invoice_intake_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/finance-ops/agency/__pycache__/kyc_processing_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/finance-ops/agency/__pycache__/loan_origination_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/finance-ops/agency/__pycache__/loan_servicing_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/finance-ops/agency/__pycache__/po_match_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/finance-ops/agency/__pycache__/reconciliation_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/finance-ops/agency/__pycache__/regulatory_monitor_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/finance-ops/agency/_shared/audit_logger.py +0 -91
- create_leafmesh-2.3.2/create_leafmesh/templates/finance-ops/agency/_shared/erp_poster.py +0 -135
- create_leafmesh-2.3.2/create_leafmesh/templates/finance-ops/agency/approval_router_agent.py +0 -83
- create_leafmesh-2.3.2/create_leafmesh/templates/finance-ops/agency/duplicate_detector_agent.py +0 -160
- create_leafmesh-2.3.2/create_leafmesh/templates/finance-ops/agency/erp_poster_agent.py +0 -36
- create_leafmesh-2.3.2/create_leafmesh/templates/finance-ops/agency/exception_drafter_agent.py +0 -56
- create_leafmesh-2.3.2/create_leafmesh/templates/finance-ops/agency/extraction_agent.py +0 -80
- create_leafmesh-2.3.2/create_leafmesh/templates/finance-ops/agency/fraud_check_agent.py +0 -81
- create_leafmesh-2.3.2/create_leafmesh/templates/finance-ops/agency/gl_coding_agent.py +0 -53
- create_leafmesh-2.3.2/create_leafmesh/templates/finance-ops/agency/invoice_intake_agent.py +0 -75
- create_leafmesh-2.3.2/create_leafmesh/templates/finance-ops/agency/kyc_processing_agent.py +0 -159
- create_leafmesh-2.3.2/create_leafmesh/templates/finance-ops/agency/loan_origination_agent.py +0 -192
- create_leafmesh-2.3.2/create_leafmesh/templates/finance-ops/agency/payment_scheduler_agent.py +0 -151
- create_leafmesh-2.3.2/create_leafmesh/templates/finance-ops/agency/po_match_agent.py +0 -73
- create_leafmesh-2.3.2/create_leafmesh/templates/finance-ops/agency/reconciliation_agent.py +0 -59
- create_leafmesh-2.3.2/create_leafmesh/templates/finance-ops/agency/vendor_onboarding_agent.py +0 -183
- create_leafmesh-2.3.2/create_leafmesh/templates/finance-ops/agency/vendor_query_handler_agent.py +0 -77
- create_leafmesh-2.3.2/create_leafmesh/templates/finance-ops/configs/config.yaml +0 -1452
- create_leafmesh-2.3.2/create_leafmesh/templates/finance-ops/examples/02_fraud_signal_round_number.json +0 -26
- create_leafmesh-2.3.2/create_leafmesh/templates/finance-ops/examples/03_po_mismatch_exception.json +0 -26
- create_leafmesh-2.3.2/create_leafmesh/templates/finance-ops/examples/05_vendor_inquiry.json +0 -14
- create_leafmesh-2.3.2/create_leafmesh/templates/finance-ops/examples/README.md +0 -62
- create_leafmesh-2.3.2/create_leafmesh/templates/finance-ops/logs/leafmesh_2026-06-09.log +0 -57
- create_leafmesh-2.3.2/create_leafmesh/templates/finance-ops/logs/leafmesh_2026-06-10.log +0 -38
- create_leafmesh-2.3.2/create_leafmesh/templates/finance-ops/main.py +0 -152
- create_leafmesh-2.3.2/create_leafmesh/templates/finance-ops/requirements.txt +0 -7
- create_leafmesh-2.3.2/create_leafmesh/templates/finance-ops/tests/__pycache__/conftest.cpython-314-pytest-9.0.2.pyc +0 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/finance-ops/tests/__pycache__/test_agent_logic.cpython-314-pytest-9.0.2.pyc +0 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/finance-ops/tests/__pycache__/test_config_shape.cpython-314-pytest-9.0.2.pyc +0 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/finance-ops/tests/conftest.py +0 -31
- create_leafmesh-2.3.2/create_leafmesh/templates/finance-ops/tests/test_agent_logic.py +0 -171
- create_leafmesh-2.3.2/create_leafmesh/templates/finance-ops/tests/test_config_shape.py +0 -192
- create_leafmesh-2.3.2/create_leafmesh/templates/infra-cost-ops/README.md +0 -11
- create_leafmesh-2.3.2/create_leafmesh/templates/infra-cost-ops/agency/__pycache__/__init__.cpython-314.pyc +0 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/infra-cost-ops/agency/__pycache__/iac_drift_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/infra-cost-ops/agency/__pycache__/right_sizer_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/infra-cost-ops/agency/_shared/audit_logger.py +0 -47
- create_leafmesh-2.3.2/create_leafmesh/templates/infra-cost-ops/agency/budget_alert_agent.py +0 -167
- create_leafmesh-2.3.2/create_leafmesh/templates/infra-cost-ops/agency/commitment_utilisation_agent.py +0 -35
- create_leafmesh-2.3.2/create_leafmesh/templates/infra-cost-ops/agency/cost_anomaly_agent.py +0 -46
- create_leafmesh-2.3.2/create_leafmesh/templates/infra-cost-ops/agency/cost_tuner_agent.py +0 -20
- create_leafmesh-2.3.2/create_leafmesh/templates/infra-cost-ops/agency/regulatory_monitor_agent.py +0 -184
- create_leafmesh-2.3.2/create_leafmesh/templates/infra-cost-ops/agency/reserved_capacity_planner_agent.py +0 -18
- create_leafmesh-2.3.2/create_leafmesh/templates/infra-cost-ops/agency/right_sizer_agent.py +0 -33
- create_leafmesh-2.3.2/create_leafmesh/templates/infra-cost-ops/agency/tag_compliance_agent.py +0 -136
- create_leafmesh-2.3.2/create_leafmesh/templates/infra-cost-ops/configs/config.yaml +0 -527
- create_leafmesh-2.3.2/create_leafmesh/templates/infra-cost-ops/examples/02_savings_plan_under_utilised.json +0 -13
- create_leafmesh-2.3.2/create_leafmesh/templates/infra-cost-ops/examples/03_ri_expiry_30d.json +0 -14
- create_leafmesh-2.3.2/create_leafmesh/templates/infra-cost-ops/examples/README.md +0 -23
- create_leafmesh-2.3.2/create_leafmesh/templates/infra-cost-ops/logs/leafmesh_2026-06-09.log +0 -12
- create_leafmesh-2.3.2/create_leafmesh/templates/infra-cost-ops/logs/leafmesh_2026-06-10.log +0 -4
- create_leafmesh-2.3.2/create_leafmesh/templates/infra-cost-ops/main.py +0 -45
- create_leafmesh-2.3.2/create_leafmesh/templates/infra-cost-ops/requirements.txt +0 -3
- create_leafmesh-2.3.2/create_leafmesh/templates/infra-cost-ops/tests/__pycache__/test_agent_logic.cpython-314-pytest-9.0.2.pyc +0 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/infra-cost-ops/tests/__pycache__/test_config_shape.cpython-314-pytest-9.0.2.pyc +0 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/infra-cost-ops/tests/test_agent_logic.py +0 -51
- create_leafmesh-2.3.2/create_leafmesh/templates/infra-cost-ops/tests/test_config_shape.py +0 -40
- create_leafmesh-2.3.2/create_leafmesh/templates/marketing-ops/README.md +0 -188
- create_leafmesh-2.3.2/create_leafmesh/templates/marketing-ops/agency/__pycache__/__init__.cpython-314.pyc +0 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/marketing-ops/agency/__pycache__/attribution_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/marketing-ops/agency/__pycache__/audience_intelligence_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/marketing-ops/agency/__pycache__/brief_intake_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/marketing-ops/agency/__pycache__/campaign_orchestrator_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/marketing-ops/agency/__pycache__/campaign_strategist_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/marketing-ops/agency/__pycache__/competitor_intel_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/marketing-ops/agency/__pycache__/compliance_reviewer_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/marketing-ops/agency/__pycache__/copywriter_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/marketing-ops/agency/__pycache__/crisis_responder_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/marketing-ops/agency/__pycache__/performance_analyzer_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/marketing-ops/agency/__pycache__/publisher_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/marketing-ops/agency/__pycache__/visual_briefer_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/marketing-ops/agency/_shared/audit_logger.py +0 -72
- create_leafmesh-2.3.2/create_leafmesh/templates/marketing-ops/agency/aeo_geo_optimiser_agent.py +0 -237
- create_leafmesh-2.3.2/create_leafmesh/templates/marketing-ops/agency/attribution_agent.py +0 -55
- create_leafmesh-2.3.2/create_leafmesh/templates/marketing-ops/agency/audience_intelligence_agent.py +0 -48
- create_leafmesh-2.3.2/create_leafmesh/templates/marketing-ops/agency/brand_sentiment_tracker_agent.py +0 -140
- create_leafmesh-2.3.2/create_leafmesh/templates/marketing-ops/agency/brief_intake_agent.py +0 -42
- create_leafmesh-2.3.2/create_leafmesh/templates/marketing-ops/agency/campaign_strategist_agent.py +0 -62
- create_leafmesh-2.3.2/create_leafmesh/templates/marketing-ops/agency/competitor_intel_agent.py +0 -54
- create_leafmesh-2.3.2/create_leafmesh/templates/marketing-ops/agency/compliance_reviewer_agent.py +0 -73
- create_leafmesh-2.3.2/create_leafmesh/templates/marketing-ops/agency/copywriter_agent.py +0 -52
- create_leafmesh-2.3.2/create_leafmesh/templates/marketing-ops/agency/crisis_responder_agent.py +0 -76
- create_leafmesh-2.3.2/create_leafmesh/templates/marketing-ops/agency/email_engagement_analyzer_agent.py +0 -163
- create_leafmesh-2.3.2/create_leafmesh/templates/marketing-ops/agency/marketing_audit_logger_agent.py +0 -71
- create_leafmesh-2.3.2/create_leafmesh/templates/marketing-ops/agency/performance_analyzer_agent.py +0 -52
- create_leafmesh-2.3.2/create_leafmesh/templates/marketing-ops/agency/publisher_agent.py +0 -57
- create_leafmesh-2.3.2/create_leafmesh/templates/marketing-ops/agency/social_media_agent.py +0 -222
- create_leafmesh-2.3.2/create_leafmesh/templates/marketing-ops/configs/config.yaml +0 -878
- create_leafmesh-2.3.2/create_leafmesh/templates/marketing-ops/examples/01_new_campaign_brief.json +0 -18
- create_leafmesh-2.3.2/create_leafmesh/templates/marketing-ops/examples/02_product_launch_kickoff.json +0 -17
- create_leafmesh-2.3.2/create_leafmesh/templates/marketing-ops/examples/03_brand_crisis.json +0 -17
- create_leafmesh-2.3.2/create_leafmesh/templates/marketing-ops/examples/04_competitor_pricing_move.json +0 -17
- create_leafmesh-2.3.2/create_leafmesh/templates/marketing-ops/examples/README.md +0 -23
- create_leafmesh-2.3.2/create_leafmesh/templates/marketing-ops/logs/leafmesh_2026-06-09.log +0 -64
- create_leafmesh-2.3.2/create_leafmesh/templates/marketing-ops/logs/leafmesh_2026-06-10.log +0 -16
- create_leafmesh-2.3.2/create_leafmesh/templates/marketing-ops/main.py +0 -116
- create_leafmesh-2.3.2/create_leafmesh/templates/marketing-ops/requirements.txt +0 -4
- create_leafmesh-2.3.2/create_leafmesh/templates/marketing-ops/tests/__pycache__/conftest.cpython-314-pytest-9.0.2.pyc +0 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/marketing-ops/tests/__pycache__/test_agent_logic.cpython-314-pytest-9.0.2.pyc +0 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/marketing-ops/tests/__pycache__/test_config_shape.cpython-314-pytest-9.0.2.pyc +0 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/marketing-ops/tests/conftest.py +0 -29
- create_leafmesh-2.3.2/create_leafmesh/templates/marketing-ops/tests/test_agent_logic.py +0 -173
- create_leafmesh-2.3.2/create_leafmesh/templates/marketing-ops/tests/test_config_shape.py +0 -150
- create_leafmesh-2.3.2/create_leafmesh/templates/predictive-maintenance/README.md +0 -17
- create_leafmesh-2.3.2/create_leafmesh/templates/predictive-maintenance/agency/__pycache__/__init__.cpython-314.pyc +0 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/predictive-maintenance/agency/__pycache__/failure_predictor_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/predictive-maintenance/agency/__pycache__/work_order_scheduler_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/predictive-maintenance/agency/_shared/audit_logger.py +0 -53
- create_leafmesh-2.3.2/create_leafmesh/templates/predictive-maintenance/agency/dispatcher_agent.py +0 -20
- create_leafmesh-2.3.2/create_leafmesh/templates/predictive-maintenance/agency/equipment_lifecycle_agent.py +0 -142
- create_leafmesh-2.3.2/create_leafmesh/templates/predictive-maintenance/agency/maintenance_history_agent.py +0 -158
- create_leafmesh-2.3.2/create_leafmesh/templates/predictive-maintenance/agency/parts_requestor_agent.py +0 -22
- create_leafmesh-2.3.2/create_leafmesh/templates/predictive-maintenance/agency/pm_compliance_tracker_agent.py +0 -105
- create_leafmesh-2.3.2/create_leafmesh/templates/predictive-maintenance/agency/recurrence_watchdog_agent.py +0 -15
- create_leafmesh-2.3.2/create_leafmesh/templates/predictive-maintenance/agency/safety_incident_reporter_agent.py +0 -135
- create_leafmesh-2.3.2/create_leafmesh/templates/predictive-maintenance/agency/work_order_scheduler_agent.py +0 -42
- create_leafmesh-2.3.2/create_leafmesh/templates/predictive-maintenance/configs/config.yaml +0 -642
- create_leafmesh-2.3.2/create_leafmesh/templates/predictive-maintenance/main.py +0 -57
- create_leafmesh-2.3.2/create_leafmesh/templates/predictive-maintenance/requirements.txt +0 -3
- create_leafmesh-2.3.2/create_leafmesh/templates/predictive-maintenance/tests/__pycache__/test_agent_logic.cpython-314-pytest-9.0.2.pyc +0 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/predictive-maintenance/tests/__pycache__/test_config_shape.cpython-314-pytest-9.0.2.pyc +0 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/predictive-maintenance/tests/test_agent_logic.py +0 -41
- create_leafmesh-2.3.2/create_leafmesh/templates/predictive-maintenance/tests/test_config_shape.py +0 -41
- create_leafmesh-2.3.2/create_leafmesh/templates/procurement-ops/agency/__pycache__/inventory_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/procurement-ops/agency/__pycache__/logistics_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/procurement-ops/agency/__pycache__/order_intake_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/procurement-ops/agency/__pycache__/purchase_order_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/procurement-ops/agency/__pycache__/supplier_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/procurement-ops/agency/__pycache__/trade_compliance_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/procurement-ops/agency/inventory_agent.py +0 -331
- create_leafmesh-2.3.2/create_leafmesh/templates/procurement-ops/agency/logistics_agent.py +0 -415
- create_leafmesh-2.3.2/create_leafmesh/templates/procurement-ops/agency/order_intake_agent.py +0 -253
- create_leafmesh-2.3.2/create_leafmesh/templates/procurement-ops/agency/purchase_order_agent.py +0 -429
- create_leafmesh-2.3.2/create_leafmesh/templates/procurement-ops/agency/supplier_agent.py +0 -207
- create_leafmesh-2.3.2/create_leafmesh/templates/procurement-ops/agency/trade_compliance_agent.py +0 -205
- create_leafmesh-2.3.2/create_leafmesh/templates/procurement-ops/configs/config.yaml +0 -510
- create_leafmesh-2.3.2/create_leafmesh/templates/procurement-ops/requirements.txt +0 -14
- create_leafmesh-2.3.2/create_leafmesh/templates/production-planning/agency/__pycache__/__init__.cpython-314.pyc +0 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/production-planning/agency/__pycache__/constraint_flagger_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/production-planning/agency/_shared/audit_logger.py +0 -53
- create_leafmesh-2.3.2/create_leafmesh/templates/production-planning/agency/capacity_model_agent.py +0 -36
- create_leafmesh-2.3.2/create_leafmesh/templates/production-planning/agency/capacity_what_if_agent.py +0 -139
- create_leafmesh-2.3.2/create_leafmesh/templates/production-planning/agency/constraint_flagger_agent.py +0 -54
- create_leafmesh-2.3.2/create_leafmesh/templates/production-planning/agency/demand_forecast_eval_agent.py +0 -166
- create_leafmesh-2.3.2/create_leafmesh/templates/production-planning/agency/production_kpi_tracker_agent.py +0 -155
- create_leafmesh-2.3.2/create_leafmesh/templates/production-planning/agency/release_agent.py +0 -22
- create_leafmesh-2.3.2/create_leafmesh/templates/production-planning/agency/scheduler_agent.py +0 -56
- create_leafmesh-2.3.2/create_leafmesh/templates/production-planning/configs/config.yaml +0 -692
- create_leafmesh-2.3.2/create_leafmesh/templates/production-planning/main.py +0 -57
- create_leafmesh-2.3.2/create_leafmesh/templates/production-planning/requirements.txt +0 -3
- create_leafmesh-2.3.2/create_leafmesh/templates/production-planning/tests/__pycache__/conftest.cpython-314-pytest-9.0.2.pyc +0 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/production-planning/tests/__pycache__/test_agent_logic.cpython-314-pytest-9.0.2.pyc +0 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/production-planning/tests/__pycache__/test_config_shape.cpython-314-pytest-9.0.2.pyc +0 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/production-planning/tests/conftest.py +0 -28
- create_leafmesh-2.3.2/create_leafmesh/templates/production-planning/tests/test_agent_logic.py +0 -45
- create_leafmesh-2.3.2/create_leafmesh/templates/production-planning/tests/test_config_shape.py +0 -57
- create_leafmesh-2.3.2/create_leafmesh/templates/quality-yield/README.md +0 -10
- create_leafmesh-2.3.2/create_leafmesh/templates/quality-yield/agency/__pycache__/__init__.cpython-314.pyc +0 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/quality-yield/agency/__pycache__/defect_detector_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/quality-yield/agency/__pycache__/root_cause_analyzer_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/quality-yield/agency/_shared/audit_logger.py +0 -52
- create_leafmesh-2.3.2/create_leafmesh/templates/quality-yield/agency/batch_traceability_agent.py +0 -54
- create_leafmesh-2.3.2/create_leafmesh/templates/quality-yield/agency/corrective_action_drafter_agent.py +0 -32
- create_leafmesh-2.3.2/create_leafmesh/templates/quality-yield/agency/defect_detector_agent.py +0 -61
- create_leafmesh-2.3.2/create_leafmesh/templates/quality-yield/agency/inspection_intake_agent.py +0 -32
- create_leafmesh-2.3.2/create_leafmesh/templates/quality-yield/agency/recall_orchestrator_agent.py +0 -153
- create_leafmesh-2.3.2/create_leafmesh/templates/quality-yield/agency/regulatory_compliance_agent.py +0 -133
- create_leafmesh-2.3.2/create_leafmesh/templates/quality-yield/agency/root_cause_analyzer_agent.py +0 -48
- create_leafmesh-2.3.2/create_leafmesh/templates/quality-yield/agency/spc_chart_agent.py +0 -159
- create_leafmesh-2.3.2/create_leafmesh/templates/quality-yield/agency/spc_monitor_agent.py +0 -16
- create_leafmesh-2.3.2/create_leafmesh/templates/quality-yield/configs/config.yaml +0 -676
- create_leafmesh-2.3.2/create_leafmesh/templates/quality-yield/examples/01_routine_inspection.json +0 -11
- create_leafmesh-2.3.2/create_leafmesh/templates/quality-yield/examples/02_defect_cluster.json +0 -19
- create_leafmesh-2.3.2/create_leafmesh/templates/quality-yield/examples/03_field_complaint_recall.json +0 -12
- create_leafmesh-2.3.2/create_leafmesh/templates/quality-yield/examples/README.md +0 -23
- create_leafmesh-2.3.2/create_leafmesh/templates/quality-yield/logs/leafmesh_2026-06-09.log +0 -18
- create_leafmesh-2.3.2/create_leafmesh/templates/quality-yield/logs/leafmesh_2026-06-10.log +0 -6
- create_leafmesh-2.3.2/create_leafmesh/templates/quality-yield/main.py +0 -45
- create_leafmesh-2.3.2/create_leafmesh/templates/quality-yield/requirements.txt +0 -3
- create_leafmesh-2.3.2/create_leafmesh/templates/quality-yield/tests/__pycache__/test_agent_logic.cpython-314-pytest-9.0.2.pyc +0 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/quality-yield/tests/__pycache__/test_config_shape.cpython-314-pytest-9.0.2.pyc +0 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/quality-yield/tests/test_agent_logic.py +0 -56
- create_leafmesh-2.3.2/create_leafmesh/templates/quality-yield/tests/test_config_shape.py +0 -46
- create_leafmesh-2.3.2/create_leafmesh/templates/quote-to-cash/README.md +0 -11
- create_leafmesh-2.3.2/create_leafmesh/templates/quote-to-cash/agency/__pycache__/__init__.cpython-314.pyc +0 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/quote-to-cash/agency/__pycache__/approval_router_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/quote-to-cash/agency/__pycache__/discount_policy_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/quote-to-cash/agency/_shared/audit_logger.py +0 -47
- create_leafmesh-2.3.2/create_leafmesh/templates/quote-to-cash/agency/approval_router_agent.py +0 -39
- create_leafmesh-2.3.2/create_leafmesh/templates/quote-to-cash/agency/contract_review_agent.py +0 -149
- create_leafmesh-2.3.2/create_leafmesh/templates/quote-to-cash/agency/quote_drafter_agent.py +0 -24
- create_leafmesh-2.3.2/create_leafmesh/templates/quote-to-cash/agency/revenue_recognition_classifier_agent.py +0 -83
- create_leafmesh-2.3.2/create_leafmesh/templates/quote-to-cash/configs/config.yaml +0 -668
- create_leafmesh-2.3.2/create_leafmesh/templates/quote-to-cash/main.py +0 -45
- create_leafmesh-2.3.2/create_leafmesh/templates/quote-to-cash/requirements.txt +0 -3
- create_leafmesh-2.3.2/create_leafmesh/templates/quote-to-cash/tests/__pycache__/test_agent_logic.cpython-314-pytest-9.0.2.pyc +0 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/quote-to-cash/tests/test_agent_logic.py +0 -42
- create_leafmesh-2.3.2/create_leafmesh/templates/recruiting-ops/README.md +0 -11
- create_leafmesh-2.3.2/create_leafmesh/templates/recruiting-ops/agency/__pycache__/__init__.cpython-314.pyc +0 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/recruiting-ops/agency/__pycache__/offer_drafter_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/recruiting-ops/agency/_shared/audit_logger.py +0 -47
- create_leafmesh-2.3.2/create_leafmesh/templates/recruiting-ops/agency/hiring_assistant_agent.py +0 -164
- create_leafmesh-2.3.2/create_leafmesh/templates/recruiting-ops/agency/interview_loop_designer_agent.py +0 -100
- create_leafmesh-2.3.2/create_leafmesh/templates/recruiting-ops/agency/offer_drafter_agent.py +0 -32
- create_leafmesh-2.3.2/create_leafmesh/templates/recruiting-ops/agency/outreach_drafter_agent.py +0 -24
- create_leafmesh-2.3.2/create_leafmesh/templates/recruiting-ops/agency/pipeline_health_agent.py +0 -14
- create_leafmesh-2.3.2/create_leafmesh/templates/recruiting-ops/agency/rejection_letter_drafter_agent.py +0 -55
- create_leafmesh-2.3.2/create_leafmesh/templates/recruiting-ops/agency/scheduling_agent.py +0 -14
- create_leafmesh-2.3.2/create_leafmesh/templates/recruiting-ops/agency/time_to_hire_tracker_agent.py +0 -153
- create_leafmesh-2.3.2/create_leafmesh/templates/recruiting-ops/configs/config.yaml +0 -723
- create_leafmesh-2.3.2/create_leafmesh/templates/recruiting-ops/examples/02_candidate_rejection_letter.json +0 -13
- create_leafmesh-2.3.2/create_leafmesh/templates/recruiting-ops/examples/03_offer_drafting.json +0 -15
- create_leafmesh-2.3.2/create_leafmesh/templates/recruiting-ops/examples/README.md +0 -23
- create_leafmesh-2.3.2/create_leafmesh/templates/recruiting-ops/logs/leafmesh_2026-06-09.log +0 -6
- create_leafmesh-2.3.2/create_leafmesh/templates/recruiting-ops/logs/leafmesh_2026-06-10.log +0 -4
- create_leafmesh-2.3.2/create_leafmesh/templates/recruiting-ops/main.py +0 -45
- create_leafmesh-2.3.2/create_leafmesh/templates/recruiting-ops/requirements.txt +0 -3
- create_leafmesh-2.3.2/create_leafmesh/templates/recruiting-ops/tests/__pycache__/test_agent_logic.cpython-314-pytest-9.0.2.pyc +0 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/recruiting-ops/tests/__pycache__/test_config_shape.cpython-314-pytest-9.0.2.pyc +0 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/recruiting-ops/tests/test_agent_logic.py +0 -21
- create_leafmesh-2.3.2/create_leafmesh/templates/recruiting-ops/tests/test_config_shape.py +0 -41
- create_leafmesh-2.3.2/create_leafmesh/templates/sales-orchestration/README.md +0 -12
- create_leafmesh-2.3.2/create_leafmesh/templates/sales-orchestration/agency/__pycache__/__init__.cpython-314.pyc +0 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/sales-orchestration/agency/__pycache__/abm_orchestrator_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/sales-orchestration/agency/__pycache__/competitor_intel_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/sales-orchestration/agency/__pycache__/deal_nurturer_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/sales-orchestration/agency/__pycache__/lead_enrichment_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/sales-orchestration/agency/__pycache__/lead_intake_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/sales-orchestration/agency/__pycache__/personalisation_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/sales-orchestration/agency/__pycache__/sequence_orchestrator_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/sales-orchestration/agency/_shared/audit_logger.py +0 -52
- create_leafmesh-2.3.2/create_leafmesh/templates/sales-orchestration/agency/account_research_agent.py +0 -82
- create_leafmesh-2.3.2/create_leafmesh/templates/sales-orchestration/agency/competitor_intel_agent.py +0 -193
- create_leafmesh-2.3.2/create_leafmesh/templates/sales-orchestration/agency/lead_enrichment_agent.py +0 -185
- create_leafmesh-2.3.2/create_leafmesh/templates/sales-orchestration/agency/lead_intake_agent.py +0 -45
- create_leafmesh-2.3.2/create_leafmesh/templates/sales-orchestration/agency/lead_scorer_agent.py +0 -65
- create_leafmesh-2.3.2/create_leafmesh/templates/sales-orchestration/agency/personalisation_agent.py +0 -36
- create_leafmesh-2.3.2/create_leafmesh/templates/sales-orchestration/agency/pipeline_health_agent.py +0 -18
- create_leafmesh-2.3.2/create_leafmesh/templates/sales-orchestration/agency/pipeline_health_monitor_agent.py +0 -175
- create_leafmesh-2.3.2/create_leafmesh/templates/sales-orchestration/agency/sequence_orchestrator_agent.py +0 -54
- create_leafmesh-2.3.2/create_leafmesh/templates/sales-orchestration/configs/config.yaml +0 -846
- create_leafmesh-2.3.2/create_leafmesh/templates/sales-orchestration/examples/01_inbound_demo_request.json +0 -23
- create_leafmesh-2.3.2/create_leafmesh/templates/sales-orchestration/examples/03_competitor_steal_signal.json +0 -15
- create_leafmesh-2.3.2/create_leafmesh/templates/sales-orchestration/examples/05_enriched_inbound_lead.json +0 -24
- create_leafmesh-2.3.2/create_leafmesh/templates/sales-orchestration/examples/08_competitor_intel_pull.json +0 -21
- create_leafmesh-2.3.2/create_leafmesh/templates/sales-orchestration/examples/README.md +0 -23
- create_leafmesh-2.3.2/create_leafmesh/templates/sales-orchestration/logs/leafmesh_2026-06-09.log +0 -30
- create_leafmesh-2.3.2/create_leafmesh/templates/sales-orchestration/logs/leafmesh_2026-06-10.log +0 -20
- create_leafmesh-2.3.2/create_leafmesh/templates/sales-orchestration/main.py +0 -45
- create_leafmesh-2.3.2/create_leafmesh/templates/sales-orchestration/requirements.txt +0 -3
- create_leafmesh-2.3.2/create_leafmesh/templates/sales-orchestration/tests/__pycache__/conftest.cpython-314-pytest-9.0.2.pyc +0 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/sales-orchestration/tests/__pycache__/test_agent_logic.cpython-314-pytest-9.0.2.pyc +0 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/sales-orchestration/tests/conftest.py +0 -20
- create_leafmesh-2.3.2/create_leafmesh/templates/sales-orchestration/tests/test_agent_logic.py +0 -58
- create_leafmesh-2.3.2/create_leafmesh/templates/services-delivery/README.md +0 -59
- create_leafmesh-2.3.2/create_leafmesh/templates/services-delivery/agency/__pycache__/__init__.cpython-314.pyc +0 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/services-delivery/agency/__pycache__/analysis_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/services-delivery/agency/__pycache__/brief_intake_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/services-delivery/agency/__pycache__/citation_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/services-delivery/agency/__pycache__/delivery_router_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/services-delivery/agency/__pycache__/qa_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/services-delivery/agency/__pycache__/research_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/services-delivery/agency/_shared/audit_logger.py +0 -53
- create_leafmesh-2.3.2/create_leafmesh/templates/services-delivery/agency/analysis_agent.py +0 -70
- create_leafmesh-2.3.2/create_leafmesh/templates/services-delivery/agency/brief_intake_agent.py +0 -49
- create_leafmesh-2.3.2/create_leafmesh/templates/services-delivery/agency/delivery_router_agent.py +0 -42
- create_leafmesh-2.3.2/create_leafmesh/templates/services-delivery/agency/doc_extraction_agent.py +0 -150
- create_leafmesh-2.3.2/create_leafmesh/templates/services-delivery/agency/draft_agent.py +0 -60
- create_leafmesh-2.3.2/create_leafmesh/templates/services-delivery/agency/performance_review_agent.py +0 -149
- create_leafmesh-2.3.2/create_leafmesh/templates/services-delivery/agency/qa_agent.py +0 -67
- create_leafmesh-2.3.2/create_leafmesh/templates/services-delivery/agency/research_agent.py +0 -54
- create_leafmesh-2.3.2/create_leafmesh/templates/services-delivery/agency/scope_creep_detector_agent.py +0 -88
- create_leafmesh-2.3.2/create_leafmesh/templates/services-delivery/agency/time_tracker_agent.py +0 -143
- create_leafmesh-2.3.2/create_leafmesh/templates/services-delivery/configs/config.yaml +0 -1312
- create_leafmesh-2.3.2/create_leafmesh/templates/services-delivery/examples/01_new_engagement_memo.json +0 -14
- create_leafmesh-2.3.2/create_leafmesh/templates/services-delivery/examples/README.md +0 -23
- create_leafmesh-2.3.2/create_leafmesh/templates/services-delivery/logs/leafmesh_2026-06-09.log +0 -69
- create_leafmesh-2.3.2/create_leafmesh/templates/services-delivery/logs/leafmesh_2026-06-10.log +0 -23
- create_leafmesh-2.3.2/create_leafmesh/templates/services-delivery/main.py +0 -67
- create_leafmesh-2.3.2/create_leafmesh/templates/services-delivery/requirements.txt +0 -3
- create_leafmesh-2.3.2/create_leafmesh/templates/services-delivery/tests/__pycache__/test_agent_logic.cpython-314-pytest-9.0.2.pyc +0 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/services-delivery/tests/__pycache__/test_config_shape.cpython-314-pytest-9.0.2.pyc +0 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/services-delivery/tests/test_agent_logic.py +0 -152
- create_leafmesh-2.3.2/create_leafmesh/templates/services-delivery/tests/test_config_shape.py +0 -137
- create_leafmesh-2.3.2/create_leafmesh/templates/warehouse-supply-chain/README.md +0 -37
- create_leafmesh-2.3.2/create_leafmesh/templates/warehouse-supply-chain/agency/__pycache__/__init__.cpython-314.pyc +0 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/warehouse-supply-chain/agency/__pycache__/exception_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/warehouse-supply-chain/agency/_shared/audit_logger.py +0 -53
- create_leafmesh-2.3.2/create_leafmesh/templates/warehouse-supply-chain/agency/allocation_agent.py +0 -40
- create_leafmesh-2.3.2/create_leafmesh/templates/warehouse-supply-chain/agency/cycle_count_orchestrator_agent.py +0 -22
- create_leafmesh-2.3.2/create_leafmesh/templates/warehouse-supply-chain/agency/exception_agent.py +0 -62
- create_leafmesh-2.3.2/create_leafmesh/templates/warehouse-supply-chain/agency/inventory_reconciler_agent.py +0 -135
- create_leafmesh-2.3.2/create_leafmesh/templates/warehouse-supply-chain/agency/routing_agent.py +0 -24
- create_leafmesh-2.3.2/create_leafmesh/templates/warehouse-supply-chain/agency/supplier_onboarding_agent.py +0 -161
- create_leafmesh-2.3.2/create_leafmesh/templates/warehouse-supply-chain/agency/supplier_performance_agent.py +0 -194
- create_leafmesh-2.3.2/create_leafmesh/templates/warehouse-supply-chain/agency/supplier_sourcing_agent.py +0 -155
- create_leafmesh-2.3.2/create_leafmesh/templates/warehouse-supply-chain/configs/config.yaml +0 -803
- create_leafmesh-2.3.2/create_leafmesh/templates/warehouse-supply-chain/examples/01_routine_order.json +0 -24
- create_leafmesh-2.3.2/create_leafmesh/templates/warehouse-supply-chain/examples/README.md +0 -23
- create_leafmesh-2.3.2/create_leafmesh/templates/warehouse-supply-chain/logs/leafmesh_2026-06-09.log +0 -12
- create_leafmesh-2.3.2/create_leafmesh/templates/warehouse-supply-chain/logs/leafmesh_2026-06-10.log +0 -8
- create_leafmesh-2.3.2/create_leafmesh/templates/warehouse-supply-chain/main.py +0 -57
- create_leafmesh-2.3.2/create_leafmesh/templates/warehouse-supply-chain/requirements.txt +0 -3
- create_leafmesh-2.3.2/create_leafmesh/templates/warehouse-supply-chain/tests/__pycache__/test_agent_logic.cpython-314-pytest-9.0.2.pyc +0 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/warehouse-supply-chain/tests/__pycache__/test_config_shape.cpython-314-pytest-9.0.2.pyc +0 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/warehouse-supply-chain/tests/test_agent_logic.py +0 -32
- create_leafmesh-2.3.2/create_leafmesh/templates/warehouse-supply-chain/tests/test_config_shape.py +0 -53
- create_leafmesh-2.3.2/create_leafmesh.egg-info/PKG-INFO +0 -94
- create_leafmesh-2.3.2/create_leafmesh.egg-info/SOURCES.txt +0 -895
- create_leafmesh-2.3.2/pyproject.toml +0 -26
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/README.md +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/cli.py +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/create.py +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/deploy.py +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/deploy_providers/__init__.py +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/deploy_providers/_shared.py +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/deploy_providers/aws.py +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/deploy_providers/azure.py +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/deploy_providers/gcp.py +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/_inspire/Dockerfile +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/_inspire/README.md +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/_inspire/_REFERENCE_ONLY.md +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/_inspire/agency/__init__.py +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/_inspire/agency/__pycache__/__init__.cpython-314.pyc +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/_inspire/agency/__pycache__/external_agents.cpython-314.pyc +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/_inspire/agency/__pycache__/scheduler_agent.cpython-314.pyc +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/_inspire/agency/__pycache__/tools.cpython-314.pyc +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/_inspire/agency/external_agents.py +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/_inspire/agency/scheduler_agent.py +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/_inspire/agency/tools.py +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/_inspire/docker-compose.yml +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/_inspire/dockerignore +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/_inspire/env +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/_inspire/gitignore +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/_inspire/hitl_stub_receiver.py +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/_inspire/main.py +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/_inspire/skills/data-handling/SKILL.md +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/_inspire/skills/data-handling/examples.json +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/_inspire/skills/tone-rules.md +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/_inspire/tests/__init__.py +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/_inspire/tests/__pycache__/__init__.cpython-314.pyc +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/_inspire/tests/__pycache__/test_config_shape.cpython-314-pytest-9.0.2.pyc +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/_inspire/tests/test_config_shape.py +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/bd-proposals/Dockerfile +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/bd-proposals/_prompts.json +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/bd-proposals/agency/__init__.py +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/bd-proposals/agency/_shared/__init__.py +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/bd-proposals/agency/pricing_configurator_agent.py +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/bd-proposals/agency/section_drafter_agent.py +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/bd-proposals/docker-compose.yml +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/bd-proposals/dockerignore +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/bd-proposals/env +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/bd-proposals/examples/03_loss_with_competitor.json +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/bd-proposals/examples/04_quarterly_win_rate.json +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/bd-proposals/examples/run_examples.py +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/bd-proposals/gitignore +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/bd-proposals/pytest.ini +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/bd-proposals/requirements-dev.txt +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/bd-proposals/tests/__init__.py +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/bd-proposals/tests/__pycache__/__init__.cpython-314.pyc +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/bd-proposals/tests/__pycache__/conftest.cpython-314-pytest-9.0.2.pyc +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/bd-proposals/tests/__pycache__/test_config_shape.cpython-314-pytest-9.0.2.pyc +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/bd-proposals/tests/conftest.py +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/bd-proposals/tests/test_config_shape.py +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/bench-management/Dockerfile +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/bench-management/_prompts.json +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/bench-management/agency/__init__.py +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/bench-management/agency/_shared/__init__.py +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/bench-management/agency/weekly_bench_sweep_agent.py +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/bench-management/docker-compose.yml +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/bench-management/dockerignore +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/bench-management/env +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/bench-management/examples/04_person_rolling_off.json +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/bench-management/examples/run_examples.py +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/bench-management/gitignore +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/bench-management/pytest.ini +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/bench-management/requirements-dev.txt +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/bench-management/tests/__init__.py +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/bench-management/tests/__pycache__/__init__.cpython-314.pyc +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/bench-management/tests/__pycache__/test_config_shape.cpython-314-pytest-9.0.2.pyc +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/bench-management/tests/test_config_shape.py +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/claude_skills/leafmesh/agent-config-fields.md +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/claude_skills/leafmesh/examples.md +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/claude_skills/leafmesh/reference.md +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/customer-success/Dockerfile +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/customer-success/_prompts.json +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/customer-success/agency/_shared/__init__.py +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/customer-success/agency/playbook_trigger_agent.py +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/customer-success/agency/qbr_drafter_agent.py +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/customer-success/docker-compose.yml +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/customer-success/dockerignore +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/customer-success/env +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/customer-success/examples/01_telemetry_dau_drop.json +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/customer-success/examples/run_examples.py +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/customer-success/gitignore +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/customer-success/pytest.ini +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/customer-success/requirements-dev.txt +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/customer-success/tests/__init__.py +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/customer-success/tests/__pycache__/__init__.cpython-314.pyc +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/customer-success/tests/__pycache__/conftest.cpython-314-pytest-9.0.2.pyc +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/customer-success/tests/conftest.py +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/customer-support/Dockerfile +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/customer-support/_prompts.json +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/customer-support/agency/__init__.py +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/customer-support/agency/_shared/__init__.py +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/customer-support/agency/sentiment_agent.py +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/customer-support/agency/sla_watchdog_agent.py +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/customer-support/docker-compose.yml +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/customer-support/dockerignore +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/customer-support/env +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/customer-support/examples/01_password_reset_routine.json +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/customer-support/examples/02_billing_dispute_escalation.json +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/customer-support/examples/03_security_incident.json +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/customer-support/examples/04_kb_gap_signal.json +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/customer-support/examples/README.md +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/customer-support/examples/run_examples.py +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/customer-support/gitignore +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/customer-support/pytest.ini +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/customer-support/requirements-dev.txt +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/customer-support/tests/__init__.py +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/customer-support/tests/__pycache__/__init__.cpython-314.pyc +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/customer-support/tests/__pycache__/conftest.cpython-314-pytest-9.0.2.pyc +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/customer-support/tests/conftest.py +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/engineering-sdlc/Dockerfile +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/engineering-sdlc/README.md +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/engineering-sdlc/_prompts.json +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/engineering-sdlc/agency/__init__.py +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/engineering-sdlc/agency/__pycache__/test_engineer_agent.cpython-314-pytest-9.0.2.pyc +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/engineering-sdlc/agency/_shared/__init__.py +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/engineering-sdlc/agency/oncall_alert_triager_agent.py +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/engineering-sdlc/agency/refactor_agent.py +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/engineering-sdlc/agency/regression_detector_agent.py +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/engineering-sdlc/agency/regulatory_monitor_agent.py +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/engineering-sdlc/agency/release_notes_drafter_agent.py +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/engineering-sdlc/agency/security_scanner_agent.py +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/engineering-sdlc/agency/test_engineer_agent.py +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/engineering-sdlc/docker-compose.yml +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/engineering-sdlc/dockerignore +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/engineering-sdlc/env +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/engineering-sdlc/examples/01_simple_feature_ticket.json +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/engineering-sdlc/examples/02_security_sensitive_change.json +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/engineering-sdlc/examples/03_oncall_pager_alert.json +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/engineering-sdlc/examples/04_refactor_proposal.json +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/engineering-sdlc/examples/README.md +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/engineering-sdlc/examples/run_examples.py +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/engineering-sdlc/gitignore +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/engineering-sdlc/logs/leafmesh_2026-06-09.log +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/engineering-sdlc/logs/leafmesh_2026-06-10.log +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/engineering-sdlc/pytest.ini +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/engineering-sdlc/requirements-dev.txt +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/engineering-sdlc/tests/__init__.py +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/engineering-sdlc/tests/__pycache__/__init__.cpython-314.pyc +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/engineering-sdlc/tests/__pycache__/conftest.cpython-314-pytest-9.0.2.pyc +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/engineering-sdlc/tests/__pycache__/test_agent_logic.cpython-314-pytest-9.0.2.pyc +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/engineering-sdlc/tests/__pycache__/test_config_shape.cpython-314-pytest-9.0.2.pyc +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/engineering-sdlc/tests/conftest.py +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/engineering-sdlc/tests/test_agent_logic.py +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/engineering-sdlc/tests/test_config_shape.py +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/finance-ops/Dockerfile +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/finance-ops/_prompts.json +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/finance-ops/agency/__init__.py +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/finance-ops/agency/_shared/__init__.py +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/finance-ops/agency/close_cycle_orchestrator_agent.py +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/finance-ops/agency/loan_servicing_agent.py +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/finance-ops/agency/regulatory_monitor_agent.py +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/finance-ops/docker-compose.yml +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/finance-ops/dockerignore +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/finance-ops/env +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/finance-ops/examples/01_happy_path_subscription.json +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/finance-ops/examples/04_high_value_cfo_signoff.json +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/finance-ops/examples/run_examples.py +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/finance-ops/gitignore +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/finance-ops/pytest.ini +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/finance-ops/requirements-dev.txt +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/finance-ops/tests/__init__.py +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/finance-ops/tests/__pycache__/__init__.cpython-314.pyc +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/infra-cost-ops/Dockerfile +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/infra-cost-ops/_prompts.json +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/infra-cost-ops/agency/__init__.py +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/infra-cost-ops/agency/_shared/__init__.py +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/infra-cost-ops/agency/iac_drift_agent.py +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/infra-cost-ops/docker-compose.yml +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/infra-cost-ops/dockerignore +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/infra-cost-ops/env +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/infra-cost-ops/examples/01_ec2_idle_anomaly.json +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/infra-cost-ops/examples/04_iac_drift_detected.json +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/infra-cost-ops/examples/run_examples.py +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/infra-cost-ops/gitignore +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/infra-cost-ops/pytest.ini +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/infra-cost-ops/requirements-dev.txt +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/infra-cost-ops/tests/__init__.py +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/infra-cost-ops/tests/__pycache__/__init__.cpython-314.pyc +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/infra-cost-ops/tests/__pycache__/conftest.cpython-314-pytest-9.0.2.pyc +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/infra-cost-ops/tests/conftest.py +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/marketing-ops/Dockerfile +0 -0
- {create_leafmesh-2.3.2/create_leafmesh/templates/customer-success → create_leafmesh-2.4.1/create_leafmesh/templates/marketing-ops}/README.md +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/marketing-ops/_prompts.json +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/marketing-ops/agency/__init__.py +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/marketing-ops/agency/_shared/__init__.py +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/marketing-ops/agency/campaign_orchestrator_agent.py +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/marketing-ops/agency/visual_briefer_agent.py +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/marketing-ops/docker-compose.yml +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/marketing-ops/dockerignore +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/marketing-ops/env +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/marketing-ops/examples/run_examples.py +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/marketing-ops/gitignore +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/marketing-ops/pytest.ini +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/marketing-ops/requirements-dev.txt +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/marketing-ops/tests/__init__.py +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/marketing-ops/tests/__pycache__/__init__.cpython-314.pyc +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/predictive-maintenance/Dockerfile +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/predictive-maintenance/_prompts.json +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/predictive-maintenance/agency/__init__.py +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/predictive-maintenance/agency/_shared/__init__.py +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/predictive-maintenance/agency/condition_sensor_agent.py +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/predictive-maintenance/agency/failure_predictor_agent.py +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/predictive-maintenance/agency/spare_parts_forecaster_agent.py +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/predictive-maintenance/docker-compose.yml +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/predictive-maintenance/dockerignore +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/predictive-maintenance/env +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/predictive-maintenance/examples/01_routine_sensor_reading.json +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/predictive-maintenance/examples/02_anomaly_failure_predicted.json +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/predictive-maintenance/examples/03_safety_critical_shutdown.json +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/predictive-maintenance/examples/04_weekly_parts_forecast.json +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/predictive-maintenance/examples/README.md +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/predictive-maintenance/examples/run_examples.py +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/predictive-maintenance/gitignore +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/predictive-maintenance/logs/leafmesh_2026-06-09.log +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/predictive-maintenance/logs/leafmesh_2026-06-10.log +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/predictive-maintenance/pytest.ini +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/predictive-maintenance/requirements-dev.txt +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/predictive-maintenance/tests/__init__.py +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/predictive-maintenance/tests/__pycache__/__init__.cpython-314.pyc +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/predictive-maintenance/tests/__pycache__/conftest.cpython-314-pytest-9.0.2.pyc +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/predictive-maintenance/tests/conftest.py +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/procurement-ops/Dockerfile +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/procurement-ops/README.md +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/procurement-ops/TESTING_GUIDE.md +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/procurement-ops/WORKFLOW_GUIDE.md +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/procurement-ops/agency/__init__.py +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/procurement-ops/agency/__pycache__/__init__.cpython-314.pyc +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/procurement-ops/agency/__pycache__/data_loader.cpython-314.pyc +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/procurement-ops/agency/__pycache__/grn_agent.cpython-314.pyc +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/procurement-ops/agency/__pycache__/supply_report_agent.cpython-314.pyc +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/procurement-ops/agency/__pycache__/tariff_classifier_agent.cpython-314.pyc +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/procurement-ops/agency/__pycache__/tools.cpython-314.pyc +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/procurement-ops/agency/data_loader.py +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/procurement-ops/agency/grn_agent.py +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/procurement-ops/agency/supply_report_agent.py +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/procurement-ops/agency/tariff_classifier_agent.py +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/procurement-ops/agency/tools.py +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/procurement-ops/configs/inventory.yaml +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/procurement-ops/configs/open_pos.yaml +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/procurement-ops/configs/suppliers.yaml +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/procurement-ops/docker-compose.yml +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/procurement-ops/dockerignore +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/procurement-ops/env +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/procurement-ops/gitignore +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/procurement-ops/main.py +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/procurement-ops/tests/__init__.py +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/procurement-ops/tests/__pycache__/__init__.cpython-314.pyc +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/procurement-ops/tests/__pycache__/test_config_shape.cpython-314-pytest-9.0.2.pyc +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/procurement-ops/tests/test_config_shape.py +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/production-planning/Dockerfile +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/production-planning/README.md +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/production-planning/_prompts.json +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/production-planning/agency/__init__.py +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/production-planning/agency/_shared/__init__.py +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/production-planning/agency/demand_sensor_agent.py +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/production-planning/agency/material_requirements_agent.py +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/production-planning/agency/rolling_reopt_orchestrator_agent.py +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/production-planning/agency/supplier_signal_agent.py +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/production-planning/docker-compose.yml +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/production-planning/dockerignore +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/production-planning/env +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/production-planning/examples/01_demand_signal_normal.json +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/production-planning/examples/02_supplier_delay.json +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/production-planning/examples/03_emergency_constraint_alert.json +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/production-planning/examples/04_supplier_capacity_change.json +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/production-planning/examples/README.md +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/production-planning/examples/run_examples.py +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/production-planning/gitignore +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/production-planning/logs/leafmesh_2026-06-09.log +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/production-planning/logs/leafmesh_2026-06-10.log +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/production-planning/pytest.ini +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/production-planning/requirements-dev.txt +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/production-planning/tests/__init__.py +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/production-planning/tests/__pycache__/__init__.cpython-314.pyc +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/quality-yield/Dockerfile +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/quality-yield/_prompts.json +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/quality-yield/agency/__init__.py +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/quality-yield/agency/_shared/__init__.py +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/quality-yield/agency/corrective_action_tracker_agent.py +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/quality-yield/docker-compose.yml +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/quality-yield/dockerignore +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/quality-yield/env +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/quality-yield/examples/04_regulatory_audit_pull.json +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/quality-yield/examples/run_examples.py +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/quality-yield/gitignore +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/quality-yield/pytest.ini +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/quality-yield/requirements-dev.txt +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/quality-yield/tests/__init__.py +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/quality-yield/tests/__pycache__/__init__.cpython-314.pyc +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/quality-yield/tests/__pycache__/conftest.cpython-314-pytest-9.0.2.pyc +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/quality-yield/tests/conftest.py +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/quote-to-cash/Dockerfile +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/quote-to-cash/_prompts.json +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/quote-to-cash/agency/__init__.py +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/quote-to-cash/agency/_shared/__init__.py +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/quote-to-cash/agency/bundle_recommender_agent.py +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/quote-to-cash/agency/competitor_watch_agent.py +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/quote-to-cash/agency/contract_redline_tracker_agent.py +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/quote-to-cash/agency/cost_calculator_agent.py +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/quote-to-cash/agency/discount_policy_agent.py +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/quote-to-cash/agency/rfq_ingester_agent.py +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/quote-to-cash/docker-compose.yml +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/quote-to-cash/dockerignore +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/quote-to-cash/env +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/quote-to-cash/examples/01_rfq_standard.json +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/quote-to-cash/examples/02_steep_discount_finance.json +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/quote-to-cash/examples/03_competitor_price_change.json +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/quote-to-cash/examples/04_renewal_uplift_bundle.json +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/quote-to-cash/examples/README.md +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/quote-to-cash/examples/run_examples.py +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/quote-to-cash/gitignore +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/quote-to-cash/logs/leafmesh_2026-06-09.log +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/quote-to-cash/logs/leafmesh_2026-06-10.log +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/quote-to-cash/pytest.ini +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/quote-to-cash/requirements-dev.txt +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/quote-to-cash/tests/__init__.py +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/quote-to-cash/tests/__pycache__/__init__.cpython-314.pyc +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/quote-to-cash/tests/__pycache__/conftest.cpython-314-pytest-9.0.2.pyc +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/quote-to-cash/tests/__pycache__/test_config_shape.cpython-314-pytest-9.0.2.pyc +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/quote-to-cash/tests/conftest.py +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/quote-to-cash/tests/test_config_shape.py +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/recruiting-ops/Dockerfile +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/recruiting-ops/_prompts.json +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/recruiting-ops/agency/__init__.py +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/recruiting-ops/agency/_shared/__init__.py +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/recruiting-ops/agency/bias_audit_agent.py +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/recruiting-ops/agency/req_intake_agent.py +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/recruiting-ops/agency/resume_screener_agent.py +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/recruiting-ops/agency/sourcing_agent.py +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/recruiting-ops/docker-compose.yml +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/recruiting-ops/dockerignore +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/recruiting-ops/env +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/recruiting-ops/examples/01_new_req_filed.json +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/recruiting-ops/examples/04_ghosted_candidate_close.json +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/recruiting-ops/examples/run_examples.py +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/recruiting-ops/gitignore +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/recruiting-ops/pytest.ini +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/recruiting-ops/requirements-dev.txt +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/recruiting-ops/tests/__init__.py +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/recruiting-ops/tests/__pycache__/__init__.cpython-314.pyc +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/recruiting-ops/tests/__pycache__/conftest.cpython-314-pytest-9.0.2.pyc +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/recruiting-ops/tests/conftest.py +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/sales-orchestration/Dockerfile +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/sales-orchestration/_prompts.json +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/sales-orchestration/agency/__init__.py +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/sales-orchestration/agency/_shared/__init__.py +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/sales-orchestration/agency/abm_orchestrator_agent.py +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/sales-orchestration/agency/deal_nurturer_agent.py +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/sales-orchestration/agency/lead_revival_agent.py +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/sales-orchestration/docker-compose.yml +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/sales-orchestration/dockerignore +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/sales-orchestration/env +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/sales-orchestration/examples/02_cold_lead_revival.json +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/sales-orchestration/examples/04_event_followup_burst.json +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/sales-orchestration/examples/06_deal_nurture_sweep.json +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/sales-orchestration/examples/07_abm_account_activation.json +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/sales-orchestration/examples/run_examples.py +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/sales-orchestration/gitignore +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/sales-orchestration/pytest.ini +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/sales-orchestration/requirements-dev.txt +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/sales-orchestration/tests/__init__.py +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/sales-orchestration/tests/__pycache__/__init__.cpython-314.pyc +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/sales-orchestration/tests/__pycache__/test_config_shape.cpython-314-pytest-9.0.2.pyc +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/sales-orchestration/tests/test_config_shape.py +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/services-delivery/Dockerfile +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/services-delivery/_prompts.json +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/services-delivery/agency/__init__.py +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/services-delivery/agency/_shared/__init__.py +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/services-delivery/agency/citation_agent.py +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/services-delivery/agency/context_agent.py +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/services-delivery/agency/engagement_status_drafter_agent.py +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/services-delivery/agency/status_sweep_orchestrator_agent.py +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/services-delivery/docker-compose.yml +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/services-delivery/dockerignore +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/services-delivery/env +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/services-delivery/examples/02_friday_status_pack.json +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/services-delivery/examples/03_high_stakes_deliverable.json +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/services-delivery/examples/04_monthly_steering_pack.json +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/services-delivery/examples/run_examples.py +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/services-delivery/gitignore +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/services-delivery/pytest.ini +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/services-delivery/requirements-dev.txt +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/services-delivery/tests/__init__.py +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/services-delivery/tests/__pycache__/__init__.cpython-314.pyc +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/services-delivery/tests/__pycache__/conftest.cpython-314-pytest-9.0.2.pyc +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/services-delivery/tests/conftest.py +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/warehouse-supply-chain/Dockerfile +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/warehouse-supply-chain/_prompts.json +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/warehouse-supply-chain/agency/__init__.py +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/warehouse-supply-chain/agency/_shared/__init__.py +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/warehouse-supply-chain/agency/carrier_selector_agent.py +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/warehouse-supply-chain/agency/humanoid_status_agent.py +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/warehouse-supply-chain/agency/inspection_humanoid.py +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/warehouse-supply-chain/agency/inventory_agent.py +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/warehouse-supply-chain/agency/loader_humanoid.py +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/warehouse-supply-chain/agency/packer_humanoid.py +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/warehouse-supply-chain/agency/picker_humanoid.py +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/warehouse-supply-chain/agency/replenishment_planner_agent.py +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/warehouse-supply-chain/agency/returns_handler_agent.py +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/warehouse-supply-chain/docker-compose.yml +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/warehouse-supply-chain/dockerignore +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/warehouse-supply-chain/env +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/warehouse-supply-chain/examples/02_short_pick_exception.json +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/warehouse-supply-chain/examples/03_returns_inspection.json +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/warehouse-supply-chain/examples/04_carrier_outage_failover.json +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/warehouse-supply-chain/examples/run_examples.py +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/warehouse-supply-chain/gitignore +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/warehouse-supply-chain/pytest.ini +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/warehouse-supply-chain/requirements-dev.txt +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/warehouse-supply-chain/tests/__init__.py +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/warehouse-supply-chain/tests/__pycache__/__init__.cpython-314.pyc +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/warehouse-supply-chain/tests/__pycache__/conftest.cpython-314-pytest-9.0.2.pyc +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh/templates/warehouse-supply-chain/tests/conftest.py +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh.egg-info/dependency_links.txt +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh.egg-info/entry_points.txt +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh.egg-info/requires.txt +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/create_leafmesh.egg-info/top_level.txt +0 -0
- {create_leafmesh-2.3.2 → create_leafmesh-2.4.1}/setup.cfg +0 -0
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: create-leafmesh
|
|
3
|
+
Version: 2.4.1
|
|
4
|
+
Summary: Project scaffolding + cloud-deploy tool for LeafMesh
|
|
5
|
+
License-Expression: MIT
|
|
6
|
+
Requires-Python: >=3.10
|
|
7
|
+
Description-Content-Type: text/markdown
|
|
8
|
+
Requires-Dist: questionary<3,>=2.0
|
|
9
|
+
Requires-Dist: PyYAML>=6.0
|
|
10
|
+
Requires-Dist: boto3<2,>=1.34
|
|
11
|
+
|
|
12
|
+
# create-leafmesh
|
|
13
|
+
|
|
14
|
+
Project scaffolding tool for [LeafMesh](https://pypi.org/project/leafmesh/) — the YAML-native multi-agent orchestration platform.
|
|
15
|
+
|
|
16
|
+
## Install
|
|
17
|
+
|
|
18
|
+
```bash
|
|
19
|
+
pip install create-leafmesh
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
## Create a Project
|
|
23
|
+
|
|
24
|
+
```bash
|
|
25
|
+
create-leafmesh create my-project
|
|
26
|
+
cd my-project
|
|
27
|
+
python -m venv .venv && source .venv/bin/activate
|
|
28
|
+
pip install -r requirements.txt
|
|
29
|
+
python main.py
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
## CLI Options
|
|
33
|
+
|
|
34
|
+
```bash
|
|
35
|
+
# Create in a specific directory
|
|
36
|
+
create-leafmesh create my-project -o /path/to/dir
|
|
37
|
+
|
|
38
|
+
# Skip git initialization
|
|
39
|
+
create-leafmesh create my-project --no-git
|
|
40
|
+
|
|
41
|
+
# Interactive mode (prompts for project name)
|
|
42
|
+
create-leafmesh create
|
|
43
|
+
```
|
|
44
|
+
|
|
45
|
+
## Generated Project Structure
|
|
46
|
+
|
|
47
|
+
```
|
|
48
|
+
my-project/
|
|
49
|
+
configs/
|
|
50
|
+
config.yaml # Agent definitions, mesh wiring, HITL config
|
|
51
|
+
agency/
|
|
52
|
+
greeter_agent.py # LLM agent with @pre_compose
|
|
53
|
+
processor_agent.py # Programmatic agent with @conditional_chain
|
|
54
|
+
researcher_agent.py # LLM agent with @chain_with_results + smart memory
|
|
55
|
+
fallback_researcher_agent.py # Fast fallback (race pattern)
|
|
56
|
+
advisor_agent.py # LLM fan-in with @chain + @compose
|
|
57
|
+
scheduler_agent.py # Cron-scheduled agent
|
|
58
|
+
tools.py # Custom tools (@global_tool, @tool)
|
|
59
|
+
external_agents.py # Integration reference (CrewAI, LangGraph, etc.)
|
|
60
|
+
main.py # Entry point
|
|
61
|
+
hitl_stub_receiver.py # Webhook stub for testing HITL locally
|
|
62
|
+
requirements.txt
|
|
63
|
+
.env # API keys
|
|
64
|
+
Dockerfile
|
|
65
|
+
docker-compose.yml # Redis + app
|
|
66
|
+
```
|
|
67
|
+
|
|
68
|
+
## What's Included
|
|
69
|
+
|
|
70
|
+
- **8 agents** showcasing all 4 agent types (human, llm, programmatic, external)
|
|
71
|
+
- **Human-in-the-Loop (HITL)** with dual webhook mode and `from_agent` routing
|
|
72
|
+
- **Fan-in/fan-out** with OR expressions (`processor AND (researcher OR fallback)`)
|
|
73
|
+
- **Smart memory** with hybrid recency/relevance scoring
|
|
74
|
+
- **Scheduled agents** with cron expressions
|
|
75
|
+
- **Custom tools** with access control and categories
|
|
76
|
+
- **All 5 decorators**: `@pre_compose`, `@chain`, `@chain_with_results`, `@conditional_chain`, `@compose`
|
|
77
|
+
- **HITL test stub** (`hitl_stub_receiver.py`) for local webhook testing
|
|
78
|
+
- **Docker-ready** with Redis included
|
|
79
|
+
- **Full README** with HITL walkthrough (2 scenarios, step-by-step)
|
|
80
|
+
|
|
81
|
+
## Requirements
|
|
82
|
+
|
|
83
|
+
- Python 3.10+
|
|
84
|
+
- Redis server running (default: localhost:6379)
|
|
85
|
+
- At least one LLM API key (e.g. `OPENAI_API_KEY` in `.env`)
|
|
86
|
+
|
|
87
|
+
## Links
|
|
88
|
+
|
|
89
|
+
- [LeafMesh SDK](https://pypi.org/project/leafmesh/)
|
|
90
|
+
- [LeafCraft Studios](https://leafcraft.ai)
|
|
91
|
+
|
|
92
|
+
## License
|
|
93
|
+
|
|
94
|
+
MIT
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,195 @@
|
|
|
1
|
+
"""LLM Agent — Auto-discovered with @chain + @compose (OR fan-in advisor).
|
|
2
|
+
|
|
3
|
+
auto_discover matches function name 'advisor_agent' to YAML agent config.
|
|
4
|
+
|
|
5
|
+
Features showcased:
|
|
6
|
+
- @chain: sequential post-processing pipeline (validate_inputs -> score_priorities)
|
|
7
|
+
- @compose: inject helper functions into context (report shaping, alert shaping)
|
|
8
|
+
- wait_for: "processor_agent AND (researcher_agent OR fallback_researcher_agent)"
|
|
9
|
+
- OR fan-in: whichever research agent finishes first satisfies the expression
|
|
10
|
+
- optimization_strategy: "performance" — prioritizes quality over cost
|
|
11
|
+
|
|
12
|
+
Execution flow:
|
|
13
|
+
1. Fan-in: SDK waits for processor_agent AND (researcher OR fallback_researcher)
|
|
14
|
+
2. fallback_researcher_agent is instant → OR resolves immediately
|
|
15
|
+
3. LLM analyzes combined upstream results
|
|
16
|
+
4. This function post-processes, picking the best research source
|
|
17
|
+
5. @compose injects shape_report and shape_alerts into context
|
|
18
|
+
6. @chain runs: validate_inputs -> score_priorities (sequential pipeline)
|
|
19
|
+
|
|
20
|
+
Fan-in patterns (all supported by the SDK):
|
|
21
|
+
wait_for: "A AND B" — waits for both A and B
|
|
22
|
+
wait_for: "A OR B" — waits for either A or B (first wins)
|
|
23
|
+
wait_for: "A AND B?" — A required, B optional
|
|
24
|
+
wait_for: "A AND (B OR C)" — A required + first of B or C (used here)
|
|
25
|
+
wait_for: "A AND (B OR C) AND D?" — A required + first of B/C + D optional
|
|
26
|
+
"""
|
|
27
|
+
from typing import Any
|
|
28
|
+
|
|
29
|
+
from leafmesh import chain, compose, LeafMeshLogger
|
|
30
|
+
|
|
31
|
+
logger = LeafMeshLogger(__name__)
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
def _up(input_data: dict[str, Any], context: dict[str, Any],
|
|
35
|
+
key: str, default: Any = None) -> Any:
|
|
36
|
+
"""Shape-tolerant upstream read: flat input_data → upstream_yields
|
|
37
|
+
(flat or keyed by agent name) → context['upstream']."""
|
|
38
|
+
if key in input_data and input_data[key] not in (None, ""):
|
|
39
|
+
return input_data[key]
|
|
40
|
+
uy = input_data.get("upstream_yields")
|
|
41
|
+
if isinstance(uy, dict):
|
|
42
|
+
if key in uy and uy[key] not in (None, ""):
|
|
43
|
+
return uy[key]
|
|
44
|
+
for v in uy.values():
|
|
45
|
+
if isinstance(v, dict) and v.get(key) not in (None, ""):
|
|
46
|
+
return v[key]
|
|
47
|
+
for container_key in ("upstream_results",):
|
|
48
|
+
ur = input_data.get(container_key)
|
|
49
|
+
if isinstance(ur, dict):
|
|
50
|
+
for v in ur.values():
|
|
51
|
+
if isinstance(v, dict) and v.get(key) not in (None, ""):
|
|
52
|
+
return v[key]
|
|
53
|
+
cu = context.get("upstream") if isinstance(context, dict) else None
|
|
54
|
+
if isinstance(cu, dict) and cu.get(key) not in (None, ""):
|
|
55
|
+
return cu[key]
|
|
56
|
+
return default
|
|
57
|
+
|
|
58
|
+
|
|
59
|
+
def _up_agent(input_data: dict[str, Any], context: dict[str, Any],
|
|
60
|
+
agent: str) -> dict[str, Any]:
|
|
61
|
+
"""Shape-tolerant per-agent yields read — checks every container the
|
|
62
|
+
SDK may deliver agent-keyed yields in."""
|
|
63
|
+
containers = (
|
|
64
|
+
input_data.get("upstream_yields"),
|
|
65
|
+
input_data.get("upstream_results"),
|
|
66
|
+
context.get("upstream") if isinstance(context, dict) else None,
|
|
67
|
+
)
|
|
68
|
+
for c in containers:
|
|
69
|
+
if isinstance(c, dict) and isinstance(c.get(agent), dict):
|
|
70
|
+
return c[agent]
|
|
71
|
+
return {}
|
|
72
|
+
|
|
73
|
+
|
|
74
|
+
def validate_inputs(result, context):
|
|
75
|
+
"""Chain step 1: Validate that upstream data is present and well-formed."""
|
|
76
|
+
if not result.get("recommendations"):
|
|
77
|
+
result["recommendations"] = ["No specific recommendations available"]
|
|
78
|
+
if not result.get("risk_assessment"):
|
|
79
|
+
result["risk_assessment"] = "Unable to assess — insufficient data"
|
|
80
|
+
result["validated"] = True
|
|
81
|
+
return result
|
|
82
|
+
|
|
83
|
+
|
|
84
|
+
def score_priorities(result, context):
|
|
85
|
+
"""Chain step 2: Score and rank recommendations by priority."""
|
|
86
|
+
recs = result.get("recommendations", [])
|
|
87
|
+
result["priority_score"] = min(1.0, len(recs) * 0.2) if recs else 0.0
|
|
88
|
+
result["next_steps"] = recs[:3] if recs else ["Gather more data"]
|
|
89
|
+
result["scored"] = True
|
|
90
|
+
return result
|
|
91
|
+
|
|
92
|
+
|
|
93
|
+
def shape_report(data, context):
|
|
94
|
+
"""Compose helper: Shape output for report consumption."""
|
|
95
|
+
return {
|
|
96
|
+
"title": "Advisory Report",
|
|
97
|
+
"recommendations": data.get("recommendations", []),
|
|
98
|
+
"risk_assessment": data.get("risk_assessment", ""),
|
|
99
|
+
"priority_score": data.get("priority_score", 0),
|
|
100
|
+
"project": "{{project_name}}",
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
|
|
104
|
+
def shape_alerts(data, context):
|
|
105
|
+
"""Compose helper: Shape output for alerting systems."""
|
|
106
|
+
score = data.get("priority_score", 0)
|
|
107
|
+
return {
|
|
108
|
+
"alert_level": "high" if score > 0.7 else "medium" if score > 0.4 else "low",
|
|
109
|
+
"summary": data.get("risk_assessment", ""),
|
|
110
|
+
"action_required": score > 0.5,
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
|
|
114
|
+
@chain(validate_inputs, score_priorities)
|
|
115
|
+
@compose(report=shape_report, alerts=shape_alerts)
|
|
116
|
+
async def advisor_agent(llm_response, input_data, context):
|
|
117
|
+
"""Analyze upstream results and produce actionable recommendations.
|
|
118
|
+
|
|
119
|
+
At this point:
|
|
120
|
+
- Fan-in complete: processor_agent AND (researcher OR fallback) finished
|
|
121
|
+
- input_data["upstream_yields"] has yields from all contributing agents
|
|
122
|
+
- context["report"] and context["alerts"] are injected by @compose
|
|
123
|
+
- After this function, @chain runs validate_inputs -> score_priorities
|
|
124
|
+
"""
|
|
125
|
+
# ─── Fan-in upstream yields (shape-tolerant) ───
|
|
126
|
+
# For OR fan-in, the SDK includes yields from whichever agents completed.
|
|
127
|
+
# Check both research agents — prefer LLM researcher (higher confidence).
|
|
128
|
+
processor_yields = _up_agent(input_data, context, "processor_agent")
|
|
129
|
+
researcher_yields = _up_agent(input_data, context, "researcher_agent")
|
|
130
|
+
fallback_yields = _up_agent(input_data, context, "fallback_researcher_agent")
|
|
131
|
+
|
|
132
|
+
# ─── Pick the best research source ───
|
|
133
|
+
# LLM researcher has confidence 0.85, fallback has 0.6
|
|
134
|
+
skipped_agents = []
|
|
135
|
+
if researcher_yields and researcher_yields.get("status") == "researched":
|
|
136
|
+
research_data = researcher_yields
|
|
137
|
+
research_source = "researcher_agent"
|
|
138
|
+
research_confidence = 0.85
|
|
139
|
+
elif fallback_yields and fallback_yields.get("status") == "researched":
|
|
140
|
+
research_data = fallback_yields
|
|
141
|
+
research_source = "fallback_researcher_agent"
|
|
142
|
+
research_confidence = 0.6
|
|
143
|
+
skipped_agents.append("researcher_agent")
|
|
144
|
+
else:
|
|
145
|
+
research_data = {}
|
|
146
|
+
research_source = "none"
|
|
147
|
+
research_confidence = 0.0
|
|
148
|
+
skipped_agents.extend(["researcher_agent", "fallback_researcher_agent"])
|
|
149
|
+
|
|
150
|
+
# ─── Build recommendations from upstream data ───
|
|
151
|
+
# _up fallbacks recover the data when yields arrive flat (un-keyed).
|
|
152
|
+
processed_items = processor_yields.get("processed_items") \
|
|
153
|
+
or _up(input_data, context, "processed_items", []) or []
|
|
154
|
+
findings = research_data.get("findings") \
|
|
155
|
+
or _up(input_data, context, "findings", []) or []
|
|
156
|
+
|
|
157
|
+
recommendations = []
|
|
158
|
+
if processed_items:
|
|
159
|
+
urgent = [i for i in processed_items if i.get("category") == "urgent"]
|
|
160
|
+
if urgent:
|
|
161
|
+
recommendations.append(f"Address {len(urgent)} urgent item(s) immediately")
|
|
162
|
+
recommendations.append(f"Review {len(processed_items)} processed items")
|
|
163
|
+
|
|
164
|
+
if findings:
|
|
165
|
+
recommendations.append(f"Incorporate {len(findings)} research finding(s)")
|
|
166
|
+
|
|
167
|
+
risk = "low"
|
|
168
|
+
if any(i.get("category") == "urgent" for i in processed_items):
|
|
169
|
+
risk = "elevated — urgent items detected"
|
|
170
|
+
|
|
171
|
+
logger.info(f"Advisory complete — {len(recommendations)} recommendations, risk={risk}, source={research_source}")
|
|
172
|
+
|
|
173
|
+
return {
|
|
174
|
+
"recommendations": recommendations,
|
|
175
|
+
"risk_assessment": risk,
|
|
176
|
+
"research_source": research_source,
|
|
177
|
+
"research_confidence": research_confidence,
|
|
178
|
+
"skipped_agents": skipped_agents,
|
|
179
|
+
"source_data": {
|
|
180
|
+
"processed_count": len(processed_items),
|
|
181
|
+
"finding_count": len(findings),
|
|
182
|
+
},
|
|
183
|
+
"status": "advised",
|
|
184
|
+
}
|
|
185
|
+
|
|
186
|
+
# ─── Alternative: @chain_with_results ───
|
|
187
|
+
# If you want to accumulate results from each chain step:
|
|
188
|
+
#
|
|
189
|
+
# from leafmesh import chain_with_results
|
|
190
|
+
#
|
|
191
|
+
# @chain_with_results(validate_inputs, score_priorities)
|
|
192
|
+
# async def advisor_agent(llm_response, input_data, context):
|
|
193
|
+
# # After execution, context["chain_results"] has a list of
|
|
194
|
+
# # each step's return value: [validate_result, score_result]
|
|
195
|
+
# ...
|
|
@@ -0,0 +1,110 @@
|
|
|
1
|
+
"""Programmatic Agent — Fast template-based research fallback (no LLM).
|
|
2
|
+
|
|
3
|
+
auto_discover matches function name 'fallback_researcher_agent' to YAML agent config.
|
|
4
|
+
|
|
5
|
+
Features showcased:
|
|
6
|
+
- Programmatic agent: pure Python, no LLM call, instant response
|
|
7
|
+
- OR fan-in: advisor_agent uses wait_for: "processor_agent AND (researcher_agent OR fallback_researcher_agent)"
|
|
8
|
+
- Race pattern: this agent completes instantly while researcher_agent waits for LLM
|
|
9
|
+
- Mirrors researcher_agent's output schema so advisor_agent can consume either
|
|
10
|
+
|
|
11
|
+
Execution flow:
|
|
12
|
+
1. processor_agent fans out to researcher_agent AND fallback_researcher_agent
|
|
13
|
+
2. This agent returns immediately with template-based findings
|
|
14
|
+
3. researcher_agent is still waiting for LLM response
|
|
15
|
+
4. advisor_agent's OR expression resolves — it proceeds with fallback data
|
|
16
|
+
5. researcher_agent result arrives later (already resolved, ignored by fan-in)
|
|
17
|
+
"""
|
|
18
|
+
from typing import Any
|
|
19
|
+
|
|
20
|
+
from leafmesh import chain, LeafMeshLogger
|
|
21
|
+
|
|
22
|
+
logger = LeafMeshLogger(__name__)
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
def _up(input_data: dict[str, Any], context: dict[str, Any],
|
|
26
|
+
key: str, default: Any = None) -> Any:
|
|
27
|
+
"""Shape-tolerant upstream read: flat input_data → upstream_yields
|
|
28
|
+
(flat or keyed by agent name) → context['upstream']."""
|
|
29
|
+
if key in input_data and input_data[key] not in (None, ""):
|
|
30
|
+
return input_data[key]
|
|
31
|
+
uy = input_data.get("upstream_yields")
|
|
32
|
+
if isinstance(uy, dict):
|
|
33
|
+
if key in uy and uy[key] not in (None, ""):
|
|
34
|
+
return uy[key]
|
|
35
|
+
for v in uy.values():
|
|
36
|
+
if isinstance(v, dict) and v.get(key) not in (None, ""):
|
|
37
|
+
return v[key]
|
|
38
|
+
for container_key in ("upstream_results",):
|
|
39
|
+
ur = input_data.get(container_key)
|
|
40
|
+
if isinstance(ur, dict):
|
|
41
|
+
for v in ur.values():
|
|
42
|
+
if isinstance(v, dict) and v.get(key) not in (None, ""):
|
|
43
|
+
return v[key]
|
|
44
|
+
cu = context.get("upstream") if isinstance(context, dict) else None
|
|
45
|
+
if isinstance(cu, dict) and cu.get(key) not in (None, ""):
|
|
46
|
+
return cu[key]
|
|
47
|
+
return default
|
|
48
|
+
|
|
49
|
+
|
|
50
|
+
def enrich_findings(result, context):
|
|
51
|
+
"""Chain step: Add analysis metadata to template findings."""
|
|
52
|
+
findings = result.get("findings", [])
|
|
53
|
+
result["analysis"] = {
|
|
54
|
+
"total_findings": len(findings),
|
|
55
|
+
"confidence_score": 0.6,
|
|
56
|
+
"data_quality": "template",
|
|
57
|
+
"source_type": "fallback_template",
|
|
58
|
+
}
|
|
59
|
+
result["report"] = {
|
|
60
|
+
"title": "Fallback Research Findings",
|
|
61
|
+
"confidence": 0.6,
|
|
62
|
+
"quality": "template",
|
|
63
|
+
"finding_count": len(findings),
|
|
64
|
+
"formatted": True,
|
|
65
|
+
}
|
|
66
|
+
return result
|
|
67
|
+
|
|
68
|
+
|
|
69
|
+
@chain(enrich_findings)
|
|
70
|
+
async def fallback_researcher_agent(llm_response, input_data, context):
|
|
71
|
+
"""Instant template-based research — no LLM needed.
|
|
72
|
+
|
|
73
|
+
Provides a fast fallback so the advisor_agent can proceed immediately
|
|
74
|
+
via OR fan-in without waiting for the slower LLM-based researcher_agent.
|
|
75
|
+
"""
|
|
76
|
+
# Shape-tolerant upstream reads via _up — processor yields may arrive
|
|
77
|
+
# flat, keyed under upstream_yields/upstream_results, or in context.
|
|
78
|
+
upstream_item_count = _up(input_data, context, "item_count", 0)
|
|
79
|
+
|
|
80
|
+
calling_data = input_data.get("calling_agent_response", {})
|
|
81
|
+
processed_items = calling_data.get("processed_items") \
|
|
82
|
+
or _up(input_data, context, "processed_items", []) or []
|
|
83
|
+
|
|
84
|
+
# Build template-based findings from upstream data
|
|
85
|
+
findings = []
|
|
86
|
+
for item in processed_items:
|
|
87
|
+
findings.append({
|
|
88
|
+
"source": "template",
|
|
89
|
+
"content": item.get("item", ""),
|
|
90
|
+
"recommendation": f"Review and address: {item.get('item', 'unknown')}",
|
|
91
|
+
})
|
|
92
|
+
|
|
93
|
+
if not findings:
|
|
94
|
+
findings.append({
|
|
95
|
+
"source": "template",
|
|
96
|
+
"content": "No specific items to research",
|
|
97
|
+
"recommendation": "Gather more information from the user",
|
|
98
|
+
})
|
|
99
|
+
|
|
100
|
+
logger.info(f"Fallback research — {len(findings)} template findings")
|
|
101
|
+
|
|
102
|
+
return {
|
|
103
|
+
"findings": findings,
|
|
104
|
+
"query": str(_up(input_data, context, "message", "")
|
|
105
|
+
or _up(input_data, context, "research_topic", "") or ""),
|
|
106
|
+
"upstream_item_count": upstream_item_count,
|
|
107
|
+
"source_agent": "fallback_researcher_agent",
|
|
108
|
+
"source_type": "fallback_template",
|
|
109
|
+
"status": "researched",
|
|
110
|
+
}
|
|
@@ -0,0 +1,129 @@
|
|
|
1
|
+
"""LLM Agent — Auto-discovered with @pre_compose (all 3 processor types).
|
|
2
|
+
|
|
3
|
+
auto_discover matches function name 'greeter_agent' to YAML agent config.
|
|
4
|
+
|
|
5
|
+
Execution flow:
|
|
6
|
+
1. Processors run BEFORE the LLM call (data preparation)
|
|
7
|
+
2. context_parts (care, sentiment, guardrails) shape the LLM's tone
|
|
8
|
+
3. LLM generates response using YAML prompt + prepared data
|
|
9
|
+
4. This function post-processes the LLM response
|
|
10
|
+
|
|
11
|
+
Processor results in context["prepared_data"]:
|
|
12
|
+
- context_processor → context["prepared_data"]["business_context"]
|
|
13
|
+
- input_processor → context["prepared_data"]["clean_user_input"]
|
|
14
|
+
- others_processor → context["prepared_data"]["others"]
|
|
15
|
+
"""
|
|
16
|
+
from typing import Any
|
|
17
|
+
|
|
18
|
+
from leafmesh import pre_compose, LeafMeshLogger
|
|
19
|
+
|
|
20
|
+
logger = LeafMeshLogger(__name__)
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
def _up(input_data: dict[str, Any], context: dict[str, Any],
|
|
24
|
+
key: str, default: Any = None) -> Any:
|
|
25
|
+
"""Shape-tolerant upstream read: flat input_data → upstream_yields
|
|
26
|
+
(flat or keyed by agent name) → context['upstream']."""
|
|
27
|
+
if key in input_data and input_data[key] not in (None, ""):
|
|
28
|
+
return input_data[key]
|
|
29
|
+
uy = input_data.get("upstream_yields")
|
|
30
|
+
if isinstance(uy, dict):
|
|
31
|
+
if key in uy and uy[key] not in (None, ""):
|
|
32
|
+
return uy[key]
|
|
33
|
+
for v in uy.values():
|
|
34
|
+
if isinstance(v, dict) and v.get(key) not in (None, ""):
|
|
35
|
+
return v[key]
|
|
36
|
+
for container_key in ("upstream_results",):
|
|
37
|
+
ur = input_data.get(container_key)
|
|
38
|
+
if isinstance(ur, dict):
|
|
39
|
+
for v in ur.values():
|
|
40
|
+
if isinstance(v, dict) and v.get(key) not in (None, ""):
|
|
41
|
+
return v[key]
|
|
42
|
+
cu = context.get("upstream") if isinstance(context, dict) else None
|
|
43
|
+
if isinstance(cu, dict) and cu.get(key) not in (None, ""):
|
|
44
|
+
return cu[key]
|
|
45
|
+
return default
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+
def process_context(input_data, context):
|
|
49
|
+
"""context_processor: Prepare business context for the LLM prompt.
|
|
50
|
+
Runs before LLM — enriches the prompt with relevant domain info."""
|
|
51
|
+
return {
|
|
52
|
+
"domain": "task_management",
|
|
53
|
+
"session_id": context.get("session_id", "unknown"),
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
|
|
57
|
+
def clean_input(input_data, context):
|
|
58
|
+
"""input_processor: Extract and clean the user's message.
|
|
59
|
+
Runs before LLM — normalizes input for consistent processing.
|
|
60
|
+
When the human client calls back, the SDK delivers only meta fields
|
|
61
|
+
(human_message etc.) — treat human_message as the user utterance."""
|
|
62
|
+
raw = input_data.get("message", "") or input_data.get("human_message", "")
|
|
63
|
+
return {"user_message": str(raw or "").strip()}
|
|
64
|
+
|
|
65
|
+
|
|
66
|
+
def load_extras(input_data, context):
|
|
67
|
+
"""others_processor: Load auxiliary data (feature flags, config, etc.).
|
|
68
|
+
Runs before LLM — provides supplementary data."""
|
|
69
|
+
return {"timestamp_requested": "message" in input_data}
|
|
70
|
+
|
|
71
|
+
|
|
72
|
+
@pre_compose(
|
|
73
|
+
context_processor=process_context,
|
|
74
|
+
input_processor=clean_input,
|
|
75
|
+
others_processor=load_extras,
|
|
76
|
+
)
|
|
77
|
+
async def greeter_agent(llm_response, input_data, context):
|
|
78
|
+
"""Post-process the LLM's response.
|
|
79
|
+
|
|
80
|
+
At this point:
|
|
81
|
+
- Processors already ran (before LLM call)
|
|
82
|
+
- context_parts (care, sentiment, guardrails) already shaped the LLM's tone
|
|
83
|
+
- llm_response has the LLM's output
|
|
84
|
+
- context["prepared_data"] has processor results
|
|
85
|
+
"""
|
|
86
|
+
prepared = context.get("prepared_data", {})
|
|
87
|
+
|
|
88
|
+
# ─── Memory access (add memory: true to this agent's YAML to enable) ───
|
|
89
|
+
# memory_posts = context.get("memory_posts", [])
|
|
90
|
+
# Each post has "role" (user/assistant) and "content" (text).
|
|
91
|
+
# See researcher_agent.py for a working memory example.
|
|
92
|
+
|
|
93
|
+
# ─── Upstream yields access ───
|
|
94
|
+
# If this agent is called by another agent (e.g., client → greeter_agent),
|
|
95
|
+
# the SDK injects upstream yields as input_data["upstream_yields"].
|
|
96
|
+
# upstream_yields = input_data.get("upstream_yields", {})
|
|
97
|
+
# client_yields = upstream_yields.get("client", {})
|
|
98
|
+
|
|
99
|
+
# Shape-tolerant read — message may arrive flat, under upstream
|
|
100
|
+
# containers, or (conversational HITL) as human_message meta only.
|
|
101
|
+
user_input = str(
|
|
102
|
+
_up(input_data, context, "message", "")
|
|
103
|
+
or input_data.get("human_message", "")
|
|
104
|
+
or ""
|
|
105
|
+
)
|
|
106
|
+
logger.info(f"Greeting user — input: {user_input[:80]}")
|
|
107
|
+
|
|
108
|
+
# llm_response is a parsed dict (the LLM's structured JSON output).
|
|
109
|
+
# Extract the SPECIFIC fields we want — don't assign the whole dict
|
|
110
|
+
# to a single key, that produces "greeting: type mismatch (got dict)".
|
|
111
|
+
if isinstance(llm_response, dict):
|
|
112
|
+
greeting = llm_response.get("greeting") or "Hello!"
|
|
113
|
+
# If the LLM also produced a sentiment, prefer it over our default
|
|
114
|
+
sentiment = llm_response.get("detected_sentiment") or "neutral"
|
|
115
|
+
else:
|
|
116
|
+
# Fallback if LLM returned a plain string
|
|
117
|
+
greeting = str(llm_response) if llm_response else "Hello!"
|
|
118
|
+
sentiment = "neutral"
|
|
119
|
+
|
|
120
|
+
return {
|
|
121
|
+
"greeting": greeting,
|
|
122
|
+
"user_input": user_input,
|
|
123
|
+
"detected_sentiment": sentiment,
|
|
124
|
+
"domain": prepared.get("business_context", {}).get("domain", "general"),
|
|
125
|
+
"status": "greeted",
|
|
126
|
+
# Identity passthrough — the client (human) inbox declares these inputs
|
|
127
|
+
"user_message": str(_up(input_data, context, "user_message", "") or "") or user_input,
|
|
128
|
+
"request_type": str(_up(input_data, context, "request_type", "") or ""),
|
|
129
|
+
}
|