create-leafmesh 2.2.6__tar.gz → 2.3.2__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.3.2/PKG-INFO +94 -0
- create_leafmesh-2.3.2/create_leafmesh/__init__.py +3 -0
- create_leafmesh-2.3.2/create_leafmesh/deploy.py +213 -0
- create_leafmesh-2.3.2/create_leafmesh/deploy_providers/__init__.py +6 -0
- create_leafmesh-2.3.2/create_leafmesh/deploy_providers/_shared.py +156 -0
- create_leafmesh-2.3.2/create_leafmesh/deploy_providers/aws.py +1010 -0
- create_leafmesh-2.3.2/create_leafmesh/deploy_providers/azure.py +1323 -0
- create_leafmesh-2.3.2/create_leafmesh/deploy_providers/gcp.py +1153 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/_inspire/agency/__pycache__/__init__.cpython-314.pyc +0 -0
- 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__/external_agents.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/__pycache__/scheduler_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/_inspire/agency/__pycache__/tools.cpython-314.pyc +0 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/_inspire/agency/risk_scorer_agent.py +174 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/_inspire/configs/config.yaml +1257 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/_inspire/tests/__pycache__/__init__.cpython-314.pyc +0 -0
- create_leafmesh-2.3.2/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/templates/_inspire/tests/test_config_shape.py +151 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/_registry.yaml +415 -0
- 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/contract_review_agent.py +162 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/bd-proposals/agency/contract_search_agent.py +148 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/bd-proposals/agency/doc_extraction_agent.py +115 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/bd-proposals/agency/rfp_scout_agent.py +166 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/bd-proposals/configs/config.yaml +819 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/bd-proposals/logs/leafmesh_2026-06-09.log +24 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/bd-proposals/logs/leafmesh_2026-06-10.log +6 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/bd-proposals/tests/__pycache__/__init__.cpython-314.pyc +0 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/bd-proposals/tests/__pycache__/conftest.cpython-314-pytest-9.0.2.pyc +0 -0
- 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/__pycache__/test_config_shape.cpython-314-pytest-9.0.2.pyc +0 -0
- 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/esat_survey_agent.py +205 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/bench-management/agency/performance_review_agent.py +153 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/bench-management/configs/config.yaml +669 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/bench-management/logs/leafmesh_2026-06-09.log +6 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/bench-management/logs/leafmesh_2026-06-10.log +2 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/bench-management/tests/__pycache__/__init__.cpython-314.pyc +0 -0
- 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/__pycache__/test_config_shape.cpython-314-pytest-9.0.2.pyc +0 -0
- 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/competitor_intel_agent.py +215 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/customer-success/agency/customer_onboarding_agent.py +278 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/customer-success/agency/playbook_trigger_agent.py +107 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/customer-success/agency/risk_detector_agent.py +123 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/customer-success/agency/save_play_agent.py +94 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/customer-success/configs/config.yaml +1349 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/customer-success/logs/leafmesh_2026-06-09.log +108 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/customer-success/logs/leafmesh_2026-06-10.log +108 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/customer-success/tests/__pycache__/__init__.cpython-314.pyc +0 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/customer-success/tests/__pycache__/conftest.cpython-314-pytest-9.0.2.pyc +0 -0
- 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-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/crm_case_generator_agent.py +206 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/customer-support/agency/cross_channel_agent.py +171 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/customer-support/agency/phone_support_agent.py +176 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/customer-support/configs/config.yaml +1018 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/customer-support/logs/leafmesh_2026-06-09.log +76 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/customer-support/logs/leafmesh_2026-06-10.log +38 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/customer-support/tests/__pycache__/__init__.cpython-314.pyc +0 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/customer-support/tests/__pycache__/conftest.cpython-314-pytest-9.0.2.pyc +0 -0
- 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/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/__pycache__/test_engineer_agent.cpython-314-pytest-9.0.2.pyc +0 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/engineering-sdlc/agency/regulatory_monitor_agent.py +185 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/engineering-sdlc/configs/config.yaml +820 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/engineering-sdlc/logs/leafmesh_2026-06-09.log +42 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/engineering-sdlc/logs/leafmesh_2026-06-10.log +28 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/engineering-sdlc/tests/__pycache__/__init__.cpython-314.pyc +0 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/engineering-sdlc/tests/__pycache__/conftest.cpython-314-pytest-9.0.2.pyc +0 -0
- create_leafmesh-2.3.2/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/templates/engineering-sdlc/tests/__pycache__/test_config_shape.cpython-314-pytest-9.0.2.pyc +0 -0
- 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/kyc_processing_agent.py +159 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/finance-ops/agency/loan_origination_agent.py +192 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/finance-ops/agency/loan_servicing_agent.py +273 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/finance-ops/agency/regulatory_monitor_agent.py +186 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/finance-ops/configs/config.yaml +1452 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/finance-ops/logs/leafmesh_2026-06-09.log +57 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/finance-ops/logs/leafmesh_2026-06-10.log +38 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/finance-ops/tests/__pycache__/__init__.cpython-314.pyc +0 -0
- 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/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/regulatory_monitor_agent.py +184 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/infra-cost-ops/configs/config.yaml +527 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/infra-cost-ops/logs/leafmesh_2026-06-09.log +12 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/infra-cost-ops/logs/leafmesh_2026-06-10.log +4 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/infra-cost-ops/tests/__pycache__/__init__.cpython-314.pyc +0 -0
- create_leafmesh-2.3.2/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/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/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/aeo_geo_optimiser_agent.py +237 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/marketing-ops/agency/social_media_agent.py +222 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/marketing-ops/configs/config.yaml +878 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/marketing-ops/logs/leafmesh_2026-06-09.log +64 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/marketing-ops/logs/leafmesh_2026-06-10.log +16 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/marketing-ops/tests/__pycache__/__init__.cpython-314.pyc +0 -0
- 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/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/equipment_lifecycle_agent.py +142 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/predictive-maintenance/agency/safety_incident_reporter_agent.py +135 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/predictive-maintenance/configs/config.yaml +642 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/predictive-maintenance/logs/leafmesh_2026-06-09.log +21 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/predictive-maintenance/logs/leafmesh_2026-06-10.log +7 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/predictive-maintenance/tests/__pycache__/__init__.cpython-314.pyc +0 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/predictive-maintenance/tests/__pycache__/conftest.cpython-314-pytest-9.0.2.pyc +0 -0
- 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/procurement-ops/Dockerfile +21 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/procurement-ops/README.md +299 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/procurement-ops/TESTING_GUIDE.md +1646 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/procurement-ops/WORKFLOW_GUIDE.md +245 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/procurement-ops/agency/__pycache__/__init__.cpython-314.pyc +0 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/procurement-ops/agency/__pycache__/data_loader.cpython-314.pyc +0 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/procurement-ops/agency/__pycache__/grn_agent.cpython-314.pyc +0 -0
- 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__/supply_report_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/procurement-ops/agency/__pycache__/tariff_classifier_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/procurement-ops/agency/__pycache__/tools.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/data_loader.py +193 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/procurement-ops/agency/grn_agent.py +240 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/procurement-ops/agency/inventory_agent.py +331 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/procurement-ops/agency/logistics_agent.py +415 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/procurement-ops/agency/order_intake_agent.py +253 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/procurement-ops/agency/purchase_order_agent.py +429 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/procurement-ops/agency/supplier_agent.py +207 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/procurement-ops/agency/supply_report_agent.py +206 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/procurement-ops/agency/tariff_classifier_agent.py +224 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/procurement-ops/agency/tools.py +144 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/procurement-ops/agency/trade_compliance_agent.py +205 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/procurement-ops/configs/config.yaml +510 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/procurement-ops/configs/inventory.yaml +260 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/procurement-ops/configs/open_pos.yaml +258 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/procurement-ops/configs/suppliers.yaml +1216 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/procurement-ops/docker-compose.yml +28 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/procurement-ops/dockerignore +17 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/procurement-ops/env +23 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/procurement-ops/gitignore +33 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/procurement-ops/main.py +101 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/procurement-ops/requirements.txt +14 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/procurement-ops/tests/__pycache__/__init__.cpython-314.pyc +0 -0
- create_leafmesh-2.3.2/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/templates/procurement-ops/tests/test_config_shape.py +161 -0
- 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/capacity_what_if_agent.py +139 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/production-planning/agency/demand_forecast_eval_agent.py +166 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/production-planning/configs/config.yaml +692 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/production-planning/logs/leafmesh_2026-06-09.log +9 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/production-planning/logs/leafmesh_2026-06-10.log +3 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/production-planning/tests/__pycache__/__init__.cpython-314.pyc +0 -0
- 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/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/recall_orchestrator_agent.py +153 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/quality-yield/agency/regulatory_compliance_agent.py +133 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/quality-yield/configs/config.yaml +676 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/quality-yield/logs/leafmesh_2026-06-09.log +18 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/quality-yield/logs/leafmesh_2026-06-10.log +6 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/quality-yield/tests/__pycache__/__init__.cpython-314.pyc +0 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/quality-yield/tests/__pycache__/conftest.cpython-314-pytest-9.0.2.pyc +0 -0
- 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/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/contract_review_agent.py +149 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/quote-to-cash/configs/config.yaml +668 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/quote-to-cash/logs/leafmesh_2026-06-09.log +24 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/quote-to-cash/logs/leafmesh_2026-06-10.log +8 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/quote-to-cash/tests/__pycache__/__init__.cpython-314.pyc +0 -0
- create_leafmesh-2.3.2/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/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/__pycache__/test_config_shape.cpython-314-pytest-9.0.2.pyc +0 -0
- 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/bias_audit_agent.py +188 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/recruiting-ops/agency/hiring_assistant_agent.py +164 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/recruiting-ops/configs/config.yaml +723 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/recruiting-ops/logs/leafmesh_2026-06-09.log +6 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/recruiting-ops/logs/leafmesh_2026-06-10.log +4 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/recruiting-ops/tests/__pycache__/__init__.cpython-314.pyc +0 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/recruiting-ops/tests/__pycache__/conftest.cpython-314-pytest-9.0.2.pyc +0 -0
- 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/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/abm_orchestrator_agent.py +289 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/sales-orchestration/agency/competitor_intel_agent.py +193 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/sales-orchestration/agency/deal_nurturer_agent.py +349 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/sales-orchestration/agency/lead_enrichment_agent.py +185 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/sales-orchestration/configs/config.yaml +846 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/sales-orchestration/examples/05_enriched_inbound_lead.json +24 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/sales-orchestration/examples/06_deal_nurture_sweep.json +37 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/sales-orchestration/examples/07_abm_account_activation.json +21 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/sales-orchestration/examples/08_competitor_intel_pull.json +21 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/sales-orchestration/logs/leafmesh_2026-06-09.log +30 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/sales-orchestration/logs/leafmesh_2026-06-10.log +20 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/sales-orchestration/tests/__init__.py +0 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/sales-orchestration/tests/__pycache__/__init__.cpython-314.pyc +0 -0
- 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/__pycache__/test_config_shape.cpython-314-pytest-9.0.2.pyc +0 -0
- 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/doc_extraction_agent.py +150 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/services-delivery/agency/performance_review_agent.py +149 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/services-delivery/configs/config.yaml +1312 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/services-delivery/logs/leafmesh_2026-06-09.log +69 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/services-delivery/logs/leafmesh_2026-06-10.log +23 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/services-delivery/tests/__init__.py +0 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/services-delivery/tests/__pycache__/__init__.cpython-314.pyc +0 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/services-delivery/tests/__pycache__/conftest.cpython-314-pytest-9.0.2.pyc +0 -0
- 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/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/supplier_onboarding_agent.py +161 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/warehouse-supply-chain/agency/supplier_performance_agent.py +194 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/warehouse-supply-chain/agency/supplier_sourcing_agent.py +155 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/warehouse-supply-chain/configs/config.yaml +803 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/warehouse-supply-chain/logs/leafmesh_2026-06-09.log +12 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/warehouse-supply-chain/logs/leafmesh_2026-06-10.log +8 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/warehouse-supply-chain/tests/__init__.py +0 -0
- create_leafmesh-2.3.2/create_leafmesh/templates/warehouse-supply-chain/tests/__pycache__/__init__.cpython-314.pyc +0 -0
- create_leafmesh-2.3.2/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/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.egg-info/PKG-INFO +94 -0
- create_leafmesh-2.3.2/create_leafmesh.egg-info/SOURCES.txt +895 -0
- create_leafmesh-2.3.2/create_leafmesh.egg-info/entry_points.txt +3 -0
- create_leafmesh-2.3.2/create_leafmesh.egg-info/requires.txt +3 -0
- create_leafmesh-2.3.2/pyproject.toml +26 -0
- create_leafmesh-2.2.6/PKG-INFO +0 -92
- create_leafmesh-2.2.6/create_leafmesh/__init__.py +0 -3
- create_leafmesh-2.2.6/create_leafmesh/templates/_inspire/configs/config.yaml +0 -1182
- create_leafmesh-2.2.6/create_leafmesh/templates/_registry.yaml +0 -390
- create_leafmesh-2.2.6/create_leafmesh/templates/bd-proposals/configs/config.yaml +0 -596
- create_leafmesh-2.2.6/create_leafmesh/templates/bench-management/configs/config.yaml +0 -536
- create_leafmesh-2.2.6/create_leafmesh/templates/customer-success/agency/playbook_trigger_agent.py +0 -86
- create_leafmesh-2.2.6/create_leafmesh/templates/customer-success/agency/risk_detector_agent.py +0 -110
- create_leafmesh-2.2.6/create_leafmesh/templates/customer-success/agency/save_play_agent.py +0 -74
- create_leafmesh-2.2.6/create_leafmesh/templates/customer-success/configs/config.yaml +0 -1221
- create_leafmesh-2.2.6/create_leafmesh/templates/customer-support/configs/config.yaml +0 -847
- create_leafmesh-2.2.6/create_leafmesh/templates/engineering-sdlc/configs/config.yaml +0 -756
- create_leafmesh-2.2.6/create_leafmesh/templates/finance-ops/configs/config.yaml +0 -1212
- create_leafmesh-2.2.6/create_leafmesh/templates/infra-cost-ops/configs/config.yaml +0 -472
- create_leafmesh-2.2.6/create_leafmesh/templates/marketing-ops/configs/config.yaml +0 -747
- create_leafmesh-2.2.6/create_leafmesh/templates/predictive-maintenance/configs/config.yaml +0 -509
- create_leafmesh-2.2.6/create_leafmesh/templates/production-planning/configs/config.yaml +0 -582
- create_leafmesh-2.2.6/create_leafmesh/templates/quality-yield/configs/config.yaml +0 -542
- create_leafmesh-2.2.6/create_leafmesh/templates/quote-to-cash/configs/config.yaml +0 -598
- create_leafmesh-2.2.6/create_leafmesh/templates/recruiting-ops/configs/config.yaml +0 -606
- create_leafmesh-2.2.6/create_leafmesh/templates/sales-orchestration/configs/config.yaml +0 -578
- create_leafmesh-2.2.6/create_leafmesh/templates/services-delivery/configs/config.yaml +0 -1184
- create_leafmesh-2.2.6/create_leafmesh/templates/warehouse-supply-chain/configs/config.yaml +0 -628
- create_leafmesh-2.2.6/create_leafmesh.egg-info/PKG-INFO +0 -92
- create_leafmesh-2.2.6/create_leafmesh.egg-info/SOURCES.txt +0 -605
- create_leafmesh-2.2.6/create_leafmesh.egg-info/entry_points.txt +0 -2
- create_leafmesh-2.2.6/create_leafmesh.egg-info/requires.txt +0 -1
- create_leafmesh-2.2.6/pyproject.toml +0 -23
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/README.md +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/cli.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/create.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/_inspire/Dockerfile +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/_inspire/README.md +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/_inspire/_REFERENCE_ONLY.md +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/_inspire/agency/__init__.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/_inspire/agency/advisor_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/_inspire/agency/external_agents.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/_inspire/agency/fallback_researcher_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/_inspire/agency/greeter_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/_inspire/agency/processor_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/_inspire/agency/researcher_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/_inspire/agency/scheduler_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/_inspire/agency/tools.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/_inspire/docker-compose.yml +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/_inspire/dockerignore +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/_inspire/env +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/_inspire/gitignore +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/_inspire/hitl_stub_receiver.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/_inspire/main.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/_inspire/requirements.txt +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/_inspire/skills/data-handling/SKILL.md +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/_inspire/skills/data-handling/examples.json +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/_inspire/skills/tone-rules.md +0 -0
- {create_leafmesh-2.2.6/create_leafmesh/templates/bd-proposals → create_leafmesh-2.3.2/create_leafmesh/templates/_inspire}/tests/__init__.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/bd-proposals/Dockerfile +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/bd-proposals/README.md +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/bd-proposals/_prompts.json +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/bd-proposals/agency/__init__.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/bd-proposals/agency/_shared/__init__.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/bd-proposals/agency/_shared/audit_logger.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/bd-proposals/agency/bid_no_bid_decisioner_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/bd-proposals/agency/competitor_intel_archive_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/bd-proposals/agency/compliance_reviewer_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/bd-proposals/agency/past_proposal_retriever_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/bd-proposals/agency/pricing_configurator_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/bd-proposals/agency/rfp_ingester_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/bd-proposals/agency/section_drafter_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/bd-proposals/agency/win_loss_analyzer_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/bd-proposals/docker-compose.yml +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/bd-proposals/dockerignore +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/bd-proposals/env +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/bd-proposals/examples/01_new_rfp_received.json +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/bd-proposals/examples/02_win_post_mortem.json +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/bd-proposals/examples/03_loss_with_competitor.json +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/bd-proposals/examples/04_quarterly_win_rate.json +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/bd-proposals/examples/README.md +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/bd-proposals/examples/run_examples.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/bd-proposals/gitignore +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/bd-proposals/main.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/bd-proposals/pytest.ini +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/bd-proposals/requirements-dev.txt +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/bd-proposals/requirements.txt +0 -0
- {create_leafmesh-2.2.6/create_leafmesh/templates/bench-management → create_leafmesh-2.3.2/create_leafmesh/templates/bd-proposals}/tests/__init__.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/bd-proposals/tests/conftest.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/bd-proposals/tests/test_agent_logic.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/bd-proposals/tests/test_config_shape.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/bench-management/Dockerfile +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/bench-management/README.md +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/bench-management/_prompts.json +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/bench-management/agency/__init__.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/bench-management/agency/_shared/__init__.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/bench-management/agency/_shared/audit_logger.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/bench-management/agency/allocation_planner_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/bench-management/agency/capacity_forecaster_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/bench-management/agency/career_path_recommender_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/bench-management/agency/idle_detector_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/bench-management/agency/reskilling_recommender_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/bench-management/agency/skills_inventory_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/bench-management/agency/skills_matcher_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/bench-management/agency/utilisation_calculator_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/bench-management/agency/weekly_bench_sweep_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/bench-management/docker-compose.yml +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/bench-management/dockerignore +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/bench-management/env +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/bench-management/examples/01_new_project_kickoff.json +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/bench-management/examples/02_weekly_bench_review.json +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/bench-management/examples/03_promotion_readiness.json +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/bench-management/examples/04_person_rolling_off.json +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/bench-management/examples/README.md +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/bench-management/examples/run_examples.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/bench-management/gitignore +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/bench-management/main.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/bench-management/pytest.ini +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/bench-management/requirements-dev.txt +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/bench-management/requirements.txt +0 -0
- {create_leafmesh-2.2.6/create_leafmesh/templates/customer-success → create_leafmesh-2.3.2/create_leafmesh/templates/bench-management}/tests/__init__.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/bench-management/tests/conftest.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/bench-management/tests/test_agent_logic.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/bench-management/tests/test_config_shape.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/claude_skills/leafmesh/SKILL.md +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/claude_skills/leafmesh/agent-config-fields.md +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/claude_skills/leafmesh/examples.md +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/claude_skills/leafmesh/reference.md +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/customer-success/Dockerfile +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/customer-success/README.md +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/customer-success/_prompts.json +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/customer-success/agency/__init__.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/customer-success/agency/_shared/__init__.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/customer-success/agency/_shared/audit_logger.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/customer-success/agency/exec_alignment_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/customer-success/agency/expansion_signal_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/customer-success/agency/health_score_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/customer-success/agency/health_score_explainer_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/customer-success/agency/health_sweep_orchestrator_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/customer-success/agency/qbr_drafter_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/customer-success/agency/renewal_forecaster_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/customer-success/agency/renewal_window_monitor_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/customer-success/agency/usage_analytics_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/customer-success/docker-compose.yml +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/customer-success/dockerignore +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/customer-success/env +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/customer-success/examples/01_telemetry_dau_drop.json +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/customer-success/examples/02_billing_failed_payment.json +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/customer-success/examples/03_renewal_window_60d.json +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/customer-success/examples/04_executive_change.json +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/customer-success/examples/README.md +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/customer-success/examples/run_examples.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/customer-success/gitignore +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/customer-success/main.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/customer-success/pytest.ini +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/customer-success/requirements-dev.txt +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/customer-success/requirements.txt +0 -0
- {create_leafmesh-2.2.6/create_leafmesh/templates/customer-support → create_leafmesh-2.3.2/create_leafmesh/templates/customer-success}/tests/__init__.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/customer-success/tests/conftest.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/customer-success/tests/test_agent_logic.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/customer-success/tests/test_config_shape.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/customer-support/Dockerfile +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/customer-support/README.md +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/customer-support/_prompts.json +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/customer-support/agency/__init__.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/customer-support/agency/_shared/__init__.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/customer-support/agency/_shared/audit_logger.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/customer-support/agency/csat_collector_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/customer-support/agency/kb_gap_filler_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/customer-support/agency/knowledge_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/customer-support/agency/qa_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/customer-support/agency/response_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/customer-support/agency/sentiment_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/customer-support/agency/sla_watchdog_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/customer-support/agency/ticket_clustering_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/customer-support/agency/ticket_intake_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/customer-support/agency/triage_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/customer-support/docker-compose.yml +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/customer-support/dockerignore +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/customer-support/env +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/customer-support/examples/01_password_reset_routine.json +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/customer-support/examples/02_billing_dispute_escalation.json +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/customer-support/examples/03_security_incident.json +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/customer-support/examples/04_kb_gap_signal.json +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/customer-support/examples/README.md +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/customer-support/examples/run_examples.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/customer-support/gitignore +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/customer-support/main.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/customer-support/pytest.ini +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/customer-support/requirements-dev.txt +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/customer-support/requirements.txt +0 -0
- {create_leafmesh-2.2.6/create_leafmesh/templates/engineering-sdlc → create_leafmesh-2.3.2/create_leafmesh/templates/customer-support}/tests/__init__.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/customer-support/tests/conftest.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/customer-support/tests/test_agent_logic.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/customer-support/tests/test_config_shape.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/engineering-sdlc/Dockerfile +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/engineering-sdlc/README.md +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/engineering-sdlc/_prompts.json +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/engineering-sdlc/agency/__init__.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/engineering-sdlc/agency/_shared/__init__.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/engineering-sdlc/agency/_shared/audit_logger.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/engineering-sdlc/agency/code_reviewer_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/engineering-sdlc/agency/junior_engineer_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/engineering-sdlc/agency/oncall_alert_triager_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/engineering-sdlc/agency/refactor_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/engineering-sdlc/agency/regression_detector_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/engineering-sdlc/agency/release_notes_drafter_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/engineering-sdlc/agency/security_scanner_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/engineering-sdlc/agency/spec_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/engineering-sdlc/agency/test_engineer_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/engineering-sdlc/docker-compose.yml +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/engineering-sdlc/dockerignore +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/engineering-sdlc/env +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/engineering-sdlc/examples/01_simple_feature_ticket.json +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/engineering-sdlc/examples/02_security_sensitive_change.json +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/engineering-sdlc/examples/03_oncall_pager_alert.json +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/engineering-sdlc/examples/04_refactor_proposal.json +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/engineering-sdlc/examples/README.md +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/engineering-sdlc/examples/run_examples.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/engineering-sdlc/gitignore +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/engineering-sdlc/main.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/engineering-sdlc/pytest.ini +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/engineering-sdlc/requirements-dev.txt +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/engineering-sdlc/requirements.txt +0 -0
- {create_leafmesh-2.2.6/create_leafmesh/templates/finance-ops → create_leafmesh-2.3.2/create_leafmesh/templates/engineering-sdlc}/tests/__init__.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/engineering-sdlc/tests/conftest.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/engineering-sdlc/tests/test_agent_logic.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/engineering-sdlc/tests/test_config_shape.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/finance-ops/Dockerfile +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/finance-ops/README.md +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/finance-ops/_prompts.json +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/finance-ops/agency/__init__.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/finance-ops/agency/_shared/__init__.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/finance-ops/agency/_shared/audit_logger.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/finance-ops/agency/_shared/erp_poster.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/finance-ops/agency/approval_router_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/finance-ops/agency/close_cycle_orchestrator_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/finance-ops/agency/duplicate_detector_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/finance-ops/agency/erp_poster_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/finance-ops/agency/exception_drafter_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/finance-ops/agency/extraction_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/finance-ops/agency/fraud_check_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/finance-ops/agency/gl_coding_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/finance-ops/agency/invoice_intake_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/finance-ops/agency/payment_scheduler_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/finance-ops/agency/po_match_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/finance-ops/agency/reconciliation_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/finance-ops/agency/vendor_onboarding_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/finance-ops/agency/vendor_query_handler_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/finance-ops/docker-compose.yml +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/finance-ops/dockerignore +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/finance-ops/env +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/finance-ops/examples/01_happy_path_subscription.json +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/finance-ops/examples/02_fraud_signal_round_number.json +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/finance-ops/examples/03_po_mismatch_exception.json +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/finance-ops/examples/04_high_value_cfo_signoff.json +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/finance-ops/examples/05_vendor_inquiry.json +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/finance-ops/examples/README.md +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/finance-ops/examples/run_examples.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/finance-ops/gitignore +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/finance-ops/main.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/finance-ops/pytest.ini +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/finance-ops/requirements-dev.txt +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/finance-ops/requirements.txt +0 -0
- {create_leafmesh-2.2.6/create_leafmesh/templates/infra-cost-ops → create_leafmesh-2.3.2/create_leafmesh/templates/finance-ops}/tests/__init__.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/finance-ops/tests/conftest.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/finance-ops/tests/test_agent_logic.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/finance-ops/tests/test_config_shape.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/infra-cost-ops/Dockerfile +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/infra-cost-ops/README.md +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/infra-cost-ops/_prompts.json +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/infra-cost-ops/agency/__init__.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/infra-cost-ops/agency/_shared/__init__.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/infra-cost-ops/agency/_shared/audit_logger.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/infra-cost-ops/agency/budget_alert_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/infra-cost-ops/agency/commitment_utilisation_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/infra-cost-ops/agency/cost_anomaly_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/infra-cost-ops/agency/cost_tuner_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/infra-cost-ops/agency/iac_drift_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/infra-cost-ops/agency/reserved_capacity_planner_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/infra-cost-ops/agency/right_sizer_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/infra-cost-ops/agency/tag_compliance_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/infra-cost-ops/docker-compose.yml +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/infra-cost-ops/dockerignore +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/infra-cost-ops/env +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/infra-cost-ops/examples/01_ec2_idle_anomaly.json +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/infra-cost-ops/examples/02_savings_plan_under_utilised.json +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/infra-cost-ops/examples/03_ri_expiry_30d.json +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/infra-cost-ops/examples/04_iac_drift_detected.json +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/infra-cost-ops/examples/README.md +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/infra-cost-ops/examples/run_examples.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/infra-cost-ops/gitignore +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/infra-cost-ops/main.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/infra-cost-ops/pytest.ini +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/infra-cost-ops/requirements-dev.txt +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/infra-cost-ops/requirements.txt +0 -0
- {create_leafmesh-2.2.6/create_leafmesh/templates/marketing-ops → create_leafmesh-2.3.2/create_leafmesh/templates/infra-cost-ops}/tests/__init__.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/infra-cost-ops/tests/conftest.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/infra-cost-ops/tests/test_agent_logic.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/infra-cost-ops/tests/test_config_shape.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/marketing-ops/Dockerfile +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/marketing-ops/README.md +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/marketing-ops/_prompts.json +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/marketing-ops/agency/__init__.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/marketing-ops/agency/_shared/__init__.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/marketing-ops/agency/_shared/audit_logger.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/marketing-ops/agency/attribution_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/marketing-ops/agency/audience_intelligence_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/marketing-ops/agency/brand_sentiment_tracker_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/marketing-ops/agency/brief_intake_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/marketing-ops/agency/campaign_orchestrator_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/marketing-ops/agency/campaign_strategist_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/marketing-ops/agency/competitor_intel_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/marketing-ops/agency/compliance_reviewer_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/marketing-ops/agency/copywriter_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/marketing-ops/agency/crisis_responder_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/marketing-ops/agency/email_engagement_analyzer_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/marketing-ops/agency/marketing_audit_logger_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/marketing-ops/agency/performance_analyzer_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/marketing-ops/agency/publisher_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/marketing-ops/agency/visual_briefer_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/marketing-ops/docker-compose.yml +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/marketing-ops/dockerignore +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/marketing-ops/env +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/marketing-ops/examples/01_new_campaign_brief.json +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/marketing-ops/examples/02_product_launch_kickoff.json +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/marketing-ops/examples/03_brand_crisis.json +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/marketing-ops/examples/04_competitor_pricing_move.json +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/marketing-ops/examples/README.md +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/marketing-ops/examples/run_examples.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/marketing-ops/gitignore +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/marketing-ops/main.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/marketing-ops/pytest.ini +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/marketing-ops/requirements-dev.txt +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/marketing-ops/requirements.txt +0 -0
- {create_leafmesh-2.2.6/create_leafmesh/templates/predictive-maintenance → create_leafmesh-2.3.2/create_leafmesh/templates/marketing-ops}/tests/__init__.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/marketing-ops/tests/conftest.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/marketing-ops/tests/test_agent_logic.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/marketing-ops/tests/test_config_shape.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/predictive-maintenance/Dockerfile +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/predictive-maintenance/README.md +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/predictive-maintenance/_prompts.json +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/predictive-maintenance/agency/__init__.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/predictive-maintenance/agency/_shared/__init__.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/predictive-maintenance/agency/_shared/audit_logger.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/predictive-maintenance/agency/condition_sensor_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/predictive-maintenance/agency/dispatcher_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/predictive-maintenance/agency/failure_predictor_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/predictive-maintenance/agency/maintenance_history_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/predictive-maintenance/agency/parts_requestor_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/predictive-maintenance/agency/pm_compliance_tracker_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/predictive-maintenance/agency/recurrence_watchdog_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/predictive-maintenance/agency/spare_parts_forecaster_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/predictive-maintenance/agency/work_order_scheduler_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/predictive-maintenance/docker-compose.yml +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/predictive-maintenance/dockerignore +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/predictive-maintenance/env +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/predictive-maintenance/examples/01_routine_sensor_reading.json +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/predictive-maintenance/examples/02_anomaly_failure_predicted.json +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/predictive-maintenance/examples/03_safety_critical_shutdown.json +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/predictive-maintenance/examples/04_weekly_parts_forecast.json +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/predictive-maintenance/examples/README.md +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/predictive-maintenance/examples/run_examples.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/predictive-maintenance/gitignore +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/predictive-maintenance/main.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/predictive-maintenance/pytest.ini +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/predictive-maintenance/requirements-dev.txt +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/predictive-maintenance/requirements.txt +0 -0
- {create_leafmesh-2.2.6/create_leafmesh/templates/production-planning → create_leafmesh-2.3.2/create_leafmesh/templates/predictive-maintenance}/tests/__init__.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/predictive-maintenance/tests/conftest.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/predictive-maintenance/tests/test_agent_logic.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/predictive-maintenance/tests/test_config_shape.py +0 -0
- {create_leafmesh-2.2.6/create_leafmesh/templates/quality-yield/tests → create_leafmesh-2.3.2/create_leafmesh/templates/procurement-ops/agency}/__init__.py +0 -0
- {create_leafmesh-2.2.6/create_leafmesh/templates/quote-to-cash → create_leafmesh-2.3.2/create_leafmesh/templates/procurement-ops}/tests/__init__.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/production-planning/Dockerfile +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/production-planning/README.md +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/production-planning/_prompts.json +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/production-planning/agency/__init__.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/production-planning/agency/_shared/__init__.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/production-planning/agency/_shared/audit_logger.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/production-planning/agency/capacity_model_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/production-planning/agency/constraint_flagger_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/production-planning/agency/demand_sensor_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/production-planning/agency/material_requirements_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/production-planning/agency/production_kpi_tracker_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/production-planning/agency/release_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/production-planning/agency/rolling_reopt_orchestrator_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/production-planning/agency/scheduler_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/production-planning/agency/supplier_signal_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/production-planning/docker-compose.yml +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/production-planning/dockerignore +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/production-planning/env +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/production-planning/examples/01_demand_signal_normal.json +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/production-planning/examples/02_supplier_delay.json +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/production-planning/examples/03_emergency_constraint_alert.json +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/production-planning/examples/04_supplier_capacity_change.json +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/production-planning/examples/README.md +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/production-planning/examples/run_examples.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/production-planning/gitignore +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/production-planning/main.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/production-planning/pytest.ini +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/production-planning/requirements-dev.txt +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/production-planning/requirements.txt +0 -0
- {create_leafmesh-2.2.6/create_leafmesh/templates/recruiting-ops → create_leafmesh-2.3.2/create_leafmesh/templates/production-planning}/tests/__init__.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/production-planning/tests/conftest.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/production-planning/tests/test_agent_logic.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/production-planning/tests/test_config_shape.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/quality-yield/Dockerfile +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/quality-yield/README.md +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/quality-yield/_prompts.json +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/quality-yield/agency/__init__.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/quality-yield/agency/_shared/__init__.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/quality-yield/agency/_shared/audit_logger.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/quality-yield/agency/batch_traceability_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/quality-yield/agency/corrective_action_drafter_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/quality-yield/agency/corrective_action_tracker_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/quality-yield/agency/defect_detector_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/quality-yield/agency/inspection_intake_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/quality-yield/agency/root_cause_analyzer_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/quality-yield/agency/spc_chart_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/quality-yield/agency/spc_monitor_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/quality-yield/docker-compose.yml +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/quality-yield/dockerignore +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/quality-yield/env +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/quality-yield/examples/01_routine_inspection.json +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/quality-yield/examples/02_defect_cluster.json +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/quality-yield/examples/03_field_complaint_recall.json +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/quality-yield/examples/04_regulatory_audit_pull.json +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/quality-yield/examples/README.md +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/quality-yield/examples/run_examples.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/quality-yield/gitignore +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/quality-yield/main.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/quality-yield/pytest.ini +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/quality-yield/requirements-dev.txt +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/quality-yield/requirements.txt +0 -0
- {create_leafmesh-2.2.6/create_leafmesh/templates/sales-orchestration → create_leafmesh-2.3.2/create_leafmesh/templates/quality-yield}/tests/__init__.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/quality-yield/tests/conftest.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/quality-yield/tests/test_agent_logic.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/quality-yield/tests/test_config_shape.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/quote-to-cash/Dockerfile +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/quote-to-cash/README.md +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/quote-to-cash/_prompts.json +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/quote-to-cash/agency/__init__.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/quote-to-cash/agency/_shared/__init__.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/quote-to-cash/agency/_shared/audit_logger.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/quote-to-cash/agency/approval_router_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/quote-to-cash/agency/bundle_recommender_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/quote-to-cash/agency/competitor_watch_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/quote-to-cash/agency/contract_redline_tracker_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/quote-to-cash/agency/cost_calculator_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/quote-to-cash/agency/discount_policy_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/quote-to-cash/agency/quote_drafter_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/quote-to-cash/agency/revenue_recognition_classifier_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/quote-to-cash/agency/rfq_ingester_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/quote-to-cash/docker-compose.yml +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/quote-to-cash/dockerignore +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/quote-to-cash/env +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/quote-to-cash/examples/01_rfq_standard.json +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/quote-to-cash/examples/02_steep_discount_finance.json +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/quote-to-cash/examples/03_competitor_price_change.json +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/quote-to-cash/examples/04_renewal_uplift_bundle.json +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/quote-to-cash/examples/README.md +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/quote-to-cash/examples/run_examples.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/quote-to-cash/gitignore +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/quote-to-cash/main.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/quote-to-cash/pytest.ini +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/quote-to-cash/requirements-dev.txt +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/quote-to-cash/requirements.txt +0 -0
- {create_leafmesh-2.2.6/create_leafmesh/templates/services-delivery → create_leafmesh-2.3.2/create_leafmesh/templates/quote-to-cash}/tests/__init__.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/quote-to-cash/tests/conftest.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/quote-to-cash/tests/test_agent_logic.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/quote-to-cash/tests/test_config_shape.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/recruiting-ops/Dockerfile +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/recruiting-ops/README.md +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/recruiting-ops/_prompts.json +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/recruiting-ops/agency/__init__.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/recruiting-ops/agency/_shared/__init__.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/recruiting-ops/agency/_shared/audit_logger.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/recruiting-ops/agency/interview_loop_designer_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/recruiting-ops/agency/offer_drafter_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/recruiting-ops/agency/outreach_drafter_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/recruiting-ops/agency/pipeline_health_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/recruiting-ops/agency/rejection_letter_drafter_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/recruiting-ops/agency/req_intake_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/recruiting-ops/agency/resume_screener_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/recruiting-ops/agency/scheduling_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/recruiting-ops/agency/sourcing_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/recruiting-ops/agency/time_to_hire_tracker_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/recruiting-ops/docker-compose.yml +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/recruiting-ops/dockerignore +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/recruiting-ops/env +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/recruiting-ops/examples/01_new_req_filed.json +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/recruiting-ops/examples/02_candidate_rejection_letter.json +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/recruiting-ops/examples/03_offer_drafting.json +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/recruiting-ops/examples/04_ghosted_candidate_close.json +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/recruiting-ops/examples/README.md +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/recruiting-ops/examples/run_examples.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/recruiting-ops/gitignore +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/recruiting-ops/main.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/recruiting-ops/pytest.ini +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/recruiting-ops/requirements-dev.txt +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/recruiting-ops/requirements.txt +0 -0
- {create_leafmesh-2.2.6/create_leafmesh/templates/warehouse-supply-chain → create_leafmesh-2.3.2/create_leafmesh/templates/recruiting-ops}/tests/__init__.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/recruiting-ops/tests/conftest.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/recruiting-ops/tests/test_agent_logic.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/recruiting-ops/tests/test_config_shape.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/sales-orchestration/Dockerfile +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/sales-orchestration/README.md +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/sales-orchestration/_prompts.json +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/sales-orchestration/agency/__init__.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/sales-orchestration/agency/_shared/__init__.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/sales-orchestration/agency/_shared/audit_logger.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/sales-orchestration/agency/account_research_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/sales-orchestration/agency/lead_intake_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/sales-orchestration/agency/lead_revival_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/sales-orchestration/agency/lead_scorer_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/sales-orchestration/agency/personalisation_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/sales-orchestration/agency/pipeline_health_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/sales-orchestration/agency/pipeline_health_monitor_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/sales-orchestration/agency/sequence_orchestrator_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/sales-orchestration/docker-compose.yml +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/sales-orchestration/dockerignore +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/sales-orchestration/env +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/sales-orchestration/examples/01_inbound_demo_request.json +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/sales-orchestration/examples/02_cold_lead_revival.json +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/sales-orchestration/examples/03_competitor_steal_signal.json +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/sales-orchestration/examples/04_event_followup_burst.json +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/sales-orchestration/examples/README.md +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/sales-orchestration/examples/run_examples.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/sales-orchestration/gitignore +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/sales-orchestration/main.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/sales-orchestration/pytest.ini +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/sales-orchestration/requirements-dev.txt +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/sales-orchestration/requirements.txt +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/sales-orchestration/tests/conftest.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/sales-orchestration/tests/test_agent_logic.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/sales-orchestration/tests/test_config_shape.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/services-delivery/Dockerfile +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/services-delivery/README.md +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/services-delivery/_prompts.json +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/services-delivery/agency/__init__.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/services-delivery/agency/_shared/__init__.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/services-delivery/agency/_shared/audit_logger.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/services-delivery/agency/analysis_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/services-delivery/agency/brief_intake_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/services-delivery/agency/citation_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/services-delivery/agency/context_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/services-delivery/agency/delivery_router_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/services-delivery/agency/draft_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/services-delivery/agency/engagement_status_drafter_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/services-delivery/agency/qa_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/services-delivery/agency/research_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/services-delivery/agency/scope_creep_detector_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/services-delivery/agency/status_sweep_orchestrator_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/services-delivery/agency/time_tracker_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/services-delivery/docker-compose.yml +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/services-delivery/dockerignore +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/services-delivery/env +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/services-delivery/examples/01_new_engagement_memo.json +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/services-delivery/examples/02_friday_status_pack.json +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/services-delivery/examples/03_high_stakes_deliverable.json +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/services-delivery/examples/04_monthly_steering_pack.json +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/services-delivery/examples/README.md +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/services-delivery/examples/run_examples.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/services-delivery/gitignore +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/services-delivery/main.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/services-delivery/pytest.ini +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/services-delivery/requirements-dev.txt +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/services-delivery/requirements.txt +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/services-delivery/tests/conftest.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/services-delivery/tests/test_agent_logic.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/services-delivery/tests/test_config_shape.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/warehouse-supply-chain/Dockerfile +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/warehouse-supply-chain/README.md +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/warehouse-supply-chain/_prompts.json +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/warehouse-supply-chain/agency/__init__.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/warehouse-supply-chain/agency/_shared/__init__.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/warehouse-supply-chain/agency/_shared/audit_logger.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/warehouse-supply-chain/agency/allocation_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/warehouse-supply-chain/agency/carrier_selector_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/warehouse-supply-chain/agency/cycle_count_orchestrator_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/warehouse-supply-chain/agency/exception_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/warehouse-supply-chain/agency/humanoid_status_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/warehouse-supply-chain/agency/inspection_humanoid.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/warehouse-supply-chain/agency/inventory_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/warehouse-supply-chain/agency/inventory_reconciler_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/warehouse-supply-chain/agency/loader_humanoid.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/warehouse-supply-chain/agency/packer_humanoid.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/warehouse-supply-chain/agency/picker_humanoid.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/warehouse-supply-chain/agency/replenishment_planner_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/warehouse-supply-chain/agency/returns_handler_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/warehouse-supply-chain/agency/routing_agent.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/warehouse-supply-chain/docker-compose.yml +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/warehouse-supply-chain/dockerignore +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/warehouse-supply-chain/env +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/warehouse-supply-chain/examples/01_routine_order.json +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/warehouse-supply-chain/examples/02_short_pick_exception.json +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/warehouse-supply-chain/examples/03_returns_inspection.json +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/warehouse-supply-chain/examples/04_carrier_outage_failover.json +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/warehouse-supply-chain/examples/README.md +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/warehouse-supply-chain/examples/run_examples.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/warehouse-supply-chain/gitignore +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/warehouse-supply-chain/main.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/warehouse-supply-chain/pytest.ini +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/warehouse-supply-chain/requirements-dev.txt +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/warehouse-supply-chain/requirements.txt +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/warehouse-supply-chain/tests/conftest.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/warehouse-supply-chain/tests/test_agent_logic.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh/templates/warehouse-supply-chain/tests/test_config_shape.py +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh.egg-info/dependency_links.txt +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/create_leafmesh.egg-info/top_level.txt +0 -0
- {create_leafmesh-2.2.6 → create_leafmesh-2.3.2}/setup.cfg +0 -0
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: create-leafmesh
|
|
3
|
+
Version: 2.3.2
|
|
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
|
|
@@ -0,0 +1,213 @@
|
|
|
1
|
+
"""leafmesh-deploy — deploy a scaffolded mesh to a cloud provider.
|
|
2
|
+
|
|
3
|
+
Usage (from inside a scaffolded project):
|
|
4
|
+
|
|
5
|
+
leafmesh-deploy --plan # describe what will be created, no API calls
|
|
6
|
+
leafmesh-deploy --apply # do it: build + push image, create services
|
|
7
|
+
leafmesh-deploy --destroy # reverse everything via the state file
|
|
8
|
+
|
|
9
|
+
Provider selection:
|
|
10
|
+
|
|
11
|
+
--provider aws (default) # App Runner + Secrets Manager + ECR
|
|
12
|
+
--provider azure # Container Apps + Key Vault + ACR
|
|
13
|
+
--provider gcp # (planned)
|
|
14
|
+
|
|
15
|
+
Authentication: zero prompts. We use whatever cloud creds are already on
|
|
16
|
+
the box (`aws configure`, `gcloud auth`, `az login`, env vars). If creds
|
|
17
|
+
are missing, we exit with a clean message — never interactive prompt.
|
|
18
|
+
|
|
19
|
+
State: persisted at .leafmesh-deploy/<provider>.json per project. Add
|
|
20
|
+
that path to .gitignore (the scaffolder already does).
|
|
21
|
+
"""
|
|
22
|
+
from __future__ import annotations
|
|
23
|
+
|
|
24
|
+
import argparse
|
|
25
|
+
import sys
|
|
26
|
+
from pathlib import Path
|
|
27
|
+
|
|
28
|
+
from create_leafmesh import __version__
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
def _bail(msg: str, code: int = 2) -> int:
|
|
32
|
+
print(f"\n Error: {msg}\n", file=sys.stderr)
|
|
33
|
+
return code
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
def main(argv: list[str] | None = None) -> int:
|
|
37
|
+
p = argparse.ArgumentParser(
|
|
38
|
+
prog="leafmesh-deploy",
|
|
39
|
+
description="Deploy a scaffolded LeafMesh mesh to a cloud provider.",
|
|
40
|
+
epilog="""
|
|
41
|
+
examples:
|
|
42
|
+
leafmesh-deploy --plan show what would be created (AWS default)
|
|
43
|
+
leafmesh-deploy --apply build + deploy to AWS
|
|
44
|
+
leafmesh-deploy --destroy tear everything down
|
|
45
|
+
|
|
46
|
+
leafmesh-deploy --provider aws --region eu-west-1 --plan
|
|
47
|
+
leafmesh-deploy --provider azure --subscription-id <sub> \\
|
|
48
|
+
--resource-group leafmesh-prod --location eastus --apply
|
|
49
|
+
|
|
50
|
+
leafmesh-deploy --print-policy print AWS IAM policy
|
|
51
|
+
leafmesh-deploy --print-policy --provider azure print Azure RBAC
|
|
52
|
+
""",
|
|
53
|
+
formatter_class=argparse.RawDescriptionHelpFormatter,
|
|
54
|
+
)
|
|
55
|
+
p.add_argument("--version", action="version",
|
|
56
|
+
version=f"leafmesh-deploy (from create-leafmesh {__version__})")
|
|
57
|
+
|
|
58
|
+
p.add_argument("--provider", default="aws",
|
|
59
|
+
choices=("aws", "azure", "gcp"),
|
|
60
|
+
help="Cloud provider (default: aws).")
|
|
61
|
+
# AWS-specific (also GCP region — resolved per provider below;
|
|
62
|
+
# no argparse default so the state file can win on re-runs)
|
|
63
|
+
p.add_argument("--region", default=None,
|
|
64
|
+
help="Cloud region. Defaults: AWS us-east-1, "
|
|
65
|
+
"GCP us-central1 (NOTE: GCP regions have no "
|
|
66
|
+
"hyphen before the digit — us-east1, not us-east-1).")
|
|
67
|
+
# Azure-specific
|
|
68
|
+
p.add_argument("--subscription-id",
|
|
69
|
+
help="Azure subscription ID. Required for --provider azure "
|
|
70
|
+
"on first apply; subsequent runs read it from state.")
|
|
71
|
+
p.add_argument("--resource-group",
|
|
72
|
+
help="Azure resource group. Required for --provider azure "
|
|
73
|
+
"on first apply; subsequent runs read from state.")
|
|
74
|
+
p.add_argument("--location", default=None,
|
|
75
|
+
help="Azure location (default: eastus, or the value "
|
|
76
|
+
"recorded in state on re-runs). Ignored for AWS/GCP.")
|
|
77
|
+
# GCP-specific
|
|
78
|
+
p.add_argument("--project",
|
|
79
|
+
help="GCP project ID. Required for --provider gcp on first "
|
|
80
|
+
"apply; subsequent runs read it from state.")
|
|
81
|
+
|
|
82
|
+
group = p.add_mutually_exclusive_group(required=True)
|
|
83
|
+
group.add_argument("--plan", action="store_true",
|
|
84
|
+
help="Describe what will be created/updated — no API calls.")
|
|
85
|
+
group.add_argument("--apply", action="store_true",
|
|
86
|
+
help="Make it real — build image, push, deploy.")
|
|
87
|
+
group.add_argument("--destroy", action="store_true",
|
|
88
|
+
help="Tear down everything in the state file.")
|
|
89
|
+
group.add_argument("--print-policy", action="store_true",
|
|
90
|
+
help="Print the IAM policy / RBAC role definition "
|
|
91
|
+
"leafmesh-deploy needs to operate. Pipe to a "
|
|
92
|
+
"file + give to your cloud admin.")
|
|
93
|
+
|
|
94
|
+
args = p.parse_args(argv)
|
|
95
|
+
|
|
96
|
+
# --print-policy is a special case: no project context required,
|
|
97
|
+
# no cloud API calls. Emit JSON to stdout + exit 0.
|
|
98
|
+
if args.print_policy:
|
|
99
|
+
import json as _json
|
|
100
|
+
if args.provider == "aws":
|
|
101
|
+
from create_leafmesh.deploy_providers.aws import DEPLOY_OPERATOR_POLICY
|
|
102
|
+
print(_json.dumps(DEPLOY_OPERATOR_POLICY, indent=2))
|
|
103
|
+
return 0
|
|
104
|
+
if args.provider == "azure":
|
|
105
|
+
from create_leafmesh.deploy_providers.azure import DEPLOY_OPERATOR_RBAC
|
|
106
|
+
print(_json.dumps(DEPLOY_OPERATOR_RBAC, indent=2))
|
|
107
|
+
return 0
|
|
108
|
+
if args.provider == "gcp":
|
|
109
|
+
from create_leafmesh.deploy_providers.gcp import DEPLOY_OPERATOR_POLICY as _GCP_POL
|
|
110
|
+
print(_json.dumps(_GCP_POL, indent=2))
|
|
111
|
+
return 0
|
|
112
|
+
return _bail(f"--print-policy not implemented for provider {args.provider}")
|
|
113
|
+
|
|
114
|
+
# Pre-flight: we expect to be inside a scaffolded project
|
|
115
|
+
if not Path("configs/config.yaml").exists() and not args.destroy:
|
|
116
|
+
return _bail(
|
|
117
|
+
"configs/config.yaml not found — run leafmesh-deploy from inside a "
|
|
118
|
+
"scaffolded LeafMesh project directory."
|
|
119
|
+
)
|
|
120
|
+
|
|
121
|
+
if args.provider == "aws":
|
|
122
|
+
from create_leafmesh.deploy_providers.aws import AWSDeployer
|
|
123
|
+
try:
|
|
124
|
+
aws_d = AWSDeployer(region=args.region or "us-east-1")
|
|
125
|
+
except SystemExit:
|
|
126
|
+
raise
|
|
127
|
+
except Exception as e:
|
|
128
|
+
return _bail(f"failed to init AWS deployer: {type(e).__name__}: {e}")
|
|
129
|
+
|
|
130
|
+
if args.plan: return aws_d.plan()
|
|
131
|
+
if args.apply: return aws_d.apply()
|
|
132
|
+
if args.destroy: return aws_d.destroy()
|
|
133
|
+
|
|
134
|
+
if args.provider == "azure":
|
|
135
|
+
# On first apply we need subscription + RG explicitly. On destroy
|
|
136
|
+
# we can read them from the state file, so they're optional then.
|
|
137
|
+
from create_leafmesh.deploy_providers._shared import load_state, StateFileCorruptError
|
|
138
|
+
try:
|
|
139
|
+
state = load_state("azure")
|
|
140
|
+
except StateFileCorruptError:
|
|
141
|
+
state = {}
|
|
142
|
+
|
|
143
|
+
sub = args.subscription_id or state.get("subscription_id")
|
|
144
|
+
rg = args.resource_group or state.get("resource_group")
|
|
145
|
+
# --location now has NO argparse default, so the state file's
|
|
146
|
+
# recorded location wins on re-runs (split-region bug fix).
|
|
147
|
+
loc = args.location or state.get("location") or "eastus"
|
|
148
|
+
|
|
149
|
+
if not sub or not rg:
|
|
150
|
+
missing = []
|
|
151
|
+
if not sub: missing.append("--subscription-id")
|
|
152
|
+
if not rg: missing.append("--resource-group")
|
|
153
|
+
return _bail(
|
|
154
|
+
f"Azure provider needs {', '.join(missing)} on first apply. "
|
|
155
|
+
f"After that, they're read from .leafmesh-deploy/azure.json."
|
|
156
|
+
)
|
|
157
|
+
|
|
158
|
+
from create_leafmesh.deploy_providers.azure import AzureDeployer
|
|
159
|
+
try:
|
|
160
|
+
az_d = AzureDeployer(subscription_id=sub, resource_group=rg,
|
|
161
|
+
location=loc)
|
|
162
|
+
except SystemExit:
|
|
163
|
+
raise
|
|
164
|
+
except Exception as e:
|
|
165
|
+
return _bail(f"failed to init Azure deployer: {type(e).__name__}: {e}")
|
|
166
|
+
|
|
167
|
+
if args.plan: return az_d.plan()
|
|
168
|
+
if args.apply: return az_d.apply()
|
|
169
|
+
if args.destroy: return az_d.destroy()
|
|
170
|
+
|
|
171
|
+
if args.provider == "gcp":
|
|
172
|
+
from create_leafmesh.deploy_providers._shared import load_state, StateFileCorruptError
|
|
173
|
+
try:
|
|
174
|
+
state = load_state("gcp")
|
|
175
|
+
except StateFileCorruptError:
|
|
176
|
+
state = {}
|
|
177
|
+
|
|
178
|
+
pid = args.project or state.get("project_id")
|
|
179
|
+
# GCP regions are us-central1 / us-east1 (no hyphen before the
|
|
180
|
+
# digit). --region has no argparse default now, so the recorded
|
|
181
|
+
# state region wins on re-runs and the GCP default is actually
|
|
182
|
+
# reachable — previously "us-east-1" (an AWS region) leaked in
|
|
183
|
+
# and every GCP resource path 404'd.
|
|
184
|
+
region = args.region or state.get("region") or "us-central1"
|
|
185
|
+
|
|
186
|
+
if not pid:
|
|
187
|
+
return _bail(
|
|
188
|
+
"GCP provider needs --project on first apply. After that, "
|
|
189
|
+
"it's read from .leafmesh-deploy/gcp.json."
|
|
190
|
+
)
|
|
191
|
+
|
|
192
|
+
from create_leafmesh.deploy_providers.gcp import GCPDeployer
|
|
193
|
+
try:
|
|
194
|
+
gcp_d = GCPDeployer(project_id=pid, region=region)
|
|
195
|
+
except SystemExit:
|
|
196
|
+
raise
|
|
197
|
+
except Exception as e:
|
|
198
|
+
return _bail(f"failed to init GCP deployer: {type(e).__name__}: {e}")
|
|
199
|
+
|
|
200
|
+
if args.plan: return gcp_d.plan()
|
|
201
|
+
if args.apply: return gcp_d.apply()
|
|
202
|
+
if args.destroy: return gcp_d.destroy()
|
|
203
|
+
|
|
204
|
+
return _bail(f"unsupported provider: {args.provider}")
|
|
205
|
+
|
|
206
|
+
|
|
207
|
+
if __name__ == "__main__":
|
|
208
|
+
try:
|
|
209
|
+
sys.exit(main())
|
|
210
|
+
except KeyboardInterrupt:
|
|
211
|
+
print("\n\n Cancelled.\n")
|
|
212
|
+
sys.exit(130) # standard SIGINT exit code — scripts must
|
|
213
|
+
# never read an interrupted apply as success
|
|
@@ -0,0 +1,156 @@
|
|
|
1
|
+
"""Provider-agnostic helpers shared by every cloud deployer.
|
|
2
|
+
|
|
3
|
+
Keep this module *pure*: no boto3, no azure-sdk, no gcloud imports.
|
|
4
|
+
Anything that touches a cloud SDK belongs in the per-provider module
|
|
5
|
+
(`aws.py`, `azure.py`, `gcp.py`). This module is import-cheap so the
|
|
6
|
+
CLI can call into it even when the user hasn't installed the provider
|
|
7
|
+
SDKs.
|
|
8
|
+
"""
|
|
9
|
+
from __future__ import annotations
|
|
10
|
+
|
|
11
|
+
import json
|
|
12
|
+
from pathlib import Path
|
|
13
|
+
from typing import Any
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
# ─────────────────────────────────────────────────────────────────────
|
|
17
|
+
# Environment-variable contract — every provider expects the same
|
|
18
|
+
# config keys in .env.deploy / .env. New keys go here, not in the
|
|
19
|
+
# per-provider module.
|
|
20
|
+
# ─────────────────────────────────────────────────────────────────────
|
|
21
|
+
REQUIRED_ENV_KEYS: tuple[str, ...] = (
|
|
22
|
+
"LEAFMESH_LICENSE_KEY",
|
|
23
|
+
"LEAFMESH_ENV_TOKEN",
|
|
24
|
+
"OPENAI_API_KEY",
|
|
25
|
+
"REDIS_URL",
|
|
26
|
+
)
|
|
27
|
+
|
|
28
|
+
OPTIONAL_ENV_KEYS: tuple[str, ...] = (
|
|
29
|
+
"ANTHROPIC_API_KEY",
|
|
30
|
+
)
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
# ─────────────────────────────────────────────────────────────────────
|
|
34
|
+
# Cosmetics — used by all providers' plan/apply/destroy output
|
|
35
|
+
# ─────────────────────────────────────────────────────────────────────
|
|
36
|
+
GREEN = "\033[32m"
|
|
37
|
+
CYAN = "\033[36m"
|
|
38
|
+
DIM = "\033[2m"
|
|
39
|
+
BOLD = "\033[1m"
|
|
40
|
+
RED = "\033[31m"
|
|
41
|
+
YELLOW = "\033[33m"
|
|
42
|
+
RESET = "\033[0m"
|
|
43
|
+
|
|
44
|
+
|
|
45
|
+
def c(code: str, text: str) -> str:
|
|
46
|
+
"""Wrap text in an ANSI colour."""
|
|
47
|
+
return f"{code}{text}{RESET}"
|
|
48
|
+
|
|
49
|
+
|
|
50
|
+
def step(n: int, total: int, label: str) -> None:
|
|
51
|
+
"""Print a numbered step header (no newline)."""
|
|
52
|
+
print(f" {c(DIM, f'[{n}/{total}]')} {label} ...", end="", flush=True)
|
|
53
|
+
|
|
54
|
+
|
|
55
|
+
def ok(detail: str = "") -> None:
|
|
56
|
+
"""Mark the in-progress step as successful."""
|
|
57
|
+
print(f" {c(GREEN, 'OK')} {c(DIM, detail)}".rstrip())
|
|
58
|
+
|
|
59
|
+
|
|
60
|
+
def fail(msg: str) -> None:
|
|
61
|
+
"""Print a FAIL marker + multi-line message."""
|
|
62
|
+
print(f" {c(RED, 'FAIL')} {msg}")
|
|
63
|
+
|
|
64
|
+
|
|
65
|
+
# ─────────────────────────────────────────────────────────────────────
|
|
66
|
+
# Project introspection — derive the project name + read .env.deploy
|
|
67
|
+
# ─────────────────────────────────────────────────────────────────────
|
|
68
|
+
def project_name() -> str:
|
|
69
|
+
"""Customer's project name = mesh.name from configs/config.yaml,
|
|
70
|
+
falling back to cwd. Lowercased + underscores → hyphens so the
|
|
71
|
+
name is valid in every cloud's resource-naming rules."""
|
|
72
|
+
cfg_path = Path("configs/config.yaml")
|
|
73
|
+
if cfg_path.exists():
|
|
74
|
+
try:
|
|
75
|
+
import yaml
|
|
76
|
+
cfg = yaml.safe_load(cfg_path.read_text())
|
|
77
|
+
name = str(cfg.get("name", "")).strip()
|
|
78
|
+
if name and name != "{{project_name}}":
|
|
79
|
+
return name.lower().replace("_", "-")
|
|
80
|
+
except Exception:
|
|
81
|
+
pass
|
|
82
|
+
return Path.cwd().name.lower().replace("_", "-")
|
|
83
|
+
|
|
84
|
+
|
|
85
|
+
def read_env_deploy() -> dict[str, str]:
|
|
86
|
+
"""Read .env.deploy (preferred) or .env into a flat dict.
|
|
87
|
+
Quotes stripped, comments + blank lines ignored."""
|
|
88
|
+
env_path = Path(".env.deploy")
|
|
89
|
+
if not env_path.exists():
|
|
90
|
+
env_path = Path(".env")
|
|
91
|
+
if not env_path.exists():
|
|
92
|
+
return {}
|
|
93
|
+
out: dict[str, str] = {}
|
|
94
|
+
for line in env_path.read_text().splitlines():
|
|
95
|
+
line = line.strip()
|
|
96
|
+
if not line or line.startswith("#"):
|
|
97
|
+
continue
|
|
98
|
+
if "=" not in line:
|
|
99
|
+
continue
|
|
100
|
+
k, _, v = line.partition("=")
|
|
101
|
+
out[k.strip()] = v.strip().strip("'").strip('"')
|
|
102
|
+
return out
|
|
103
|
+
|
|
104
|
+
|
|
105
|
+
# ─────────────────────────────────────────────────────────────────────
|
|
106
|
+
# State file management — per-provider state at .leafmesh-deploy/{provider}.json
|
|
107
|
+
# ─────────────────────────────────────────────────────────────────────
|
|
108
|
+
STATE_DIR = Path(".leafmesh-deploy")
|
|
109
|
+
|
|
110
|
+
|
|
111
|
+
class StateFileCorruptError(Exception):
|
|
112
|
+
"""Raised when a state file exists but won't parse. Callers must
|
|
113
|
+
distinguish this from "no state file" (which is legitimately {})."""
|
|
114
|
+
|
|
115
|
+
|
|
116
|
+
def state_path(provider: str) -> Path:
|
|
117
|
+
"""Per-provider state file path."""
|
|
118
|
+
return STATE_DIR / f"{provider}.json"
|
|
119
|
+
|
|
120
|
+
|
|
121
|
+
def load_state(provider: str) -> dict[str, Any]:
|
|
122
|
+
"""Return parsed state or {} if absent. Raise StateFileCorruptError
|
|
123
|
+
if the file is present but can't be parsed — destroy + apply must
|
|
124
|
+
refuse to proceed rather than silently treat corruption as 'fresh'."""
|
|
125
|
+
path = state_path(provider)
|
|
126
|
+
if not path.exists():
|
|
127
|
+
return {}
|
|
128
|
+
raw = path.read_text(encoding="utf-8")
|
|
129
|
+
try:
|
|
130
|
+
return json.loads(raw)
|
|
131
|
+
except json.JSONDecodeError as e:
|
|
132
|
+
raise StateFileCorruptError(
|
|
133
|
+
f"State file at {path} is corrupted ({e}). "
|
|
134
|
+
f"Inspect or restore from backup before re-running. "
|
|
135
|
+
f"Resources may still exist in the cloud — DO NOT assume "
|
|
136
|
+
f"a fresh start."
|
|
137
|
+
) from e
|
|
138
|
+
|
|
139
|
+
|
|
140
|
+
def save_state(provider: str, state: dict[str, Any]) -> None:
|
|
141
|
+
"""Atomic write — temp file + os.replace. A crash mid-write must
|
|
142
|
+
never leave a truncated JSON file, because the corrupt-state guard
|
|
143
|
+
would then lock the user out of both apply and destroy."""
|
|
144
|
+
import os
|
|
145
|
+
STATE_DIR.mkdir(parents=True, exist_ok=True)
|
|
146
|
+
target = state_path(provider)
|
|
147
|
+
tmp = target.with_suffix(".json.tmp")
|
|
148
|
+
tmp.write_text(
|
|
149
|
+
json.dumps(state, indent=2, default=str) + "\n", encoding="utf-8",
|
|
150
|
+
)
|
|
151
|
+
os.replace(tmp, target)
|
|
152
|
+
|
|
153
|
+
|
|
154
|
+
def delete_state(provider: str) -> None:
|
|
155
|
+
"""Remove the state file (idempotent)."""
|
|
156
|
+
state_path(provider).unlink(missing_ok=True)
|