create-leafmesh 2.5.2__tar.gz → 2.6.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- create_leafmesh-2.6.0/PKG-INFO +94 -0
- create_leafmesh-2.6.0/create_leafmesh/__init__.py +3 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/_inspire/validate_config.py +221 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/_registry.yaml +498 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/ai-dev-squad/PRD.md +318 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/ai-dev-squad/README.md +127 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/ai-dev-squad/agency/__init__.py +1 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/ai-dev-squad/agency/_shared/__init__.py +1 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/ai-dev-squad/agency/_shared/session_stash.py +45 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/ai-dev-squad/agency/_shared/store.py +218 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/ai-dev-squad/agency/code_reviewer_agent.py +92 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/ai-dev-squad/agency/dev_planner_agent.py +178 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/ai-dev-squad/agency/developer_agent.py +83 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/ai-dev-squad/agency/merge_coordinator_agent.py +66 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/ai-dev-squad/agency/product_owner_agent.py +105 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/ai-dev-squad/agency/qa_agent.py +160 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/ai-dev-squad/agency/tools/__init__.py +1 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/ai-dev-squad/agency/tools/tools.py +50 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/ai-dev-squad/configs/config.yaml +572 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/ai-dev-squad/env +30 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/ai-dev-squad/gitignore +17 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/ai-dev-squad/logs/leafmesh_2026-06-23.log +18 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/ai-dev-squad/main.py +55 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/ai-dev-squad/tests/conftest.py +12 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/ai-dev-squad/tests/test_config_shape.py +64 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/ai-dev-squad/validate_config.py +221 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/bd-proposals/PRD.md +242 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/bd-proposals/README.md +158 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/bd-proposals/_prompts.json +67 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/bd-proposals/agency/__pycache__/__init__.cpython-314.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/bd-proposals/agency/__pycache__/bid_no_bid_decisioner_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/bd-proposals/agency/__pycache__/competitive_intel_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/bd-proposals/agency/__pycache__/contracts_review_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/bd-proposals/agency/__pycache__/precedent_research_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/bd-proposals/agency/__pycache__/pricing_configurator_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/bd-proposals/agency/__pycache__/rfp_intake_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/bd-proposals/agency/_shared/__pycache__/__init__.cpython-314.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/bd-proposals/agency/_shared/__pycache__/store.cpython-314.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/bd-proposals/agency/_shared/audit_logger.py +152 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/bd-proposals/agency/_shared/session_stash.py +42 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/bd-proposals/agency/_shared/store.py +366 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/bd-proposals/agency/bid_no_bid_decisioner_agent.py +194 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/bd-proposals/agency/competitive_intel_agent.py +123 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/bd-proposals/agency/contracts_review_agent.py +227 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/bd-proposals/agency/precedent_research_agent.py +195 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/bd-proposals/agency/pricing_configurator_agent.py +229 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/bd-proposals/agency/rfp_intake_agent.py +178 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/bd-proposals/configs/config.yaml +1082 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/bd-proposals/env +25 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/bd-proposals/gitignore +16 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/bd-proposals/logs/leafmesh_2026-06-23.log +43 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/bd-proposals/tests/__pycache__/test_config_shape.cpython-314-pytest-9.0.2.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/bd-proposals/tests/__pycache__/test_floors.cpython-314-pytest-9.0.2.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/bd-proposals/tests/test_config_shape.py +173 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/bd-proposals/tests/test_floors.py +240 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/bd-proposals/validate_config.py +221 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/bench-management/PRD.md +203 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/bench-management/README.md +143 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/bench-management/agency/__pycache__/__init__.cpython-313.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/bench-management/agency/__pycache__/esat_survey_agent.cpython-313.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/bench-management/agency/__pycache__/esat_survey_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/bench-management/agency/__pycache__/staffing_coordinator_agent.cpython-313.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/bench-management/agency/__pycache__/staffing_coordinator_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/bench-management/agency/__pycache__/talent_development_agent.cpython-313.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/bench-management/agency/__pycache__/talent_development_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/bench-management/agency/__pycache__/workforce_analytics_agent.cpython-313.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/bench-management/agency/__pycache__/workforce_analytics_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/bench-management/agency/_shared/__pycache__/__init__.cpython-313.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/bench-management/agency/_shared/__pycache__/__init__.cpython-314.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/bench-management/agency/_shared/__pycache__/audit_logger.cpython-313.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/bench-management/agency/_shared/__pycache__/store.cpython-313.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/bench-management/agency/_shared/__pycache__/store.cpython-314.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/bench-management/agency/_shared/store.py +343 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/bench-management/agency/staffing_coordinator_agent.py +147 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/bench-management/agency/talent_development_agent.py +157 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/bench-management/agency/workforce_analytics_agent.py +239 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/bench-management/configs/config.yaml +921 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/bench-management/env +28 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/bench-management/gitignore +16 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/bench-management/logs/leafmesh_2026-06-23.log +10 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/bench-management/main.py +61 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/bench-management/tests/__pycache__/conftest.cpython-314-pytest-9.0.2.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/bench-management/tests/__pycache__/test_agent_logic.cpython-314-pytest-9.0.2.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/bench-management/tests/__pycache__/test_config_shape.cpython-314-pytest-9.0.2.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/bench-management/tests/test_agent_logic.py +243 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/bench-management/tests/test_config_shape.py +102 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/bench-management/validate_config.py +221 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/claude_skills/leafmesh/SKILL.md +3089 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/claude_skills/leafmesh/agency-development.md +270 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/claude_skills/leafmesh/agent-config-fields.md +1846 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/customer-success/PRD.md +225 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/customer-success/README.md +293 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/customer-success/agency/__pycache__/__init__.cpython-314.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/customer-success/agency/__pycache__/health_score_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/customer-success/agency/__pycache__/renewals_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/customer-success/agency/__pycache__/risk_detector_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/customer-success/agency/__pycache__/save_play_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/customer-success/agency/_shared/__pycache__/__init__.cpython-314.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/customer-success/agency/_shared/__pycache__/extract.cpython-314.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/customer-success/agency/_shared/__pycache__/health_math.cpython-314.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/customer-success/agency/_shared/__pycache__/session_stash.cpython-314.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/customer-success/agency/_shared/__pycache__/store.cpython-314.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/customer-success/agency/_shared/extract.py +68 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/customer-success/agency/_shared/health_math.py +133 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/customer-success/agency/_shared/session_stash.py +46 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/customer-success/agency/_shared/store.py +355 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/customer-success/agency/account_intel_agent.py +117 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/customer-success/agency/health_score_agent.py +108 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/customer-success/agency/renewals_agent.py +149 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/customer-success/agency/risk_detector_agent.py +126 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/customer-success/agency/save_play_agent.py +157 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/customer-success/configs/config.yaml +1640 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/customer-success/env +33 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/customer-success/gitignore +16 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/customer-success/logs/leafmesh_2026-06-23.log +18 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/customer-success/main.py +131 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/customer-success/tests/__pycache__/test_agent_logic.cpython-314-pytest-9.0.2.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/customer-success/tests/__pycache__/test_config_shape.cpython-314-pytest-9.0.2.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/customer-success/tests/test_agent_logic.py +305 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/customer-success/validate_config.py +221 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/customer-support/PRD.md +224 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/customer-support/README.md +95 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/customer-support/configs/config.yaml +1173 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/customer-support/validate_config.py +221 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/finance-ops/PRD.md +393 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/finance-ops/README.md +279 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/finance-ops/agency/__init__.py +20 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/finance-ops/agency/__pycache__/__init__.cpython-314.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/finance-ops/agency/__pycache__/erp_poster_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/finance-ops/agency/__pycache__/gl_coding_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/finance-ops/agency/__pycache__/invoice_intake_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/finance-ops/agency/__pycache__/matching_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/finance-ops/agency/__pycache__/payment_risk_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/finance-ops/agency/__pycache__/regulatory_monitor_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/finance-ops/agency/__pycache__/vendor_compliance_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/finance-ops/agency/_shared/__pycache__/compliance_screen.cpython-314.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/finance-ops/agency/_shared/__pycache__/dedupe.cpython-314.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/finance-ops/agency/_shared/__pycache__/erp_poster.cpython-314.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/finance-ops/agency/_shared/__pycache__/matching_math.cpython-314.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/finance-ops/agency/_shared/__pycache__/session_stash.cpython-314.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/finance-ops/agency/_shared/__pycache__/store.cpython-314.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/finance-ops/agency/_shared/compliance_screen.py +109 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/finance-ops/agency/_shared/dedupe.py +88 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/finance-ops/agency/_shared/matching_math.py +145 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/finance-ops/agency/_shared/store.py +362 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/finance-ops/agency/erp_poster_agent.py +98 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/finance-ops/agency/gl_coding_agent.py +183 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/finance-ops/agency/invoice_intake_agent.py +240 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/finance-ops/agency/matching_agent.py +159 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/finance-ops/agency/payment_risk_agent.py +251 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/finance-ops/agency/regulatory_monitor_agent.py +101 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/finance-ops/agency/vendor_compliance_agent.py +240 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/finance-ops/configs/config.yaml +1711 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/finance-ops/env +77 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/finance-ops/gitignore +16 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/finance-ops/logs/leafmesh_2026-06-23.log +26 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/finance-ops/main.py +171 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/finance-ops/tests/__pycache__/conftest.cpython-314-pytest-9.0.2.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/finance-ops/tests/__pycache__/test_agent_logic.cpython-314-pytest-9.0.2.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/finance-ops/tests/__pycache__/test_config_shape.cpython-314-pytest-9.0.2.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/finance-ops/tests/__pycache__/test_floors.cpython-314-pytest-9.0.2.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/finance-ops/tests/conftest.py +42 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/finance-ops/tests/test_agent_logic.py +213 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/finance-ops/tests/test_floors.py +364 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/finance-ops/validate_config.py +221 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/infra-cost-ops/PRD.md +196 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/infra-cost-ops/README.md +148 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/infra-cost-ops/agency/__pycache__/__init__.cpython-313.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/infra-cost-ops/agency/__pycache__/__init__.cpython-314.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/infra-cost-ops/agency/__pycache__/commitments_agent.cpython-313.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/infra-cost-ops/agency/__pycache__/commitments_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/infra-cost-ops/agency/__pycache__/cost_anomaly_agent.cpython-313.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/infra-cost-ops/agency/__pycache__/cost_anomaly_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/infra-cost-ops/agency/__pycache__/cost_tuner_agent.cpython-313.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/infra-cost-ops/agency/__pycache__/cost_tuner_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/infra-cost-ops/agency/__pycache__/finops_governance_agent.cpython-313.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/infra-cost-ops/agency/__pycache__/finops_governance_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/infra-cost-ops/agency/__pycache__/iac_drift_agent.cpython-313.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/infra-cost-ops/agency/__pycache__/iac_drift_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/infra-cost-ops/agency/__pycache__/regulatory_monitor_agent.cpython-313.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/infra-cost-ops/agency/__pycache__/regulatory_monitor_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/infra-cost-ops/agency/_shared/__pycache__/__init__.cpython-313.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/infra-cost-ops/agency/_shared/__pycache__/__init__.cpython-314.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/infra-cost-ops/agency/_shared/__pycache__/audit_logger.cpython-313.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/infra-cost-ops/agency/_shared/__pycache__/session_stash.cpython-313.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/infra-cost-ops/agency/_shared/__pycache__/session_stash.cpython-314.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/infra-cost-ops/agency/_shared/__pycache__/store.cpython-313.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/infra-cost-ops/agency/_shared/__pycache__/store.cpython-314.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/infra-cost-ops/agency/_shared/session_stash.py +81 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/infra-cost-ops/agency/_shared/store.py +408 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/infra-cost-ops/agency/commitments_agent.py +222 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/infra-cost-ops/agency/cost_anomaly_agent.py +262 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/infra-cost-ops/agency/cost_tuner_agent.py +101 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/infra-cost-ops/agency/finops_governance_agent.py +135 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/infra-cost-ops/agency/iac_drift_agent.py +152 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/infra-cost-ops/agency/regulatory_monitor_agent.py +199 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/infra-cost-ops/configs/config.yaml +746 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/infra-cost-ops/env +22 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/infra-cost-ops/gitignore +18 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/infra-cost-ops/logs/leafmesh_2026-06-23.log +22 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/infra-cost-ops/tests/__pycache__/test_agent_logic.cpython-314-pytest-9.0.2.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/infra-cost-ops/tests/__pycache__/test_config_shape.cpython-314-pytest-9.0.2.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/infra-cost-ops/tests/test_agent_logic.py +313 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/infra-cost-ops/tests/test_config_shape.py +106 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/infra-cost-ops/validate_config.py +221 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/logs/leafmesh_2026-06-23.log +82 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/marketing-ops/PRD.md +252 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/marketing-ops/README.md +331 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/marketing-ops/agency/__pycache__/__init__.cpython-313.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/marketing-ops/agency/__pycache__/__init__.cpython-314.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/marketing-ops/agency/__pycache__/brand_guardian_agent.cpython-313.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/marketing-ops/agency/__pycache__/brand_guardian_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/marketing-ops/agency/__pycache__/campaign_strategist_agent.cpython-313.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/marketing-ops/agency/__pycache__/campaign_strategist_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/marketing-ops/agency/__pycache__/compliance_reviewer_agent.cpython-313.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/marketing-ops/agency/__pycache__/compliance_reviewer_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/marketing-ops/agency/__pycache__/copywriter_agent.cpython-313.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/marketing-ops/agency/__pycache__/copywriter_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/marketing-ops/agency/__pycache__/market_intelligence_agent.cpython-313.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/marketing-ops/agency/__pycache__/market_intelligence_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/marketing-ops/agency/__pycache__/marketing_audit_logger_agent.cpython-313.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/marketing-ops/agency/__pycache__/publisher_agent.cpython-313.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/marketing-ops/agency/__pycache__/publisher_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/marketing-ops/agency/_shared/__pycache__/__init__.cpython-313.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/marketing-ops/agency/_shared/__pycache__/__init__.cpython-314.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/marketing-ops/agency/_shared/__pycache__/audit_logger.cpython-313.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/marketing-ops/agency/_shared/__pycache__/session_stash.cpython-313.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/marketing-ops/agency/_shared/__pycache__/session_stash.cpython-314.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/marketing-ops/agency/_shared/__pycache__/store.cpython-313.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/marketing-ops/agency/_shared/__pycache__/store.cpython-314.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/marketing-ops/agency/_shared/session_stash.py +53 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/marketing-ops/agency/_shared/store.py +246 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/marketing-ops/agency/brand_guardian_agent.py +147 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/marketing-ops/agency/campaign_strategist_agent.py +227 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/marketing-ops/agency/compliance_reviewer_agent.py +211 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/marketing-ops/agency/copywriter_agent.py +108 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/marketing-ops/agency/market_intelligence_agent.py +142 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/marketing-ops/agency/marketing_audit_logger_agent.py +110 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/marketing-ops/configs/config.yaml +1171 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/marketing-ops/env +29 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/marketing-ops/gitignore +16 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/marketing-ops/logs/leafmesh_2026-06-23.log +38 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/marketing-ops/tests/__pycache__/conftest.cpython-314-pytest-9.0.2.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/marketing-ops/tests/__pycache__/test_agent_logic.cpython-314-pytest-9.0.2.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/marketing-ops/tests/__pycache__/test_config_shape.cpython-314-pytest-9.0.2.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/marketing-ops/tests/test_agent_logic.py +324 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/marketing-ops/tests/test_config_shape.py +273 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/marketing-ops/validate_config.py +221 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/outbound-sdr/PRD.md +416 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/outbound-sdr/README.md +145 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/outbound-sdr/agency/__init__.py +1 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/outbound-sdr/agency/_shared/__init__.py +1 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/outbound-sdr/agency/_shared/session_stash.py +47 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/outbound-sdr/agency/_shared/store.py +159 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/outbound-sdr/agency/campaign_launcher_agent.py +119 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/outbound-sdr/agency/campaign_strategist_agent.py +210 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/outbound-sdr/agency/gtm_strategist_agent.py +210 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/outbound-sdr/agency/inbox_monitor_agent.py +96 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/outbound-sdr/agency/meeting_scheduler_agent.py +108 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/outbound-sdr/agency/offer_architect_agent.py +200 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/outbound-sdr/agency/outreach_writer_agent.py +180 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/outbound-sdr/agency/prospector_agent.py +175 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/outbound-sdr/agency/records_keeper_agent.py +86 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/outbound-sdr/agency/reply_triager_agent.py +156 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/outbound-sdr/agency/tools/__init__.py +1 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/outbound-sdr/agency/tools/tools.py +145 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/outbound-sdr/configs/config.yaml +647 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/outbound-sdr/env +30 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/outbound-sdr/gitignore +16 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/outbound-sdr/main.py +69 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/outbound-sdr/tests/conftest.py +23 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/outbound-sdr/tests/test_config_shape.py +66 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/outbound-sdr/validate_config.py +221 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/predictive-maintenance/PRD.md +216 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/predictive-maintenance/README.md +175 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/predictive-maintenance/agency/__pycache__/equipment_lifecycle_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/predictive-maintenance/agency/__pycache__/failure_predictor_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/predictive-maintenance/agency/__pycache__/safety_incident_reporter_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/predictive-maintenance/agency/__pycache__/spare_parts_forecaster_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/predictive-maintenance/agency/__pycache__/work_order_scheduler_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/predictive-maintenance/agency/_shared/__pycache__/__init__.cpython-314.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/predictive-maintenance/agency/_shared/__pycache__/store.cpython-314.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/predictive-maintenance/agency/_shared/session_stash.py +47 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/predictive-maintenance/agency/_shared/store.py +400 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/predictive-maintenance/agency/equipment_lifecycle_agent.py +177 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/predictive-maintenance/agency/failure_predictor_agent.py +181 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/predictive-maintenance/agency/safety_incident_reporter_agent.py +223 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/predictive-maintenance/agency/spare_parts_forecaster_agent.py +160 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/predictive-maintenance/agency/work_order_scheduler_agent.py +222 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/predictive-maintenance/configs/config.yaml +775 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/predictive-maintenance/env +20 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/predictive-maintenance/examples/02_anomaly_failure_predicted.json +17 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/predictive-maintenance/logs/leafmesh_2026-06-23.log +750 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/predictive-maintenance/tests/__pycache__/test_agent_logic.cpython-314-pytest-9.0.2.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/predictive-maintenance/tests/__pycache__/test_config_shape.cpython-314-pytest-9.0.2.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/predictive-maintenance/tests/test_agent_logic.py +469 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/predictive-maintenance/tests/test_config_shape.py +164 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/predictive-maintenance/validate_config.py +221 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/procurement-ops/PRD.md +232 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/procurement-ops/README.md +223 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/procurement-ops/agency/__pycache__/__init__.cpython-313.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/procurement-ops/agency/__pycache__/data_loader.cpython-313.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/procurement-ops/agency/__pycache__/grn_agent.cpython-313.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/procurement-ops/agency/__pycache__/inventory_agent.cpython-313.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/procurement-ops/agency/__pycache__/inventory_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/procurement-ops/agency/__pycache__/logistics_agent.cpython-313.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/procurement-ops/agency/__pycache__/order_intake_agent.cpython-313.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/procurement-ops/agency/__pycache__/order_intake_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/procurement-ops/agency/__pycache__/purchase_order_agent.cpython-313.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/procurement-ops/agency/__pycache__/purchase_order_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/procurement-ops/agency/__pycache__/supplier_agent.cpython-313.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/procurement-ops/agency/__pycache__/supply_report_agent.cpython-313.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/procurement-ops/agency/__pycache__/tariff_classifier_agent.cpython-313.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/procurement-ops/agency/__pycache__/tariff_classifier_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/procurement-ops/agency/__pycache__/tools.cpython-313.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/procurement-ops/agency/__pycache__/tools.cpython-314.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/procurement-ops/agency/__pycache__/trade_compliance_agent.cpython-313.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/procurement-ops/agency/__pycache__/trade_compliance_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/procurement-ops/agency/_shared/__pycache__/__init__.cpython-313.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/procurement-ops/agency/_shared/__pycache__/__init__.cpython-314.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/procurement-ops/agency/_shared/__pycache__/session_stash.cpython-313.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/procurement-ops/agency/_shared/__pycache__/session_stash.cpython-314.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/procurement-ops/agency/inventory_agent.py +409 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/procurement-ops/agency/order_intake_agent.py +324 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/procurement-ops/agency/purchase_order_agent.py +497 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/procurement-ops/agency/tariff_classifier_agent.py +256 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/procurement-ops/agency/tools.py +148 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/procurement-ops/agency/trade_compliance_agent.py +263 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/procurement-ops/configs/config.yaml +526 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/procurement-ops/env +33 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/procurement-ops/logs/leafmesh_2026-06-23.log +12 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/procurement-ops/tests/__pycache__/test_chain_floors.cpython-314-pytest-9.0.2.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/procurement-ops/tests/test_chain_floors.py +149 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/procurement-ops/validate_config.py +221 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/production-planning/PRD.md +189 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/production-planning/README.md +206 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/production-planning/agency/__pycache__/__init__.cpython-313.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/production-planning/agency/__pycache__/constraint_flagger_agent.cpython-313.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/production-planning/agency/__pycache__/constraint_flagger_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/production-planning/agency/__pycache__/demand_sensor_agent.cpython-313.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/production-planning/agency/__pycache__/release_agent.cpython-313.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/production-planning/agency/__pycache__/scheduler_agent.cpython-313.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/production-planning/agency/__pycache__/supplier_signal_agent.cpython-313.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/production-planning/agency/__pycache__/supplier_signal_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/production-planning/agency/_shared/__pycache__/__init__.cpython-313.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/production-planning/agency/_shared/__pycache__/__init__.cpython-314.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/production-planning/agency/_shared/__pycache__/audit_logger.cpython-313.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/production-planning/agency/_shared/__pycache__/session_stash.cpython-313.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/production-planning/agency/_shared/__pycache__/session_stash.cpython-314.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/production-planning/agency/_shared/__pycache__/store.cpython-313.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/production-planning/agency/_shared/__pycache__/store.cpython-314.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/production-planning/agency/_shared/audit_logger.py +152 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/production-planning/agency/_shared/session_stash.py +53 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/production-planning/agency/_shared/store.py +230 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/production-planning/agency/constraint_flagger_agent.py +188 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/production-planning/agency/demand_sensor_agent.py +49 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/production-planning/agency/scheduler_agent.py +81 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/production-planning/agency/supplier_signal_agent.py +118 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/production-planning/configs/config.yaml +823 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/production-planning/env +21 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/production-planning/gitignore +16 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/production-planning/logs/leafmesh_2026-06-23.log +22 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/production-planning/main.py +74 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/production-planning/tests/__pycache__/conftest.cpython-314-pytest-9.0.2.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/production-planning/tests/__pycache__/test_agent_logic.cpython-314-pytest-9.0.2.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/production-planning/tests/__pycache__/test_config_shape.cpython-314-pytest-9.0.2.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/production-planning/tests/conftest.py +37 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/production-planning/tests/test_agent_logic.py +156 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/production-planning/tests/test_config_shape.py +140 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/production-planning/validate_config.py +221 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/quality-yield/PRD.md +182 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/quality-yield/README.md +181 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/quality-yield/agency/__init__.py +27 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/quality-yield/agency/__pycache__/__init__.cpython-314.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/quality-yield/agency/__pycache__/inspection_intake_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/quality-yield/agency/__pycache__/quality_engineer_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/quality-yield/agency/__pycache__/recall_traceability_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/quality-yield/agency/__pycache__/regulatory_compliance_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/quality-yield/agency/__pycache__/spc_monitor_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/quality-yield/agency/_shared/__pycache__/__init__.cpython-314.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/quality-yield/agency/_shared/__pycache__/batch_release.cpython-314.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/quality-yield/agency/_shared/__pycache__/defect_scoring.cpython-314.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/quality-yield/agency/_shared/__pycache__/spc_math.cpython-314.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/quality-yield/agency/_shared/__pycache__/store.cpython-314.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/quality-yield/agency/_shared/batch_release.py +97 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/quality-yield/agency/_shared/defect_scoring.py +109 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/quality-yield/agency/_shared/session_stash.py +60 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/quality-yield/agency/_shared/spc_math.py +73 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/quality-yield/agency/_shared/store.py +374 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/quality-yield/agency/inspection_intake_agent.py +196 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/quality-yield/agency/quality_engineer_agent.py +183 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/quality-yield/agency/recall_traceability_agent.py +213 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/quality-yield/agency/regulatory_compliance_agent.py +216 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/quality-yield/agency/spc_monitor_agent.py +153 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/quality-yield/configs/config.yaml +859 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/quality-yield/env +27 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/quality-yield/logs/leafmesh_2026-06-23.log +94 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/quality-yield/tests/__pycache__/test_agent_logic.cpython-314-pytest-9.0.2.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/quality-yield/tests/__pycache__/test_config_shape.cpython-314-pytest-9.0.2.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/quality-yield/tests/test_agent_logic.py +305 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/quality-yield/tests/test_config_shape.py +150 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/quality-yield/validate_config.py +221 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/quote-to-cash/PRD.md +257 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/quote-to-cash/README.md +143 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/quote-to-cash/agency/__pycache__/__init__.cpython-314.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/quote-to-cash/agency/__pycache__/cost_calculator_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/quote-to-cash/agency/__pycache__/deal_compliance_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/quote-to-cash/agency/__pycache__/discount_policy_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/quote-to-cash/agency/__pycache__/quote_drafter_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/quote-to-cash/agency/_shared/__pycache__/__init__.cpython-314.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/quote-to-cash/agency/_shared/__pycache__/session_stash.cpython-314.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/quote-to-cash/agency/_shared/__pycache__/store.cpython-314.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/quote-to-cash/agency/_shared/store.py +222 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/quote-to-cash/agency/cost_calculator_agent.py +175 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/quote-to-cash/agency/deal_compliance_agent.py +161 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/quote-to-cash/agency/discount_policy_agent.py +263 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/quote-to-cash/agency/quote_drafter_agent.py +149 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/quote-to-cash/agency/rfq_ingester_agent.py +213 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/quote-to-cash/configs/config.yaml +925 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/quote-to-cash/env +37 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/quote-to-cash/logs/leafmesh_2026-06-23.log +14 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/quote-to-cash/tests/__pycache__/test_agent_logic.cpython-314-pytest-9.0.2.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/quote-to-cash/tests/__pycache__/test_config_shape.cpython-314-pytest-9.0.2.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/quote-to-cash/tests/__pycache__/test_floors.cpython-314-pytest-9.0.2.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/quote-to-cash/tests/test_agent_logic.py +78 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/quote-to-cash/tests/test_config_shape.py +160 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/quote-to-cash/tests/test_floors.py +192 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/quote-to-cash/validate_config.py +221 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/recruiting-ops/PRD.md +349 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/recruiting-ops/README.md +174 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/recruiting-ops/agency/__pycache__/bias_audit_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/recruiting-ops/agency/__pycache__/correspondence_drafter_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/recruiting-ops/agency/__pycache__/hiring_assistant_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/recruiting-ops/agency/__pycache__/interview_coordinator_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/recruiting-ops/agency/__pycache__/resume_screener_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/recruiting-ops/agency/_shared/__pycache__/__init__.cpython-314.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/recruiting-ops/agency/_shared/__pycache__/session_stash.cpython-314.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/recruiting-ops/agency/_shared/__pycache__/store.cpython-314.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/recruiting-ops/agency/_shared/session_stash.py +44 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/recruiting-ops/agency/_shared/store.py +239 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/recruiting-ops/agency/correspondence_drafter_agent.py +198 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/recruiting-ops/agency/hiring_assistant_agent.py +153 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/recruiting-ops/agency/interview_coordinator_agent.py +151 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/recruiting-ops/agency/req_intake_agent.py +155 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/recruiting-ops/agency/resume_screener_agent.py +151 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/recruiting-ops/configs/config.yaml +1004 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/recruiting-ops/env +27 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/recruiting-ops/gitignore +16 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/recruiting-ops/logs/leafmesh_2026-06-23.log +16 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/recruiting-ops/tests/__pycache__/test_agent_logic.cpython-314-pytest-9.0.2.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/recruiting-ops/tests/__pycache__/test_config_shape.cpython-314-pytest-9.0.2.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/recruiting-ops/tests/test_agent_logic.py +279 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/recruiting-ops/tests/test_config_shape.py +123 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/recruiting-ops/validate_config.py +221 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/sales-orchestration/PRD.md +174 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/sales-orchestration/README.md +187 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/sales-orchestration/agency/__pycache__/__init__.cpython-313.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/sales-orchestration/agency/__pycache__/__init__.cpython-314.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/sales-orchestration/agency/__pycache__/lead_intake_agent.cpython-313.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/sales-orchestration/agency/__pycache__/lead_intake_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/sales-orchestration/agency/__pycache__/lead_qualification_agent.cpython-313.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/sales-orchestration/agency/__pycache__/lead_qualification_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/sales-orchestration/agency/__pycache__/lead_revival_agent.cpython-313.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/sales-orchestration/agency/__pycache__/lead_revival_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/sales-orchestration/agency/__pycache__/sales_research_agent.cpython-313.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/sales-orchestration/agency/__pycache__/sales_research_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/sales-orchestration/agency/_shared/__pycache__/__init__.cpython-313.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/sales-orchestration/agency/_shared/__pycache__/__init__.cpython-314.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/sales-orchestration/agency/_shared/__pycache__/audit_logger.cpython-313.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/sales-orchestration/agency/_shared/__pycache__/session_stash.cpython-313.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/sales-orchestration/agency/_shared/__pycache__/session_stash.cpython-314.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/sales-orchestration/agency/_shared/__pycache__/store.cpython-313.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/sales-orchestration/agency/_shared/__pycache__/store.cpython-314.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/sales-orchestration/agency/_shared/__pycache__/util.cpython-313.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/sales-orchestration/agency/_shared/__pycache__/util.cpython-314.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/sales-orchestration/agency/_shared/session_stash.py +54 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/sales-orchestration/agency/_shared/store.py +349 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/sales-orchestration/agency/_shared/util.py +61 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/sales-orchestration/agency/lead_intake_agent.py +121 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/sales-orchestration/agency/lead_qualification_agent.py +221 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/sales-orchestration/agency/lead_revival_agent.py +88 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/sales-orchestration/agency/sales_research_agent.py +126 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/sales-orchestration/configs/config.yaml +1027 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/sales-orchestration/docker-compose.yml +34 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/sales-orchestration/gitignore +16 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/sales-orchestration/logs/leafmesh_2026-06-23.log +65 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/sales-orchestration/tests/__pycache__/conftest.cpython-314-pytest-9.0.2.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/sales-orchestration/tests/__pycache__/test_agent_logic.cpython-314-pytest-9.0.2.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/sales-orchestration/tests/__pycache__/test_config_shape.cpython-314-pytest-9.0.2.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/sales-orchestration/tests/test_agent_logic.py +214 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/sales-orchestration/tests/test_config_shape.py +95 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/sales-orchestration/validate_config.py +221 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/services-delivery/PRD.md +194 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/services-delivery/README.md +237 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/services-delivery/agency/__pycache__/__init__.cpython-314.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/services-delivery/agency/__pycache__/citation_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/services-delivery/agency/__pycache__/consultant_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/services-delivery/agency/__pycache__/context_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/services-delivery/agency/__pycache__/engagement_status_drafter_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/services-delivery/agency/__pycache__/qa_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/services-delivery/agency/_shared/__pycache__/__init__.cpython-314.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/services-delivery/agency/_shared/__pycache__/session_stash.cpython-314.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/services-delivery/agency/_shared/__pycache__/store.cpython-314.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/services-delivery/agency/_shared/session_stash.py +53 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/services-delivery/agency/_shared/store.py +220 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/services-delivery/agency/brief_intake_agent.py +153 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/services-delivery/agency/citation_agent.py +81 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/services-delivery/agency/consultant_agent.py +177 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/services-delivery/agency/context_agent.py +113 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/services-delivery/agency/engagement_controller_agent.py +175 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/services-delivery/agency/engagement_status_drafter_agent.py +96 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/services-delivery/agency/performance_review_agent.py +196 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/services-delivery/agency/qa_agent.py +226 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/services-delivery/agency/research_agent.py +81 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/services-delivery/configs/config.yaml +1646 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/services-delivery/env +39 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/services-delivery/examples/01_new_engagement_memo.json +15 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/services-delivery/gitignore +16 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/services-delivery/logs/leafmesh_2026-06-23.log +193 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/services-delivery/tests/__init__.py +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/services-delivery/tests/__pycache__/test_agent_logic.cpython-314-pytest-9.0.2.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/services-delivery/tests/__pycache__/test_config_shape.cpython-314-pytest-9.0.2.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/services-delivery/tests/test_agent_logic.py +322 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/services-delivery/tests/test_config_shape.py +314 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/services-delivery/validate_config.py +221 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/starter/docker-compose.yml +34 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/starter/tests/__init__.py +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/starter/validate_config.py +221 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/warehouse-supply-chain/Dockerfile +9 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/warehouse-supply-chain/PRD.md +208 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/warehouse-supply-chain/README.md +224 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/warehouse-supply-chain/agency/__pycache__/__init__.cpython-314.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/warehouse-supply-chain/agency/__pycache__/allocation_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/warehouse-supply-chain/agency/__pycache__/carrier_selector_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/warehouse-supply-chain/agency/__pycache__/exception_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/warehouse-supply-chain/agency/__pycache__/inspection_humanoid.cpython-314.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/warehouse-supply-chain/agency/__pycache__/inventory_control_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/warehouse-supply-chain/agency/__pycache__/loader_humanoid.cpython-314.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/warehouse-supply-chain/agency/__pycache__/packer_humanoid.cpython-314.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/warehouse-supply-chain/agency/__pycache__/picker_humanoid.cpython-314.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/warehouse-supply-chain/agency/__pycache__/supplier_relations_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/warehouse-supply-chain/agency/_shared/__pycache__/__init__.cpython-314.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/warehouse-supply-chain/agency/_shared/__pycache__/allocation_math.cpython-314.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/warehouse-supply-chain/agency/_shared/__pycache__/carrier_math.cpython-314.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/warehouse-supply-chain/agency/_shared/__pycache__/session_stash.cpython-314.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/warehouse-supply-chain/agency/_shared/__pycache__/shrink_math.cpython-314.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/warehouse-supply-chain/agency/_shared/__pycache__/store.cpython-314.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/warehouse-supply-chain/agency/_shared/allocation_math.py +82 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/warehouse-supply-chain/agency/_shared/carrier_math.py +62 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/warehouse-supply-chain/agency/_shared/session_stash.py +87 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/warehouse-supply-chain/agency/_shared/shrink_math.py +96 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/warehouse-supply-chain/agency/_shared/store.py +420 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/warehouse-supply-chain/agency/allocation_agent.py +145 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/warehouse-supply-chain/agency/carrier_selector_agent.py +105 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/warehouse-supply-chain/agency/exception_agent.py +192 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/warehouse-supply-chain/agency/humanoid_status_agent.py +28 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/warehouse-supply-chain/agency/inventory_control_agent.py +107 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/warehouse-supply-chain/agency/loader_humanoid.py +38 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/warehouse-supply-chain/agency/packer_humanoid.py +68 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/warehouse-supply-chain/agency/picker_humanoid.py +99 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/warehouse-supply-chain/agency/supplier_relations_agent.py +145 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/warehouse-supply-chain/configs/config.yaml +1012 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/warehouse-supply-chain/dockerignore +13 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/warehouse-supply-chain/env +33 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/warehouse-supply-chain/examples/01_routine_order.json +24 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/warehouse-supply-chain/examples/02_short_pick_exception.json +20 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/warehouse-supply-chain/gitignore +16 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/warehouse-supply-chain/logs/leafmesh_2026-06-23.log +312 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/warehouse-supply-chain/main.py +73 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/warehouse-supply-chain/pytest.ini +5 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/warehouse-supply-chain/requirements.txt +6 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/warehouse-supply-chain/tests/__init__.py +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/warehouse-supply-chain/tests/__pycache__/conftest.cpython-314-pytest-9.0.2.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/warehouse-supply-chain/tests/__pycache__/test_agent_logic.cpython-314-pytest-9.0.2.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/warehouse-supply-chain/tests/__pycache__/test_config_shape.cpython-314-pytest-9.0.2.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/warehouse-supply-chain/tests/test_agent_logic.py +405 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/warehouse-supply-chain/tests/test_config_shape.py +244 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/warehouse-supply-chain/validate_config.py +221 -0
- create_leafmesh-2.6.0/create_leafmesh.egg-info/PKG-INFO +94 -0
- create_leafmesh-2.6.0/create_leafmesh.egg-info/SOURCES.txt +1007 -0
- create_leafmesh-2.6.0/pyproject.toml +26 -0
- create_leafmesh-2.5.2/PKG-INFO +0 -94
- create_leafmesh-2.5.2/create_leafmesh/__init__.py +0 -3
- create_leafmesh-2.5.2/create_leafmesh/templates/_inspire/__pycache__/main.cpython-314.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/_inspire/agency/__pycache__/__init__.cpython-314.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/_inspire/agency/__pycache__/advisor_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/_inspire/agency/__pycache__/external_agents.cpython-314.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/_inspire/agency/__pycache__/fallback_researcher_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/_inspire/agency/__pycache__/greeter_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/_inspire/agency/__pycache__/processor_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/_inspire/agency/__pycache__/researcher_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/_inspire/agency/__pycache__/risk_scorer_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/_inspire/agency/__pycache__/scheduler_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/_inspire/agency/__pycache__/tools.cpython-314.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/_inspire/tests/__pycache__/__init__.cpython-314.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/_inspire/tests/__pycache__/test_config_shape.cpython-314-pytest-9.0.2.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/_inspire/validate_config.py +0 -181
- create_leafmesh-2.5.2/create_leafmesh/templates/_registry.yaml +0 -440
- create_leafmesh-2.5.2/create_leafmesh/templates/bd-proposals/README.md +0 -27
- create_leafmesh-2.5.2/create_leafmesh/templates/bd-proposals/_prompts.json +0 -67
- create_leafmesh-2.5.2/create_leafmesh/templates/bd-proposals/agency/_shared/__pycache__/__init__.cpython-314.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/bd-proposals/agency/_shared/__pycache__/audit_logger.cpython-314.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/bd-proposals/configs/config.yaml +0 -1006
- create_leafmesh-2.5.2/create_leafmesh/templates/bd-proposals/env +0 -18
- create_leafmesh-2.5.2/create_leafmesh/templates/bd-proposals/tests/__pycache__/test_config_shape.cpython-314-pytest-9.0.2.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/bd-proposals/tests/test_config_shape.py +0 -116
- create_leafmesh-2.5.2/create_leafmesh/templates/bd-proposals/validate_config.py +0 -181
- create_leafmesh-2.5.2/create_leafmesh/templates/bench-management/README.md +0 -26
- create_leafmesh-2.5.2/create_leafmesh/templates/bench-management/__pycache__/main.cpython-314.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/bench-management/agency/__pycache__/esat_survey_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/bench-management/agency/_shared/__pycache__/__init__.cpython-314.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/bench-management/agency/_shared/__pycache__/audit_logger.cpython-314.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/bench-management/configs/config.yaml +0 -856
- create_leafmesh-2.5.2/create_leafmesh/templates/bench-management/env +0 -19
- create_leafmesh-2.5.2/create_leafmesh/templates/bench-management/main.py +0 -59
- create_leafmesh-2.5.2/create_leafmesh/templates/bench-management/tests/__pycache__/conftest.cpython-314-pytest-9.0.2.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/bench-management/tests/__pycache__/test_agent_logic.cpython-314-pytest-9.0.2.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/bench-management/tests/__pycache__/test_config_shape.cpython-314-pytest-9.0.2.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/bench-management/tests/test_agent_logic.py +0 -74
- create_leafmesh-2.5.2/create_leafmesh/templates/bench-management/tests/test_config_shape.py +0 -86
- create_leafmesh-2.5.2/create_leafmesh/templates/bench-management/validate_config.py +0 -181
- create_leafmesh-2.5.2/create_leafmesh/templates/claude_skills/leafmesh/SKILL.md +0 -2877
- create_leafmesh-2.5.2/create_leafmesh/templates/claude_skills/leafmesh/agent-config-fields.md +0 -1635
- create_leafmesh-2.5.2/create_leafmesh/templates/customer-success/README.md +0 -213
- create_leafmesh-2.5.2/create_leafmesh/templates/customer-success/agency/__pycache__/__init__.cpython-314.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/customer-success/agency/_shared/__pycache__/__init__.cpython-314.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/customer-success/agency/_shared/__pycache__/audit_logger.cpython-314.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/customer-success/configs/config.yaml +0 -1567
- create_leafmesh-2.5.2/create_leafmesh/templates/customer-success/env +0 -23
- create_leafmesh-2.5.2/create_leafmesh/templates/customer-success/logs/leafmesh_2026-06-11.log +0 -102
- create_leafmesh-2.5.2/create_leafmesh/templates/customer-success/main.py +0 -125
- create_leafmesh-2.5.2/create_leafmesh/templates/customer-success/tests/__pycache__/test_agent_logic.cpython-314-pytest-9.0.2.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/customer-success/tests/__pycache__/test_config_shape.cpython-314-pytest-9.0.2.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/customer-success/tests/test_agent_logic.py +0 -146
- create_leafmesh-2.5.2/create_leafmesh/templates/customer-success/validate_config.py +0 -181
- create_leafmesh-2.5.2/create_leafmesh/templates/customer-support/README.md +0 -74
- create_leafmesh-2.5.2/create_leafmesh/templates/customer-support/agency/__pycache__/__init__.cpython-314.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/customer-support/agency/_shared/__pycache__/__init__.cpython-314.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/customer-support/agency/_shared/__pycache__/audit_logger.cpython-314.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/customer-support/configs/config.yaml +0 -1138
- create_leafmesh-2.5.2/create_leafmesh/templates/customer-support/tests/__pycache__/__init__.cpython-314.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/customer-support/tests/__pycache__/conftest.cpython-314-pytest-9.0.2.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/customer-support/tests/__pycache__/test_agent_logic.cpython-314-pytest-9.0.2.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/customer-support/tests/__pycache__/test_config_shape.cpython-314-pytest-9.0.2.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/customer-support/validate_config.py +0 -181
- create_leafmesh-2.5.2/create_leafmesh/templates/engineering-sdlc/README.md +0 -74
- create_leafmesh-2.5.2/create_leafmesh/templates/engineering-sdlc/__pycache__/main.cpython-314.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/engineering-sdlc/_prompts.json +0 -67
- create_leafmesh-2.5.2/create_leafmesh/templates/engineering-sdlc/agency/__init__.py +0 -1
- create_leafmesh-2.5.2/create_leafmesh/templates/engineering-sdlc/agency/__pycache__/__init__.cpython-314.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/engineering-sdlc/agency/__pycache__/code_reviewer_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/engineering-sdlc/agency/__pycache__/spec_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/engineering-sdlc/agency/_shared/__init__.py +0 -1
- create_leafmesh-2.5.2/create_leafmesh/templates/engineering-sdlc/agency/_shared/__pycache__/__init__.cpython-314.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/engineering-sdlc/agency/_shared/__pycache__/audit_logger.cpython-314.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/engineering-sdlc/agency/_shared/__pycache__/session_stash.cpython-314.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/engineering-sdlc/agency/code_reviewer_agent.py +0 -54
- create_leafmesh-2.5.2/create_leafmesh/templates/engineering-sdlc/agency/spec_agent.py +0 -43
- create_leafmesh-2.5.2/create_leafmesh/templates/engineering-sdlc/configs/config.yaml +0 -1024
- create_leafmesh-2.5.2/create_leafmesh/templates/engineering-sdlc/docker-compose.yml +0 -34
- create_leafmesh-2.5.2/create_leafmesh/templates/engineering-sdlc/env +0 -16
- create_leafmesh-2.5.2/create_leafmesh/templates/engineering-sdlc/examples/01_simple_feature_ticket.json +0 -16
- create_leafmesh-2.5.2/create_leafmesh/templates/engineering-sdlc/examples/02_security_sensitive_change.json +0 -17
- create_leafmesh-2.5.2/create_leafmesh/templates/engineering-sdlc/examples/03_oncall_pager_alert.json +0 -18
- create_leafmesh-2.5.2/create_leafmesh/templates/engineering-sdlc/examples/04_refactor_proposal.json +0 -13
- create_leafmesh-2.5.2/create_leafmesh/templates/engineering-sdlc/examples/README.md +0 -23
- create_leafmesh-2.5.2/create_leafmesh/templates/engineering-sdlc/logs/leafmesh_2026-06-09.log +0 -42
- create_leafmesh-2.5.2/create_leafmesh/templates/engineering-sdlc/logs/leafmesh_2026-06-10.log +0 -28
- create_leafmesh-2.5.2/create_leafmesh/templates/engineering-sdlc/logs/leafmesh_2026-06-11.log +0 -28
- create_leafmesh-2.5.2/create_leafmesh/templates/engineering-sdlc/main.py +0 -62
- create_leafmesh-2.5.2/create_leafmesh/templates/engineering-sdlc/tests/__pycache__/__init__.cpython-314.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/engineering-sdlc/tests/__pycache__/conftest.cpython-314-pytest-9.0.2.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/engineering-sdlc/tests/__pycache__/test_agent_logic.cpython-314-pytest-9.0.2.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/engineering-sdlc/tests/__pycache__/test_config_shape.cpython-314-pytest-9.0.2.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/engineering-sdlc/tests/conftest.py +0 -28
- create_leafmesh-2.5.2/create_leafmesh/templates/engineering-sdlc/tests/test_agent_logic.py +0 -93
- create_leafmesh-2.5.2/create_leafmesh/templates/engineering-sdlc/tests/test_config_shape.py +0 -160
- create_leafmesh-2.5.2/create_leafmesh/templates/engineering-sdlc/validate_config.py +0 -181
- create_leafmesh-2.5.2/create_leafmesh/templates/finance-ops/README.md +0 -206
- create_leafmesh-2.5.2/create_leafmesh/templates/finance-ops/__pycache__/main.cpython-314.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/finance-ops/agency/__init__.py +0 -16
- create_leafmesh-2.5.2/create_leafmesh/templates/finance-ops/agency/__pycache__/__init__.cpython-314.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/finance-ops/agency/__pycache__/erp_poster_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/finance-ops/agency/__pycache__/gl_coding_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/finance-ops/agency/__pycache__/matching_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/finance-ops/agency/_shared/__pycache__/erp_poster.cpython-314.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/finance-ops/agency/_shared/__pycache__/session_stash.cpython-314.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/finance-ops/agency/erp_poster_agent.py +0 -85
- create_leafmesh-2.5.2/create_leafmesh/templates/finance-ops/agency/gl_coding_agent.py +0 -105
- create_leafmesh-2.5.2/create_leafmesh/templates/finance-ops/agency/matching_agent.py +0 -196
- create_leafmesh-2.5.2/create_leafmesh/templates/finance-ops/configs/config.yaml +0 -1632
- create_leafmesh-2.5.2/create_leafmesh/templates/finance-ops/env +0 -48
- create_leafmesh-2.5.2/create_leafmesh/templates/finance-ops/gitignore +0 -15
- create_leafmesh-2.5.2/create_leafmesh/templates/finance-ops/logs/leafmesh_2026-06-12.log +0 -32
- create_leafmesh-2.5.2/create_leafmesh/templates/finance-ops/main.py +0 -163
- create_leafmesh-2.5.2/create_leafmesh/templates/finance-ops/tests/__pycache__/conftest.cpython-314-pytest-9.0.2.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/finance-ops/tests/__pycache__/test_agent_logic.cpython-314-pytest-9.0.2.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/finance-ops/tests/__pycache__/test_config_shape.cpython-314-pytest-9.0.2.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/finance-ops/tests/conftest.py +0 -39
- create_leafmesh-2.5.2/create_leafmesh/templates/finance-ops/tests/test_agent_logic.py +0 -211
- create_leafmesh-2.5.2/create_leafmesh/templates/finance-ops/validate_config.py +0 -181
- create_leafmesh-2.5.2/create_leafmesh/templates/infra-cost-ops/README.md +0 -25
- create_leafmesh-2.5.2/create_leafmesh/templates/infra-cost-ops/__pycache__/main.cpython-314.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/infra-cost-ops/agency/__pycache__/__init__.cpython-314.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/infra-cost-ops/agency/__pycache__/commitments_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/infra-cost-ops/agency/__pycache__/cost_anomaly_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/infra-cost-ops/agency/__pycache__/cost_tuner_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/infra-cost-ops/agency/__pycache__/finops_governance_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/infra-cost-ops/agency/__pycache__/iac_drift_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/infra-cost-ops/agency/__pycache__/regulatory_monitor_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/infra-cost-ops/agency/_shared/__pycache__/__init__.cpython-314.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/infra-cost-ops/agency/_shared/__pycache__/audit_logger.cpython-314.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/infra-cost-ops/agency/_shared/__pycache__/session_stash.cpython-314.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/infra-cost-ops/agency/_shared/session_stash.py +0 -53
- create_leafmesh-2.5.2/create_leafmesh/templates/infra-cost-ops/agency/cost_anomaly_agent.py +0 -34
- create_leafmesh-2.5.2/create_leafmesh/templates/infra-cost-ops/agency/cost_tuner_agent.py +0 -82
- create_leafmesh-2.5.2/create_leafmesh/templates/infra-cost-ops/configs/config.yaml +0 -690
- create_leafmesh-2.5.2/create_leafmesh/templates/infra-cost-ops/env +0 -17
- create_leafmesh-2.5.2/create_leafmesh/templates/infra-cost-ops/gitignore +0 -15
- create_leafmesh-2.5.2/create_leafmesh/templates/infra-cost-ops/logs/leafmesh_2026-06-11.log +0 -25
- create_leafmesh-2.5.2/create_leafmesh/templates/infra-cost-ops/logs/leafmesh_2026-06-12.log +0 -3
- create_leafmesh-2.5.2/create_leafmesh/templates/infra-cost-ops/tests/__pycache__/test_agent_logic.cpython-314-pytest-9.0.2.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/infra-cost-ops/tests/__pycache__/test_config_shape.cpython-314-pytest-9.0.2.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/infra-cost-ops/tests/test_agent_logic.py +0 -85
- create_leafmesh-2.5.2/create_leafmesh/templates/infra-cost-ops/tests/test_config_shape.py +0 -108
- create_leafmesh-2.5.2/create_leafmesh/templates/infra-cost-ops/validate_config.py +0 -181
- create_leafmesh-2.5.2/create_leafmesh/templates/marketing-ops/README.md +0 -192
- create_leafmesh-2.5.2/create_leafmesh/templates/marketing-ops/__pycache__/main.cpython-314.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/marketing-ops/agency/__pycache__/__init__.cpython-314.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/marketing-ops/agency/__pycache__/compliance_reviewer_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/marketing-ops/agency/__pycache__/marketing_audit_logger_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/marketing-ops/agency/__pycache__/publisher_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/marketing-ops/agency/_shared/__pycache__/__init__.cpython-314.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/marketing-ops/agency/_shared/__pycache__/audit_logger.cpython-314.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/marketing-ops/agency/_shared/__pycache__/session_stash.cpython-314.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/marketing-ops/agency/_shared/session_stash.py +0 -53
- create_leafmesh-2.5.2/create_leafmesh/templates/marketing-ops/agency/compliance_reviewer_agent.py +0 -79
- create_leafmesh-2.5.2/create_leafmesh/templates/marketing-ops/agency/marketing_audit_logger_agent.py +0 -107
- create_leafmesh-2.5.2/create_leafmesh/templates/marketing-ops/configs/config.yaml +0 -1125
- create_leafmesh-2.5.2/create_leafmesh/templates/marketing-ops/env +0 -23
- create_leafmesh-2.5.2/create_leafmesh/templates/marketing-ops/examples/__pycache__/run_examples.cpython-314.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/marketing-ops/gitignore +0 -15
- create_leafmesh-2.5.2/create_leafmesh/templates/marketing-ops/tests/__pycache__/conftest.cpython-314-pytest-9.0.2.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/marketing-ops/tests/__pycache__/test_agent_logic.cpython-314-pytest-9.0.2.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/marketing-ops/tests/__pycache__/test_config_shape.cpython-314-pytest-9.0.2.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/marketing-ops/tests/test_agent_logic.py +0 -129
- create_leafmesh-2.5.2/create_leafmesh/templates/marketing-ops/tests/test_config_shape.py +0 -251
- create_leafmesh-2.5.2/create_leafmesh/templates/marketing-ops/validate_config.py +0 -181
- create_leafmesh-2.5.2/create_leafmesh/templates/predictive-maintenance/README.md +0 -50
- create_leafmesh-2.5.2/create_leafmesh/templates/predictive-maintenance/agency/__pycache__/safety_incident_reporter_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/predictive-maintenance/agency/__pycache__/work_order_scheduler_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/predictive-maintenance/agency/_shared/__pycache__/__init__.cpython-314.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/predictive-maintenance/agency/_shared/__pycache__/audit_logger.cpython-314.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/predictive-maintenance/agency/safety_incident_reporter_agent.py +0 -103
- create_leafmesh-2.5.2/create_leafmesh/templates/predictive-maintenance/agency/work_order_scheduler_agent.py +0 -118
- create_leafmesh-2.5.2/create_leafmesh/templates/predictive-maintenance/configs/config.yaml +0 -742
- create_leafmesh-2.5.2/create_leafmesh/templates/predictive-maintenance/env +0 -14
- create_leafmesh-2.5.2/create_leafmesh/templates/predictive-maintenance/examples/02_anomaly_failure_predicted.json +0 -17
- create_leafmesh-2.5.2/create_leafmesh/templates/predictive-maintenance/gitignore +0 -15
- create_leafmesh-2.5.2/create_leafmesh/templates/predictive-maintenance/tests/__pycache__/test_agent_logic.cpython-314-pytest-9.0.2.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/predictive-maintenance/tests/__pycache__/test_config_shape.cpython-314-pytest-9.0.2.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/predictive-maintenance/tests/test_agent_logic.py +0 -173
- create_leafmesh-2.5.2/create_leafmesh/templates/predictive-maintenance/tests/test_config_shape.py +0 -144
- create_leafmesh-2.5.2/create_leafmesh/templates/predictive-maintenance/validate_config.py +0 -181
- create_leafmesh-2.5.2/create_leafmesh/templates/procurement-ops/README.md +0 -299
- create_leafmesh-2.5.2/create_leafmesh/templates/procurement-ops/__pycache__/main.cpython-314.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/procurement-ops/agency/__pycache__/inventory_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/procurement-ops/agency/__pycache__/order_intake_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/procurement-ops/agency/__pycache__/purchase_order_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/procurement-ops/agency/__pycache__/tariff_classifier_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/procurement-ops/agency/__pycache__/tools.cpython-314.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/procurement-ops/agency/__pycache__/trade_compliance_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/procurement-ops/agency/_shared/__pycache__/__init__.cpython-314.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/procurement-ops/agency/_shared/__pycache__/session_stash.cpython-314.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/procurement-ops/agency/_shared/session_stash.py +0 -53
- create_leafmesh-2.5.2/create_leafmesh/templates/procurement-ops/agency/inventory_agent.py +0 -384
- create_leafmesh-2.5.2/create_leafmesh/templates/procurement-ops/agency/order_intake_agent.py +0 -260
- create_leafmesh-2.5.2/create_leafmesh/templates/procurement-ops/agency/purchase_order_agent.py +0 -439
- create_leafmesh-2.5.2/create_leafmesh/templates/procurement-ops/agency/tariff_classifier_agent.py +0 -224
- create_leafmesh-2.5.2/create_leafmesh/templates/procurement-ops/agency/tools.py +0 -144
- create_leafmesh-2.5.2/create_leafmesh/templates/procurement-ops/agency/trade_compliance_agent.py +0 -228
- create_leafmesh-2.5.2/create_leafmesh/templates/procurement-ops/configs/config.yaml +0 -523
- create_leafmesh-2.5.2/create_leafmesh/templates/procurement-ops/env +0 -23
- create_leafmesh-2.5.2/create_leafmesh/templates/procurement-ops/validate_config.py +0 -181
- create_leafmesh-2.5.2/create_leafmesh/templates/production-planning/README.md +0 -69
- create_leafmesh-2.5.2/create_leafmesh/templates/production-planning/__pycache__/main.cpython-314.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/production-planning/agency/__pycache__/constraint_flagger_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/production-planning/agency/_shared/__pycache__/__init__.cpython-314.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/production-planning/agency/_shared/__pycache__/audit_logger.cpython-314.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/production-planning/agency/_shared/__pycache__/session_stash.cpython-314.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/production-planning/agency/_shared/session_stash.py +0 -53
- create_leafmesh-2.5.2/create_leafmesh/templates/production-planning/agency/constraint_flagger_agent.py +0 -101
- create_leafmesh-2.5.2/create_leafmesh/templates/production-planning/agency/scheduler_agent.py +0 -44
- create_leafmesh-2.5.2/create_leafmesh/templates/production-planning/configs/config.yaml +0 -795
- create_leafmesh-2.5.2/create_leafmesh/templates/production-planning/env +0 -16
- create_leafmesh-2.5.2/create_leafmesh/templates/production-planning/gitignore +0 -15
- create_leafmesh-2.5.2/create_leafmesh/templates/production-planning/logs/leafmesh_2026-06-09.log +0 -9
- create_leafmesh-2.5.2/create_leafmesh/templates/production-planning/logs/leafmesh_2026-06-10.log +0 -3
- create_leafmesh-2.5.2/create_leafmesh/templates/production-planning/logs/leafmesh_2026-06-11.log +0 -21
- create_leafmesh-2.5.2/create_leafmesh/templates/production-planning/logs/leafmesh_2026-06-12.log +0 -7
- create_leafmesh-2.5.2/create_leafmesh/templates/production-planning/main.py +0 -68
- create_leafmesh-2.5.2/create_leafmesh/templates/production-planning/tests/__pycache__/conftest.cpython-314-pytest-9.0.2.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/production-planning/tests/__pycache__/test_agent_logic.cpython-314-pytest-9.0.2.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/production-planning/tests/__pycache__/test_config_shape.cpython-314-pytest-9.0.2.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/production-planning/tests/conftest.py +0 -28
- create_leafmesh-2.5.2/create_leafmesh/templates/production-planning/tests/test_agent_logic.py +0 -46
- create_leafmesh-2.5.2/create_leafmesh/templates/production-planning/tests/test_config_shape.py +0 -129
- create_leafmesh-2.5.2/create_leafmesh/templates/production-planning/validate_config.py +0 -181
- create_leafmesh-2.5.2/create_leafmesh/templates/quality-yield/README.md +0 -43
- create_leafmesh-2.5.2/create_leafmesh/templates/quality-yield/__pycache__/main.cpython-314.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/quality-yield/agency/__init__.py +0 -1
- create_leafmesh-2.5.2/create_leafmesh/templates/quality-yield/agency/__pycache__/__init__.cpython-314.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/quality-yield/agency/__pycache__/corrective_action_tracker_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/quality-yield/agency/__pycache__/inspection_intake_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/quality-yield/agency/__pycache__/quality_engineer_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/quality-yield/agency/__pycache__/recall_traceability_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/quality-yield/agency/__pycache__/regulatory_compliance_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/quality-yield/agency/__pycache__/spc_monitor_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/quality-yield/agency/_shared/__pycache__/__init__.cpython-314.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/quality-yield/agency/_shared/__pycache__/audit_logger.cpython-314.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/quality-yield/agency/recall_traceability_agent.py +0 -70
- create_leafmesh-2.5.2/create_leafmesh/templates/quality-yield/agency/spc_monitor_agent.py +0 -178
- create_leafmesh-2.5.2/create_leafmesh/templates/quality-yield/configs/config.yaml +0 -772
- create_leafmesh-2.5.2/create_leafmesh/templates/quality-yield/data/spc_measurements.db +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/quality-yield/env +0 -18
- create_leafmesh-2.5.2/create_leafmesh/templates/quality-yield/gitignore +0 -15
- create_leafmesh-2.5.2/create_leafmesh/templates/quality-yield/logs/leafmesh_2026-06-12.log +0 -59
- create_leafmesh-2.5.2/create_leafmesh/templates/quality-yield/tests/__pycache__/test_agent_logic.cpython-314-pytest-9.0.2.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/quality-yield/tests/__pycache__/test_config_shape.cpython-314-pytest-9.0.2.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/quality-yield/tests/test_agent_logic.py +0 -121
- create_leafmesh-2.5.2/create_leafmesh/templates/quality-yield/tests/test_config_shape.py +0 -128
- create_leafmesh-2.5.2/create_leafmesh/templates/quality-yield/validate_config.py +0 -181
- create_leafmesh-2.5.2/create_leafmesh/templates/quote-to-cash/README.md +0 -22
- create_leafmesh-2.5.2/create_leafmesh/templates/quote-to-cash/__pycache__/main.cpython-314.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/quote-to-cash/agency/__pycache__/__init__.cpython-314.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/quote-to-cash/agency/__pycache__/discount_policy_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/quote-to-cash/agency/__pycache__/quote_drafter_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/quote-to-cash/agency/_shared/__pycache__/__init__.cpython-314.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/quote-to-cash/agency/_shared/__pycache__/audit_logger.cpython-314.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/quote-to-cash/agency/_shared/__pycache__/session_stash.cpython-314.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/quote-to-cash/agency/discount_policy_agent.py +0 -50
- create_leafmesh-2.5.2/create_leafmesh/templates/quote-to-cash/agency/quote_drafter_agent.py +0 -113
- create_leafmesh-2.5.2/create_leafmesh/templates/quote-to-cash/configs/config.yaml +0 -826
- create_leafmesh-2.5.2/create_leafmesh/templates/quote-to-cash/env +0 -21
- create_leafmesh-2.5.2/create_leafmesh/templates/quote-to-cash/gitignore +0 -15
- create_leafmesh-2.5.2/create_leafmesh/templates/quote-to-cash/logs/leafmesh_2026-06-09.log +0 -24
- create_leafmesh-2.5.2/create_leafmesh/templates/quote-to-cash/logs/leafmesh_2026-06-10.log +0 -8
- create_leafmesh-2.5.2/create_leafmesh/templates/quote-to-cash/logs/leafmesh_2026-06-11.log +0 -16
- create_leafmesh-2.5.2/create_leafmesh/templates/quote-to-cash/logs/leafmesh_2026-06-12.log +0 -3
- create_leafmesh-2.5.2/create_leafmesh/templates/quote-to-cash/tests/__pycache__/test_agent_logic.cpython-314-pytest-9.0.2.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/quote-to-cash/tests/__pycache__/test_config_shape.cpython-314-pytest-9.0.2.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/quote-to-cash/tests/test_agent_logic.py +0 -70
- create_leafmesh-2.5.2/create_leafmesh/templates/quote-to-cash/tests/test_config_shape.py +0 -164
- create_leafmesh-2.5.2/create_leafmesh/templates/quote-to-cash/validate_config.py +0 -181
- create_leafmesh-2.5.2/create_leafmesh/templates/recruiting-ops/README.md +0 -31
- create_leafmesh-2.5.2/create_leafmesh/templates/recruiting-ops/__pycache__/main.cpython-314.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/recruiting-ops/agency/__pycache__/bias_audit_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/recruiting-ops/agency/_shared/__pycache__/__init__.cpython-314.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/recruiting-ops/agency/_shared/__pycache__/audit_logger.cpython-314.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/recruiting-ops/configs/config.yaml +0 -918
- create_leafmesh-2.5.2/create_leafmesh/templates/recruiting-ops/env +0 -21
- create_leafmesh-2.5.2/create_leafmesh/templates/recruiting-ops/gitignore +0 -15
- create_leafmesh-2.5.2/create_leafmesh/templates/recruiting-ops/logs/leafmesh_2026-06-11.log +0 -22
- create_leafmesh-2.5.2/create_leafmesh/templates/recruiting-ops/logs/leafmesh_2026-06-12.log +0 -24
- create_leafmesh-2.5.2/create_leafmesh/templates/recruiting-ops/tests/__pycache__/test_agent_logic.cpython-314-pytest-9.0.2.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/recruiting-ops/tests/__pycache__/test_config_shape.cpython-314-pytest-9.0.2.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/recruiting-ops/tests/test_agent_logic.py +0 -114
- create_leafmesh-2.5.2/create_leafmesh/templates/recruiting-ops/tests/test_config_shape.py +0 -79
- create_leafmesh-2.5.2/create_leafmesh/templates/recruiting-ops/validate_config.py +0 -181
- create_leafmesh-2.5.2/create_leafmesh/templates/sales-orchestration/README.md +0 -23
- create_leafmesh-2.5.2/create_leafmesh/templates/sales-orchestration/__pycache__/main.cpython-314.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/sales-orchestration/agency/__pycache__/__init__.cpython-314.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/sales-orchestration/agency/_shared/__pycache__/__init__.cpython-314.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/sales-orchestration/agency/_shared/__pycache__/audit_logger.cpython-314.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/sales-orchestration/configs/config.yaml +0 -977
- create_leafmesh-2.5.2/create_leafmesh/templates/sales-orchestration/gitignore +0 -15
- create_leafmesh-2.5.2/create_leafmesh/templates/sales-orchestration/tests/__pycache__/conftest.cpython-314-pytest-9.0.2.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/sales-orchestration/tests/__pycache__/test_agent_logic.cpython-314-pytest-9.0.2.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/sales-orchestration/tests/__pycache__/test_config_shape.cpython-314-pytest-9.0.2.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/sales-orchestration/tests/test_agent_logic.py +0 -26
- create_leafmesh-2.5.2/create_leafmesh/templates/sales-orchestration/tests/test_config_shape.py +0 -65
- create_leafmesh-2.5.2/create_leafmesh/templates/sales-orchestration/validate_config.py +0 -181
- create_leafmesh-2.5.2/create_leafmesh/templates/services-delivery/README.md +0 -89
- create_leafmesh-2.5.2/create_leafmesh/templates/services-delivery/__pycache__/main.cpython-314.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/services-delivery/agency/__pycache__/__init__.cpython-314.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/services-delivery/agency/__pycache__/brief_intake_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/services-delivery/agency/__pycache__/citation_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/services-delivery/agency/__pycache__/consultant_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/services-delivery/agency/__pycache__/context_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/services-delivery/agency/__pycache__/delivery_router_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/services-delivery/agency/__pycache__/doc_extraction_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/services-delivery/agency/__pycache__/engagement_controller_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/services-delivery/agency/__pycache__/engagement_status_drafter_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/services-delivery/agency/__pycache__/performance_review_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/services-delivery/agency/__pycache__/qa_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/services-delivery/agency/__pycache__/research_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/services-delivery/agency/__pycache__/status_sweep_orchestrator_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/services-delivery/agency/_shared/__pycache__/__init__.cpython-314.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/services-delivery/agency/_shared/__pycache__/audit_logger.cpython-314.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/services-delivery/agency/_shared/__pycache__/session_stash.cpython-314.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/services-delivery/agency/_shared/session_stash.py +0 -53
- create_leafmesh-2.5.2/create_leafmesh/templates/services-delivery/agency/citation_agent.py +0 -72
- create_leafmesh-2.5.2/create_leafmesh/templates/services-delivery/agency/context_agent.py +0 -61
- create_leafmesh-2.5.2/create_leafmesh/templates/services-delivery/agency/qa_agent.py +0 -71
- create_leafmesh-2.5.2/create_leafmesh/templates/services-delivery/configs/config.yaml +0 -1567
- create_leafmesh-2.5.2/create_leafmesh/templates/services-delivery/env +0 -24
- create_leafmesh-2.5.2/create_leafmesh/templates/services-delivery/examples/01_new_engagement_memo.json +0 -14
- create_leafmesh-2.5.2/create_leafmesh/templates/services-delivery/gitignore +0 -15
- create_leafmesh-2.5.2/create_leafmesh/templates/services-delivery/tests/__pycache__/test_agent_logic.cpython-314-pytest-9.0.2.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/services-delivery/tests/__pycache__/test_config_shape.cpython-314-pytest-9.0.2.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/services-delivery/tests/test_agent_logic.py +0 -125
- create_leafmesh-2.5.2/create_leafmesh/templates/services-delivery/tests/test_config_shape.py +0 -288
- create_leafmesh-2.5.2/create_leafmesh/templates/services-delivery/validate_config.py +0 -181
- create_leafmesh-2.5.2/create_leafmesh/templates/starter/gitignore +0 -15
- create_leafmesh-2.5.2/create_leafmesh/templates/starter/tests/__pycache__/__init__.cpython-314.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/starter/tests/__pycache__/conftest.cpython-314-pytest-9.0.2.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/starter/tests/__pycache__/test_config_shape.cpython-314-pytest-9.0.2.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/starter/validate_config.py +0 -181
- create_leafmesh-2.5.2/create_leafmesh/templates/warehouse-supply-chain/README.md +0 -94
- create_leafmesh-2.5.2/create_leafmesh/templates/warehouse-supply-chain/__pycache__/main.cpython-314.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/warehouse-supply-chain/agency/__pycache__/__init__.cpython-314.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/warehouse-supply-chain/agency/__pycache__/allocation_agent.cpython-314.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/warehouse-supply-chain/agency/__pycache__/inspection_humanoid.cpython-314.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/warehouse-supply-chain/agency/__pycache__/loader_humanoid.cpython-314.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/warehouse-supply-chain/agency/__pycache__/packer_humanoid.cpython-314.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/warehouse-supply-chain/agency/__pycache__/picker_humanoid.cpython-314.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/warehouse-supply-chain/agency/_shared/__pycache__/__init__.cpython-314.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/warehouse-supply-chain/agency/_shared/__pycache__/audit_logger.cpython-314.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/warehouse-supply-chain/agency/_shared/audit_logger.py +0 -149
- create_leafmesh-2.5.2/create_leafmesh/templates/warehouse-supply-chain/agency/allocation_agent.py +0 -76
- create_leafmesh-2.5.2/create_leafmesh/templates/warehouse-supply-chain/agency/loader_humanoid.py +0 -26
- create_leafmesh-2.5.2/create_leafmesh/templates/warehouse-supply-chain/agency/packer_humanoid.py +0 -25
- create_leafmesh-2.5.2/create_leafmesh/templates/warehouse-supply-chain/agency/picker_humanoid.py +0 -31
- create_leafmesh-2.5.2/create_leafmesh/templates/warehouse-supply-chain/configs/config.yaml +0 -984
- create_leafmesh-2.5.2/create_leafmesh/templates/warehouse-supply-chain/env +0 -12
- create_leafmesh-2.5.2/create_leafmesh/templates/warehouse-supply-chain/examples/01_routine_order.json +0 -24
- create_leafmesh-2.5.2/create_leafmesh/templates/warehouse-supply-chain/examples/02_short_pick_exception.json +0 -20
- create_leafmesh-2.5.2/create_leafmesh/templates/warehouse-supply-chain/examples/run_examples.py +0 -85
- create_leafmesh-2.5.2/create_leafmesh/templates/warehouse-supply-chain/gitignore +0 -15
- create_leafmesh-2.5.2/create_leafmesh/templates/warehouse-supply-chain/main.py +0 -68
- create_leafmesh-2.5.2/create_leafmesh/templates/warehouse-supply-chain/requirements-dev.txt +0 -3
- create_leafmesh-2.5.2/create_leafmesh/templates/warehouse-supply-chain/tests/__pycache__/conftest.cpython-314-pytest-9.0.2.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/warehouse-supply-chain/tests/__pycache__/test_agent_logic.cpython-314-pytest-9.0.2.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/warehouse-supply-chain/tests/__pycache__/test_config_shape.cpython-314-pytest-9.0.2.pyc +0 -0
- create_leafmesh-2.5.2/create_leafmesh/templates/warehouse-supply-chain/tests/test_agent_logic.py +0 -122
- create_leafmesh-2.5.2/create_leafmesh/templates/warehouse-supply-chain/tests/test_config_shape.py +0 -236
- create_leafmesh-2.5.2/create_leafmesh/templates/warehouse-supply-chain/validate_config.py +0 -181
- create_leafmesh-2.5.2/create_leafmesh.egg-info/PKG-INFO +0 -94
- create_leafmesh-2.5.2/create_leafmesh.egg-info/SOURCES.txt +0 -795
- create_leafmesh-2.5.2/pyproject.toml +0 -26
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/README.md +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/cli.py +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/create.py +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/deploy.py +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/deploy_providers/__init__.py +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/deploy_providers/_shared.py +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/deploy_providers/aws.py +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/deploy_providers/azure.py +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/deploy_providers/gcp.py +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/_inspire/Dockerfile +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/_inspire/README.md +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/_inspire/_REFERENCE_ONLY.md +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/_inspire/agency/__init__.py +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/_inspire/agency/advisor_agent.py +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/_inspire/agency/external_agents.py +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/_inspire/agency/fallback_researcher_agent.py +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/_inspire/agency/greeter_agent.py +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/_inspire/agency/processor_agent.py +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/_inspire/agency/researcher_agent.py +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/_inspire/agency/risk_scorer_agent.py +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/_inspire/agency/scheduler_agent.py +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/_inspire/agency/tools.py +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/_inspire/configs/config.yaml +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/_inspire/docker-compose.yml +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/_inspire/dockerignore +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/_inspire/env +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/_inspire/gitignore +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/_inspire/hitl_stub_receiver.py +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/_inspire/logs/leafmesh_2026-06-11.log +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/_inspire/main.py +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/_inspire/requirements.txt +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/_inspire/skills/data-handling/SKILL.md +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/_inspire/skills/data-handling/examples.json +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/_inspire/skills/tone-rules.md +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/_inspire/tests/__init__.py +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/_inspire/tests/test_config_shape.py +0 -0
- {create_leafmesh-2.5.2/create_leafmesh/templates/bd-proposals → create_leafmesh-2.6.0/create_leafmesh/templates/ai-dev-squad}/Dockerfile +0 -0
- {create_leafmesh-2.5.2/create_leafmesh/templates/bd-proposals → create_leafmesh-2.6.0/create_leafmesh/templates/ai-dev-squad}/agency/_shared/audit_logger.py +0 -0
- {create_leafmesh-2.5.2/create_leafmesh/templates/sales-orchestration → create_leafmesh-2.6.0/create_leafmesh/templates/ai-dev-squad}/docker-compose.yml +0 -0
- {create_leafmesh-2.5.2/create_leafmesh/templates/bd-proposals → create_leafmesh-2.6.0/create_leafmesh/templates/ai-dev-squad}/dockerignore +0 -0
- /create_leafmesh-2.5.2/create_leafmesh/templates/bd-proposals/tests/__init__.py → /create_leafmesh-2.6.0/create_leafmesh/templates/ai-dev-squad/logs/leafmesh_2026-06-22.log +0 -0
- {create_leafmesh-2.5.2/create_leafmesh/templates/bd-proposals → create_leafmesh-2.6.0/create_leafmesh/templates/ai-dev-squad}/pytest.ini +0 -0
- {create_leafmesh-2.5.2/create_leafmesh/templates/bd-proposals → create_leafmesh-2.6.0/create_leafmesh/templates/ai-dev-squad}/requirements.txt +0 -0
- {create_leafmesh-2.5.2/create_leafmesh/templates/bench-management → create_leafmesh-2.6.0/create_leafmesh/templates/ai-dev-squad}/tests/__init__.py +0 -0
- {create_leafmesh-2.5.2/create_leafmesh/templates/bench-management → create_leafmesh-2.6.0/create_leafmesh/templates/bd-proposals}/Dockerfile +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/bd-proposals/agency/__init__.py +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/bd-proposals/agency/_shared/__init__.py +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/bd-proposals/docker-compose.yml +0 -0
- {create_leafmesh-2.5.2/create_leafmesh/templates/bench-management → create_leafmesh-2.6.0/create_leafmesh/templates/bd-proposals}/dockerignore +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/bd-proposals/examples/01_new_rfp_received.json +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/bd-proposals/examples/02_win_post_mortem.json +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/bd-proposals/examples/03_loss_with_competitor.json +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/bd-proposals/examples/04_quarterly_win_rate.json +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/bd-proposals/examples/README.md +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/bd-proposals/examples/run_examples.py +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/bd-proposals/main.py +0 -0
- {create_leafmesh-2.5.2/create_leafmesh/templates/bench-management → create_leafmesh-2.6.0/create_leafmesh/templates/bd-proposals}/pytest.ini +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/bd-proposals/requirements-dev.txt +0 -0
- {create_leafmesh-2.5.2/create_leafmesh/templates/bench-management → create_leafmesh-2.6.0/create_leafmesh/templates/bd-proposals}/requirements.txt +0 -0
- {create_leafmesh-2.5.2/create_leafmesh/templates/customer-success → create_leafmesh-2.6.0/create_leafmesh/templates/bd-proposals}/tests/__init__.py +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/bd-proposals/tests/__pycache__/__init__.cpython-314.pyc +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/bd-proposals/tests/__pycache__/conftest.cpython-314-pytest-9.0.2.pyc +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/bd-proposals/tests/conftest.py +0 -0
- {create_leafmesh-2.5.2/create_leafmesh/templates/customer-support → create_leafmesh-2.6.0/create_leafmesh/templates/bench-management}/Dockerfile +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/bench-management/_prompts.json +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/bench-management/agency/__init__.py +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/bench-management/agency/__pycache__/__init__.cpython-314.pyc +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/bench-management/agency/_shared/__init__.py +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/bench-management/agency/_shared/audit_logger.py +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/bench-management/agency/esat_survey_agent.py +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/bench-management/docker-compose.yml +0 -0
- {create_leafmesh-2.5.2/create_leafmesh/templates/customer-support → create_leafmesh-2.6.0/create_leafmesh/templates/bench-management}/dockerignore +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/bench-management/examples/01_new_project_kickoff.json +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/bench-management/examples/02_weekly_bench_review.json +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/bench-management/examples/03_promotion_readiness.json +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/bench-management/examples/04_person_rolling_off.json +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/bench-management/examples/README.md +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/bench-management/examples/run_examples.py +0 -0
- {create_leafmesh-2.5.2/create_leafmesh/templates/customer-support → create_leafmesh-2.6.0/create_leafmesh/templates/bench-management}/pytest.ini +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/bench-management/requirements-dev.txt +0 -0
- {create_leafmesh-2.5.2/create_leafmesh/templates/customer-support → create_leafmesh-2.6.0/create_leafmesh/templates/bench-management}/requirements.txt +0 -0
- {create_leafmesh-2.5.2/create_leafmesh/templates/customer-support → create_leafmesh-2.6.0/create_leafmesh/templates/bench-management}/tests/__init__.py +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/bench-management/tests/__pycache__/__init__.cpython-314.pyc +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/bench-management/tests/conftest.py +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/claude_skills/leafmesh/examples.md +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/claude_skills/leafmesh/reference.md +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/customer-success/Dockerfile +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/customer-success/_prompts.json +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/customer-success/agency/__init__.py +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/customer-success/agency/_shared/__init__.py +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/customer-success/agency/_shared/audit_logger.py +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/customer-success/docker-compose.yml +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/customer-success/dockerignore +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/customer-success/examples/01_telemetry_dau_drop.json +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/customer-success/examples/02_billing_failed_payment.json +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/customer-success/examples/03_renewal_window_60d.json +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/customer-success/examples/04_executive_change.json +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/customer-success/examples/README.md +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/customer-success/examples/run_examples.py +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/customer-success/pytest.ini +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/customer-success/requirements-dev.txt +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/customer-success/requirements.txt +0 -0
- {create_leafmesh-2.5.2/create_leafmesh/templates/engineering-sdlc → create_leafmesh-2.6.0/create_leafmesh/templates/customer-success}/tests/__init__.py +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/customer-success/tests/__pycache__/__init__.cpython-314.pyc +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/customer-success/tests/__pycache__/conftest.cpython-314-pytest-9.0.2.pyc +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/customer-success/tests/conftest.py +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/customer-success/tests/test_config_shape.py +0 -0
- {create_leafmesh-2.5.2/create_leafmesh/templates/engineering-sdlc → create_leafmesh-2.6.0/create_leafmesh/templates/customer-support}/Dockerfile +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/customer-support/_prompts.json +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/customer-support/agency/__init__.py +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/customer-support/agency/_shared/__init__.py +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/customer-support/agency/_shared/audit_logger.py +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/customer-support/docker-compose.yml +0 -0
- {create_leafmesh-2.5.2/create_leafmesh/templates/engineering-sdlc → create_leafmesh-2.6.0/create_leafmesh/templates/customer-support}/dockerignore +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/customer-support/env +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/customer-support/examples/01_password_reset_routine.json +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/customer-support/examples/02_billing_dispute_escalation.json +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/customer-support/examples/03_security_incident.json +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/customer-support/examples/04_kb_gap_signal.json +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/customer-support/examples/README.md +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/customer-support/examples/run_examples.py +0 -0
- {create_leafmesh-2.5.2/create_leafmesh/templates/bd-proposals → create_leafmesh-2.6.0/create_leafmesh/templates/customer-support}/gitignore +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/customer-support/logs/leafmesh_2026-06-11.log +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/customer-support/logs/leafmesh_2026-06-12.log +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/customer-support/main.py +0 -0
- {create_leafmesh-2.5.2/create_leafmesh/templates/engineering-sdlc → create_leafmesh-2.6.0/create_leafmesh/templates/customer-support}/pytest.ini +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/customer-support/requirements-dev.txt +0 -0
- {create_leafmesh-2.5.2/create_leafmesh/templates/engineering-sdlc → create_leafmesh-2.6.0/create_leafmesh/templates/customer-support}/requirements.txt +0 -0
- {create_leafmesh-2.5.2/create_leafmesh/templates/finance-ops → create_leafmesh-2.6.0/create_leafmesh/templates/customer-support}/tests/__init__.py +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/customer-support/tests/conftest.py +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/customer-support/tests/test_agent_logic.py +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/customer-support/tests/test_config_shape.py +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/finance-ops/Dockerfile +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/finance-ops/_prompts.json +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/finance-ops/agency/_shared/__init__.py +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/finance-ops/agency/_shared/__pycache__/__init__.cpython-314.pyc +0 -0
- {create_leafmesh-2.5.2/create_leafmesh/templates/engineering-sdlc → create_leafmesh-2.6.0/create_leafmesh/templates/finance-ops}/agency/_shared/audit_logger.py +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/finance-ops/agency/_shared/erp_poster.py +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/finance-ops/agency/_shared/session_stash.py +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/finance-ops/agency/loan_origination_agent.py +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/finance-ops/agency/loan_servicing_agent.py +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/finance-ops/docker-compose.yml +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/finance-ops/dockerignore +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/finance-ops/examples/01_happy_path_subscription.json +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/finance-ops/examples/02_fraud_signal_round_number.json +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/finance-ops/examples/03_po_mismatch_exception.json +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/finance-ops/examples/04_high_value_cfo_signoff.json +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/finance-ops/examples/05_vendor_inquiry.json +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/finance-ops/examples/README.md +0 -0
- {create_leafmesh-2.5.2/create_leafmesh/templates/engineering-sdlc → create_leafmesh-2.6.0/create_leafmesh/templates/finance-ops}/examples/run_examples.py +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/finance-ops/pytest.ini +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/finance-ops/requirements-dev.txt +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/finance-ops/requirements.txt +0 -0
- {create_leafmesh-2.5.2/create_leafmesh/templates/infra-cost-ops → create_leafmesh-2.6.0/create_leafmesh/templates/finance-ops}/tests/__init__.py +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/finance-ops/tests/__pycache__/__init__.cpython-314.pyc +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/finance-ops/tests/test_config_shape.py +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/infra-cost-ops/Dockerfile +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/infra-cost-ops/_prompts.json +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/infra-cost-ops/agency/__init__.py +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/infra-cost-ops/agency/_shared/__init__.py +0 -0
- {create_leafmesh-2.5.2/create_leafmesh/templates/finance-ops → create_leafmesh-2.6.0/create_leafmesh/templates/infra-cost-ops}/agency/_shared/audit_logger.py +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/infra-cost-ops/docker-compose.yml +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/infra-cost-ops/dockerignore +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/infra-cost-ops/examples/01_ec2_idle_anomaly.json +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/infra-cost-ops/examples/02_savings_plan_under_utilised.json +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/infra-cost-ops/examples/03_ri_expiry_30d.json +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/infra-cost-ops/examples/04_iac_drift_detected.json +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/infra-cost-ops/examples/README.md +0 -0
- {create_leafmesh-2.5.2/create_leafmesh/templates/finance-ops → create_leafmesh-2.6.0/create_leafmesh/templates/infra-cost-ops}/examples/run_examples.py +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/infra-cost-ops/main.py +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/infra-cost-ops/pytest.ini +0 -0
- {create_leafmesh-2.5.2/create_leafmesh/templates/engineering-sdlc → create_leafmesh-2.6.0/create_leafmesh/templates/infra-cost-ops}/requirements-dev.txt +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/infra-cost-ops/requirements.txt +0 -0
- {create_leafmesh-2.5.2/create_leafmesh/templates/marketing-ops → create_leafmesh-2.6.0/create_leafmesh/templates/infra-cost-ops}/tests/__init__.py +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/infra-cost-ops/tests/__pycache__/__init__.cpython-314.pyc +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/infra-cost-ops/tests/__pycache__/conftest.cpython-314-pytest-9.0.2.pyc +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/infra-cost-ops/tests/conftest.py +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/marketing-ops/Dockerfile +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/marketing-ops/_prompts.json +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/marketing-ops/agency/__init__.py +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/marketing-ops/agency/_shared/__init__.py +0 -0
- {create_leafmesh-2.5.2/create_leafmesh/templates/infra-cost-ops → create_leafmesh-2.6.0/create_leafmesh/templates/marketing-ops}/agency/_shared/audit_logger.py +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/marketing-ops/agency/publisher_agent.py +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/marketing-ops/docker-compose.yml +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/marketing-ops/dockerignore +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/marketing-ops/examples/01_new_campaign_brief.json +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/marketing-ops/examples/02_product_launch_kickoff.json +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/marketing-ops/examples/03_brand_crisis.json +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/marketing-ops/examples/04_competitor_pricing_move.json +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/marketing-ops/examples/README.md +0 -0
- {create_leafmesh-2.5.2/create_leafmesh/templates/infra-cost-ops → create_leafmesh-2.6.0/create_leafmesh/templates/marketing-ops}/examples/run_examples.py +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/marketing-ops/logs/leafmesh_2026-06-12.log +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/marketing-ops/main.py +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/marketing-ops/pytest.ini +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/marketing-ops/requirements-dev.txt +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/marketing-ops/requirements.txt +0 -0
- {create_leafmesh-2.5.2/create_leafmesh/templates/predictive-maintenance → create_leafmesh-2.6.0/create_leafmesh/templates/marketing-ops}/tests/__init__.py +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/marketing-ops/tests/__pycache__/__init__.cpython-314.pyc +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/marketing-ops/tests/conftest.py +0 -0
- {create_leafmesh-2.5.2/create_leafmesh/templates/predictive-maintenance → create_leafmesh-2.6.0/create_leafmesh/templates/outbound-sdr}/Dockerfile +0 -0
- {create_leafmesh-2.5.2/create_leafmesh/templates/marketing-ops → create_leafmesh-2.6.0/create_leafmesh/templates/outbound-sdr}/agency/_shared/audit_logger.py +0 -0
- {create_leafmesh-2.5.2/create_leafmesh/templates/starter → create_leafmesh-2.6.0/create_leafmesh/templates/outbound-sdr}/docker-compose.yml +0 -0
- {create_leafmesh-2.5.2/create_leafmesh/templates/predictive-maintenance → create_leafmesh-2.6.0/create_leafmesh/templates/outbound-sdr}/dockerignore +0 -0
- /create_leafmesh-2.5.2/create_leafmesh/templates/procurement-ops/agency/__init__.py → /create_leafmesh-2.6.0/create_leafmesh/templates/outbound-sdr/logs/leafmesh_2026-06-21.log +0 -0
- {create_leafmesh-2.5.2/create_leafmesh/templates/predictive-maintenance → create_leafmesh-2.6.0/create_leafmesh/templates/outbound-sdr}/pytest.ini +0 -0
- {create_leafmesh-2.5.2/create_leafmesh/templates/predictive-maintenance → create_leafmesh-2.6.0/create_leafmesh/templates/outbound-sdr}/requirements.txt +0 -0
- {create_leafmesh-2.5.2/create_leafmesh/templates/procurement-ops → create_leafmesh-2.6.0/create_leafmesh/templates/outbound-sdr}/tests/__init__.py +0 -0
- {create_leafmesh-2.5.2/create_leafmesh/templates/production-planning → create_leafmesh-2.6.0/create_leafmesh/templates/predictive-maintenance}/Dockerfile +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/predictive-maintenance/_prompts.json +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/predictive-maintenance/agency/__init__.py +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/predictive-maintenance/agency/__pycache__/__init__.cpython-314.pyc +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/predictive-maintenance/agency/_shared/__init__.py +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/predictive-maintenance/agency/_shared/audit_logger.py +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/predictive-maintenance/docker-compose.yml +0 -0
- {create_leafmesh-2.5.2/create_leafmesh/templates/production-planning → create_leafmesh-2.6.0/create_leafmesh/templates/predictive-maintenance}/dockerignore +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/predictive-maintenance/examples/01_routine_sensor_reading.json +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/predictive-maintenance/examples/03_safety_critical_shutdown.json +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/predictive-maintenance/examples/04_weekly_parts_forecast.json +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/predictive-maintenance/examples/README.md +0 -0
- {create_leafmesh-2.5.2/create_leafmesh/templates/marketing-ops → create_leafmesh-2.6.0/create_leafmesh/templates/predictive-maintenance}/examples/run_examples.py +0 -0
- {create_leafmesh-2.5.2/create_leafmesh/templates/bench-management → create_leafmesh-2.6.0/create_leafmesh/templates/predictive-maintenance}/gitignore +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/predictive-maintenance/logs/leafmesh_2026-06-09.log +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/predictive-maintenance/logs/leafmesh_2026-06-10.log +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/predictive-maintenance/logs/leafmesh_2026-06-11.log +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/predictive-maintenance/logs/leafmesh_2026-06-12.log +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/predictive-maintenance/main.py +0 -0
- {create_leafmesh-2.5.2/create_leafmesh/templates/production-planning → create_leafmesh-2.6.0/create_leafmesh/templates/predictive-maintenance}/pytest.ini +0 -0
- {create_leafmesh-2.5.2/create_leafmesh/templates/infra-cost-ops → create_leafmesh-2.6.0/create_leafmesh/templates/predictive-maintenance}/requirements-dev.txt +0 -0
- {create_leafmesh-2.5.2/create_leafmesh/templates/production-planning → create_leafmesh-2.6.0/create_leafmesh/templates/predictive-maintenance}/requirements.txt +0 -0
- {create_leafmesh-2.5.2/create_leafmesh/templates/production-planning → create_leafmesh-2.6.0/create_leafmesh/templates/predictive-maintenance}/tests/__init__.py +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/predictive-maintenance/tests/__pycache__/__init__.cpython-314.pyc +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/predictive-maintenance/tests/__pycache__/conftest.cpython-314-pytest-9.0.2.pyc +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/predictive-maintenance/tests/conftest.py +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/procurement-ops/Dockerfile +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/procurement-ops/TESTING_GUIDE.md +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/procurement-ops/WORKFLOW_GUIDE.md +0 -0
- {create_leafmesh-2.5.2/create_leafmesh/templates/quality-yield/tests → create_leafmesh-2.6.0/create_leafmesh/templates/procurement-ops/agency}/__init__.py +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/procurement-ops/agency/__pycache__/__init__.cpython-314.pyc +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/procurement-ops/agency/__pycache__/data_loader.cpython-314.pyc +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/procurement-ops/agency/__pycache__/grn_agent.cpython-314.pyc +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/procurement-ops/agency/__pycache__/logistics_agent.cpython-314.pyc +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/procurement-ops/agency/__pycache__/supplier_agent.cpython-314.pyc +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/procurement-ops/agency/__pycache__/supply_report_agent.cpython-314.pyc +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/procurement-ops/agency/_shared/__init__.py +0 -0
- {create_leafmesh-2.5.2/create_leafmesh/templates/engineering-sdlc → create_leafmesh-2.6.0/create_leafmesh/templates/procurement-ops}/agency/_shared/session_stash.py +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/procurement-ops/agency/data_loader.py +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/procurement-ops/agency/grn_agent.py +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/procurement-ops/agency/logistics_agent.py +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/procurement-ops/agency/supplier_agent.py +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/procurement-ops/agency/supply_report_agent.py +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/procurement-ops/configs/inventory.yaml +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/procurement-ops/configs/open_pos.yaml +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/procurement-ops/configs/suppliers.yaml +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/procurement-ops/docker-compose.yml +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/procurement-ops/dockerignore +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/procurement-ops/gitignore +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/procurement-ops/main.py +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/procurement-ops/requirements.txt +0 -0
- {create_leafmesh-2.5.2/create_leafmesh/templates/quote-to-cash → create_leafmesh-2.6.0/create_leafmesh/templates/procurement-ops}/tests/__init__.py +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/procurement-ops/tests/__pycache__/__init__.cpython-314.pyc +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/procurement-ops/tests/__pycache__/test_config_shape.cpython-314-pytest-9.0.2.pyc +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/procurement-ops/tests/test_config_shape.py +0 -0
- {create_leafmesh-2.5.2/create_leafmesh/templates/quality-yield → create_leafmesh-2.6.0/create_leafmesh/templates/production-planning}/Dockerfile +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/production-planning/_prompts.json +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/production-planning/agency/__init__.py +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/production-planning/agency/__pycache__/__init__.cpython-314.pyc +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/production-planning/agency/_shared/__init__.py +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/production-planning/agency/release_agent.py +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/production-planning/docker-compose.yml +0 -0
- {create_leafmesh-2.5.2/create_leafmesh/templates/quality-yield → create_leafmesh-2.6.0/create_leafmesh/templates/production-planning}/dockerignore +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/production-planning/examples/01_demand_signal_normal.json +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/production-planning/examples/02_supplier_delay.json +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/production-planning/examples/03_emergency_constraint_alert.json +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/production-planning/examples/04_supplier_capacity_change.json +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/production-planning/examples/README.md +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/production-planning/examples/run_examples.py +0 -0
- {create_leafmesh-2.5.2/create_leafmesh/templates/quality-yield → create_leafmesh-2.6.0/create_leafmesh/templates/production-planning}/pytest.ini +0 -0
- {create_leafmesh-2.5.2/create_leafmesh/templates/predictive-maintenance → create_leafmesh-2.6.0/create_leafmesh/templates/production-planning}/requirements-dev.txt +0 -0
- {create_leafmesh-2.5.2/create_leafmesh/templates/quality-yield → create_leafmesh-2.6.0/create_leafmesh/templates/production-planning}/requirements.txt +0 -0
- {create_leafmesh-2.5.2/create_leafmesh/templates/recruiting-ops → create_leafmesh-2.6.0/create_leafmesh/templates/production-planning}/tests/__init__.py +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/production-planning/tests/__pycache__/__init__.cpython-314.pyc +0 -0
- {create_leafmesh-2.5.2/create_leafmesh/templates/quote-to-cash → create_leafmesh-2.6.0/create_leafmesh/templates/quality-yield}/Dockerfile +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/quality-yield/_prompts.json +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/quality-yield/agency/_shared/__init__.py +0 -0
- {create_leafmesh-2.5.2/create_leafmesh/templates/production-planning → create_leafmesh-2.6.0/create_leafmesh/templates/quality-yield}/agency/_shared/audit_logger.py +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/quality-yield/docker-compose.yml +0 -0
- {create_leafmesh-2.5.2/create_leafmesh/templates/quote-to-cash → create_leafmesh-2.6.0/create_leafmesh/templates/quality-yield}/dockerignore +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/quality-yield/examples/01_routine_inspection.json +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/quality-yield/examples/02_defect_cluster.json +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/quality-yield/examples/03_field_complaint_recall.json +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/quality-yield/examples/04_regulatory_audit_pull.json +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/quality-yield/examples/README.md +0 -0
- {create_leafmesh-2.5.2/create_leafmesh/templates/predictive-maintenance → create_leafmesh-2.6.0/create_leafmesh/templates/quality-yield}/examples/run_examples.py +0 -0
- {create_leafmesh-2.5.2/create_leafmesh/templates/customer-success → create_leafmesh-2.6.0/create_leafmesh/templates/quality-yield}/gitignore +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/quality-yield/main.py +0 -0
- {create_leafmesh-2.5.2/create_leafmesh/templates/quote-to-cash → create_leafmesh-2.6.0/create_leafmesh/templates/quality-yield}/pytest.ini +0 -0
- {create_leafmesh-2.5.2/create_leafmesh/templates/production-planning → create_leafmesh-2.6.0/create_leafmesh/templates/quality-yield}/requirements-dev.txt +0 -0
- {create_leafmesh-2.5.2/create_leafmesh/templates/quote-to-cash → create_leafmesh-2.6.0/create_leafmesh/templates/quality-yield}/requirements.txt +0 -0
- {create_leafmesh-2.5.2/create_leafmesh/templates/sales-orchestration → create_leafmesh-2.6.0/create_leafmesh/templates/quality-yield}/tests/__init__.py +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/quality-yield/tests/__pycache__/__init__.cpython-314.pyc +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/quality-yield/tests/__pycache__/conftest.cpython-314-pytest-9.0.2.pyc +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/quality-yield/tests/conftest.py +0 -0
- {create_leafmesh-2.5.2/create_leafmesh/templates/recruiting-ops → create_leafmesh-2.6.0/create_leafmesh/templates/quote-to-cash}/Dockerfile +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/quote-to-cash/_prompts.json +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/quote-to-cash/agency/__init__.py +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/quote-to-cash/agency/_shared/__init__.py +0 -0
- {create_leafmesh-2.5.2/create_leafmesh/templates/quality-yield → create_leafmesh-2.6.0/create_leafmesh/templates/quote-to-cash}/agency/_shared/audit_logger.py +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/quote-to-cash/agency/_shared/session_stash.py +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/quote-to-cash/docker-compose.yml +0 -0
- {create_leafmesh-2.5.2/create_leafmesh/templates/recruiting-ops → create_leafmesh-2.6.0/create_leafmesh/templates/quote-to-cash}/dockerignore +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/quote-to-cash/examples/01_rfq_standard.json +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/quote-to-cash/examples/02_steep_discount_finance.json +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/quote-to-cash/examples/03_competitor_price_change.json +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/quote-to-cash/examples/04_renewal_uplift_bundle.json +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/quote-to-cash/examples/README.md +0 -0
- {create_leafmesh-2.5.2/create_leafmesh/templates/quality-yield → create_leafmesh-2.6.0/create_leafmesh/templates/quote-to-cash}/examples/run_examples.py +0 -0
- {create_leafmesh-2.5.2/create_leafmesh/templates/customer-support → create_leafmesh-2.6.0/create_leafmesh/templates/quote-to-cash}/gitignore +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/quote-to-cash/main.py +0 -0
- {create_leafmesh-2.5.2/create_leafmesh/templates/recruiting-ops → create_leafmesh-2.6.0/create_leafmesh/templates/quote-to-cash}/pytest.ini +0 -0
- {create_leafmesh-2.5.2/create_leafmesh/templates/quality-yield → create_leafmesh-2.6.0/create_leafmesh/templates/quote-to-cash}/requirements-dev.txt +0 -0
- {create_leafmesh-2.5.2/create_leafmesh/templates/recruiting-ops → create_leafmesh-2.6.0/create_leafmesh/templates/quote-to-cash}/requirements.txt +0 -0
- {create_leafmesh-2.5.2/create_leafmesh/templates/services-delivery → create_leafmesh-2.6.0/create_leafmesh/templates/quote-to-cash}/tests/__init__.py +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/quote-to-cash/tests/__pycache__/__init__.cpython-314.pyc +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/quote-to-cash/tests/__pycache__/conftest.cpython-314-pytest-9.0.2.pyc +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/quote-to-cash/tests/conftest.py +0 -0
- {create_leafmesh-2.5.2/create_leafmesh/templates/sales-orchestration → create_leafmesh-2.6.0/create_leafmesh/templates/recruiting-ops}/Dockerfile +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/recruiting-ops/_prompts.json +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/recruiting-ops/agency/__init__.py +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/recruiting-ops/agency/__pycache__/__init__.cpython-314.pyc +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/recruiting-ops/agency/_shared/__init__.py +0 -0
- {create_leafmesh-2.5.2/create_leafmesh/templates/quote-to-cash → create_leafmesh-2.6.0/create_leafmesh/templates/recruiting-ops}/agency/_shared/audit_logger.py +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/recruiting-ops/agency/bias_audit_agent.py +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/recruiting-ops/docker-compose.yml +0 -0
- {create_leafmesh-2.5.2/create_leafmesh/templates/sales-orchestration → create_leafmesh-2.6.0/create_leafmesh/templates/recruiting-ops}/dockerignore +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/recruiting-ops/examples/01_new_req_filed.json +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/recruiting-ops/examples/02_candidate_rejection_letter.json +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/recruiting-ops/examples/03_offer_drafting.json +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/recruiting-ops/examples/04_ghosted_candidate_close.json +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/recruiting-ops/examples/README.md +0 -0
- {create_leafmesh-2.5.2/create_leafmesh/templates/quote-to-cash → create_leafmesh-2.6.0/create_leafmesh/templates/recruiting-ops}/examples/run_examples.py +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/recruiting-ops/main.py +0 -0
- {create_leafmesh-2.5.2/create_leafmesh/templates/sales-orchestration → create_leafmesh-2.6.0/create_leafmesh/templates/recruiting-ops}/pytest.ini +0 -0
- {create_leafmesh-2.5.2/create_leafmesh/templates/quote-to-cash → create_leafmesh-2.6.0/create_leafmesh/templates/recruiting-ops}/requirements-dev.txt +0 -0
- {create_leafmesh-2.5.2/create_leafmesh/templates/sales-orchestration → create_leafmesh-2.6.0/create_leafmesh/templates/recruiting-ops}/requirements.txt +0 -0
- {create_leafmesh-2.5.2/create_leafmesh/templates/starter → create_leafmesh-2.6.0/create_leafmesh/templates/recruiting-ops}/tests/__init__.py +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/recruiting-ops/tests/__pycache__/__init__.cpython-314.pyc +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/recruiting-ops/tests/__pycache__/conftest.cpython-314-pytest-9.0.2.pyc +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/recruiting-ops/tests/conftest.py +0 -0
- {create_leafmesh-2.5.2/create_leafmesh/templates/starter → create_leafmesh-2.6.0/create_leafmesh/templates/sales-orchestration}/Dockerfile +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/sales-orchestration/_prompts.json +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/sales-orchestration/agency/__init__.py +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/sales-orchestration/agency/_shared/__init__.py +0 -0
- {create_leafmesh-2.5.2/create_leafmesh/templates/recruiting-ops → create_leafmesh-2.6.0/create_leafmesh/templates/sales-orchestration}/agency/_shared/audit_logger.py +0 -0
- {create_leafmesh-2.5.2/create_leafmesh/templates/starter → create_leafmesh-2.6.0/create_leafmesh/templates/sales-orchestration}/dockerignore +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/sales-orchestration/env +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/sales-orchestration/examples/01_inbound_demo_request.json +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/sales-orchestration/examples/02_cold_lead_revival.json +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/sales-orchestration/examples/03_competitor_steal_signal.json +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/sales-orchestration/examples/04_event_followup_burst.json +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/sales-orchestration/examples/05_enriched_inbound_lead.json +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/sales-orchestration/examples/06_deal_nurture_sweep.json +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/sales-orchestration/examples/07_abm_account_activation.json +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/sales-orchestration/examples/08_competitive_intel_pull.json +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/sales-orchestration/examples/README.md +0 -0
- {create_leafmesh-2.5.2/create_leafmesh/templates/recruiting-ops → create_leafmesh-2.6.0/create_leafmesh/templates/sales-orchestration}/examples/run_examples.py +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/sales-orchestration/main.py +0 -0
- {create_leafmesh-2.5.2/create_leafmesh/templates/starter → create_leafmesh-2.6.0/create_leafmesh/templates/sales-orchestration}/pytest.ini +0 -0
- {create_leafmesh-2.5.2/create_leafmesh/templates/recruiting-ops → create_leafmesh-2.6.0/create_leafmesh/templates/sales-orchestration}/requirements-dev.txt +0 -0
- {create_leafmesh-2.5.2/create_leafmesh/templates/services-delivery → create_leafmesh-2.6.0/create_leafmesh/templates/sales-orchestration}/requirements.txt +0 -0
- {create_leafmesh-2.5.2/create_leafmesh/templates/warehouse-supply-chain → create_leafmesh-2.6.0/create_leafmesh/templates/sales-orchestration}/tests/__init__.py +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/sales-orchestration/tests/__pycache__/__init__.cpython-314.pyc +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/sales-orchestration/tests/conftest.py +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/services-delivery/Dockerfile +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/services-delivery/_prompts.json +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/services-delivery/agency/__init__.py +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/services-delivery/agency/_shared/__init__.py +0 -0
- {create_leafmesh-2.5.2/create_leafmesh/templates/sales-orchestration → create_leafmesh-2.6.0/create_leafmesh/templates/services-delivery}/agency/_shared/audit_logger.py +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/services-delivery/docker-compose.yml +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/services-delivery/dockerignore +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/services-delivery/examples/02_friday_status_pack.json +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/services-delivery/examples/03_high_stakes_deliverable.json +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/services-delivery/examples/04_monthly_steering_pack.json +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/services-delivery/examples/README.md +0 -0
- {create_leafmesh-2.5.2/create_leafmesh/templates/sales-orchestration → create_leafmesh-2.6.0/create_leafmesh/templates/services-delivery}/examples/run_examples.py +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/services-delivery/logs/leafmesh_2026-06-11.log +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/services-delivery/logs/leafmesh_2026-06-12.log +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/services-delivery/main.py +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/services-delivery/pytest.ini +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/services-delivery/requirements-dev.txt +0 -0
- {create_leafmesh-2.5.2/create_leafmesh/templates/starter → create_leafmesh-2.6.0/create_leafmesh/templates/services-delivery}/requirements.txt +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/services-delivery/tests/__pycache__/__init__.cpython-314.pyc +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/services-delivery/tests/__pycache__/conftest.cpython-314-pytest-9.0.2.pyc +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/services-delivery/tests/conftest.py +0 -0
- {create_leafmesh-2.5.2/create_leafmesh/templates/warehouse-supply-chain → create_leafmesh-2.6.0/create_leafmesh/templates/starter}/Dockerfile +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/starter/README.md +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/starter/_prompts.json +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/starter/agency/__init__.py +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/starter/agency/_shared/__init__.py +0 -0
- {create_leafmesh-2.5.2/create_leafmesh/templates/services-delivery → create_leafmesh-2.6.0/create_leafmesh/templates/starter}/agency/_shared/audit_logger.py +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/starter/configs/config.yaml +0 -0
- {create_leafmesh-2.5.2/create_leafmesh/templates/warehouse-supply-chain → create_leafmesh-2.6.0/create_leafmesh/templates/starter}/dockerignore +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/starter/env +0 -0
- {create_leafmesh-2.5.2/create_leafmesh/templates/engineering-sdlc → create_leafmesh-2.6.0/create_leafmesh/templates/starter}/gitignore +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/starter/main.py +0 -0
- {create_leafmesh-2.5.2/create_leafmesh/templates/warehouse-supply-chain → create_leafmesh-2.6.0/create_leafmesh/templates/starter}/pytest.ini +0 -0
- {create_leafmesh-2.5.2/create_leafmesh/templates/warehouse-supply-chain → create_leafmesh-2.6.0/create_leafmesh/templates/starter}/requirements.txt +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/starter/tests/conftest.py +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/starter/tests/test_config_shape.py +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/warehouse-supply-chain/_prompts.json +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/warehouse-supply-chain/agency/__init__.py +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/warehouse-supply-chain/agency/_shared/__init__.py +0 -0
- {create_leafmesh-2.5.2/create_leafmesh/templates/starter → create_leafmesh-2.6.0/create_leafmesh/templates/warehouse-supply-chain}/agency/_shared/audit_logger.py +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/warehouse-supply-chain/agency/inspection_humanoid.py +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/warehouse-supply-chain/docker-compose.yml +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/warehouse-supply-chain/examples/03_returns_inspection.json +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/warehouse-supply-chain/examples/04_carrier_outage_failover.json +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/warehouse-supply-chain/examples/README.md +0 -0
- {create_leafmesh-2.5.2/create_leafmesh/templates/services-delivery → create_leafmesh-2.6.0/create_leafmesh/templates/warehouse-supply-chain}/examples/run_examples.py +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/warehouse-supply-chain/logs/leafmesh_2026-06-11.log +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/warehouse-supply-chain/logs/leafmesh_2026-06-12.log +0 -0
- {create_leafmesh-2.5.2/create_leafmesh/templates/sales-orchestration → create_leafmesh-2.6.0/create_leafmesh/templates/warehouse-supply-chain}/requirements-dev.txt +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/warehouse-supply-chain/tests/__pycache__/__init__.cpython-314.pyc +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh/templates/warehouse-supply-chain/tests/conftest.py +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh.egg-info/dependency_links.txt +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh.egg-info/entry_points.txt +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh.egg-info/requires.txt +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/create_leafmesh.egg-info/top_level.txt +0 -0
- {create_leafmesh-2.5.2 → create_leafmesh-2.6.0}/setup.cfg +0 -0
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: create-leafmesh
|
|
3
|
+
Version: 2.6.0
|
|
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,221 @@
|
|
|
1
|
+
#!/usr/bin/env python3
|
|
2
|
+
"""validate_config.py — pre-flight checks for a LeafMesh project config.
|
|
3
|
+
|
|
4
|
+
Run from the project root BEFORE `python main.py`:
|
|
5
|
+
|
|
6
|
+
python validate_config.py # checks configs/config.yaml
|
|
7
|
+
python validate_config.py path/to/other.yaml
|
|
8
|
+
|
|
9
|
+
Catches, with file/line context where possible:
|
|
10
|
+
1. YAML syntax errors (bad indentation, tabs, missing colons)
|
|
11
|
+
2. can_call / entry_point / wait_for targets that don't exist
|
|
12
|
+
3. conditions referencing yields the calling agent never returns
|
|
13
|
+
(human agents may only use the SDK's human-response meta fields)
|
|
14
|
+
4. yields ↔ prompt contract mismatches on LLM agents — the SDK
|
|
15
|
+
refuses to boot when the prompt's JSON keys have NO overlap with
|
|
16
|
+
the declared yields (the "Hello!" silent-fallback class)
|
|
17
|
+
5. timeout fallback messages that match none of the gate's routes
|
|
18
|
+
6. one wake_up per agent + 5-field cron shape
|
|
19
|
+
7. module reconciliation — a *_agent.py that matches no agent (silent
|
|
20
|
+
dead code), and an external agent with no shaper bound
|
|
21
|
+
|
|
22
|
+
Exit code 0 = clean, 1 = problems found.
|
|
23
|
+
"""
|
|
24
|
+
from __future__ import annotations
|
|
25
|
+
|
|
26
|
+
import re
|
|
27
|
+
import sys
|
|
28
|
+
from pathlib import Path
|
|
29
|
+
|
|
30
|
+
try:
|
|
31
|
+
import yaml
|
|
32
|
+
except ImportError:
|
|
33
|
+
print("PyYAML required: pip install PyYAML")
|
|
34
|
+
sys.exit(2)
|
|
35
|
+
|
|
36
|
+
HUMAN_META = frozenset({
|
|
37
|
+
"from_agent", "human_data", "human_decision", "human_initiated",
|
|
38
|
+
"human_message", "original_webhook_data", "source_agent", "timestamp",
|
|
39
|
+
})
|
|
40
|
+
COND_RE = re.compile(r"calling_agent_response\.([A-Za-z_][\w]*)")
|
|
41
|
+
CRON_RE = re.compile(r"^\s*\S+\s+\S+\s+\S+\s+\S+\s+\S+\s*$")
|
|
42
|
+
|
|
43
|
+
problems: list[str] = []
|
|
44
|
+
warnings: list[str] = []
|
|
45
|
+
|
|
46
|
+
|
|
47
|
+
def err(msg: str) -> None:
|
|
48
|
+
problems.append(msg)
|
|
49
|
+
print(f" ✗ {msg}")
|
|
50
|
+
|
|
51
|
+
|
|
52
|
+
def warn(msg: str) -> None:
|
|
53
|
+
warnings.append(msg)
|
|
54
|
+
print(f" ⚠ {msg}")
|
|
55
|
+
|
|
56
|
+
|
|
57
|
+
def load(path: Path) -> dict | None:
|
|
58
|
+
raw = path.read_text(encoding="utf-8")
|
|
59
|
+
for i, line in enumerate(raw.splitlines(), 1):
|
|
60
|
+
if "\t" in line.split("#")[0]:
|
|
61
|
+
err(f"{path}:{i}: TAB character in YAML indentation — use spaces")
|
|
62
|
+
raw = raw.replace("{{project_name}}", "validate-check")
|
|
63
|
+
raw = re.sub(r"\{\{\w+\}\}", "0", raw)
|
|
64
|
+
try:
|
|
65
|
+
return yaml.safe_load(raw)
|
|
66
|
+
except yaml.YAMLError as e:
|
|
67
|
+
mark = getattr(e, "problem_mark", None)
|
|
68
|
+
loc = f" at line {mark.line + 1}, column {mark.column + 1}" if mark else ""
|
|
69
|
+
err(f"{path}: YAML parse failed{loc}: "
|
|
70
|
+
f"{getattr(e, 'problem', e)} — check indentation around that line")
|
|
71
|
+
return None
|
|
72
|
+
|
|
73
|
+
|
|
74
|
+
def is_human(a: dict) -> bool:
|
|
75
|
+
return a.get("agent_type") == "human" or bool(a.get("is_human_powered"))
|
|
76
|
+
|
|
77
|
+
|
|
78
|
+
def cond_fires_for_message(cond: str, message: str) -> bool:
|
|
79
|
+
def atom(expr: str) -> bool:
|
|
80
|
+
m = re.match(r"\s*calling_agent_response\.(\w+)\s*([!=]=)\s*'([^']*)'\s*$", expr)
|
|
81
|
+
if not m:
|
|
82
|
+
return False
|
|
83
|
+
field, op, val = m.groups()
|
|
84
|
+
if field != "human_message":
|
|
85
|
+
return False
|
|
86
|
+
return (message == val) if op == "==" else (message != val)
|
|
87
|
+
return any(all(atom(x) for x in part.split(" and "))
|
|
88
|
+
for part in cond.split(" or "))
|
|
89
|
+
|
|
90
|
+
|
|
91
|
+
def main() -> int:
|
|
92
|
+
target = Path(sys.argv[1]) if len(sys.argv) > 1 else Path("configs/config.yaml")
|
|
93
|
+
if not target.exists():
|
|
94
|
+
print(f"config not found: {target}")
|
|
95
|
+
return 1
|
|
96
|
+
|
|
97
|
+
print(f"Validating {target} ...")
|
|
98
|
+
cfg = load(target)
|
|
99
|
+
if cfg is None:
|
|
100
|
+
return 1
|
|
101
|
+
agents = cfg.get("agents") or {}
|
|
102
|
+
names = set(agents.keys())
|
|
103
|
+
|
|
104
|
+
# 2. targets exist
|
|
105
|
+
for n, a in agents.items():
|
|
106
|
+
if not isinstance(a, dict):
|
|
107
|
+
err(f"agent '{n}' is not a mapping — check indentation under it")
|
|
108
|
+
continue
|
|
109
|
+
for cc in a.get("can_call") or []:
|
|
110
|
+
if isinstance(cc, dict) and cc.get("agent") not in names:
|
|
111
|
+
err(f"{n}: can_call → '{cc.get('agent')}' does not exist")
|
|
112
|
+
wf = a.get("wait_for")
|
|
113
|
+
if wf:
|
|
114
|
+
for tok in re.findall(r"[A-Za-z_][\w]*", str(wf)):
|
|
115
|
+
if tok not in names and tok not in ("AND", "OR", "and", "or"):
|
|
116
|
+
err(f"{n}: wait_for references unknown agent '{tok}'")
|
|
117
|
+
for ep in cfg.get("entry_points") or []:
|
|
118
|
+
if isinstance(ep, dict) and ep.get("target") not in names:
|
|
119
|
+
err(f"entry_point '{ep.get('name')}' → '{ep.get('target')}' does not exist")
|
|
120
|
+
|
|
121
|
+
# 3. conditions vs yields / human meta
|
|
122
|
+
for n, a in agents.items():
|
|
123
|
+
if not isinstance(a, dict):
|
|
124
|
+
continue
|
|
125
|
+
yields = set((a.get("yields") or {}).keys())
|
|
126
|
+
human = is_human(a)
|
|
127
|
+
for cc in a.get("can_call") or []:
|
|
128
|
+
if not isinstance(cc, dict) or not cc.get("condition"):
|
|
129
|
+
continue
|
|
130
|
+
for ref in COND_RE.findall(str(cc["condition"])):
|
|
131
|
+
if human and ref not in HUMAN_META:
|
|
132
|
+
err(f"{n}→{cc.get('agent')}: human gate condition uses "
|
|
133
|
+
f"'{ref}' — human responses only deliver "
|
|
134
|
+
f"{sorted(HUMAN_META)[:3]}... (use human_message)")
|
|
135
|
+
elif not human and ref not in yields and ref not in HUMAN_META:
|
|
136
|
+
err(f"{n}→{cc.get('agent')}: condition uses '{ref}' "
|
|
137
|
+
f"which is not in {n}'s yields")
|
|
138
|
+
|
|
139
|
+
# 4. yields ↔ prompt contract (LLM agents)
|
|
140
|
+
for n, a in agents.items():
|
|
141
|
+
if not isinstance(a, dict) or a.get("agent_type") != "llm":
|
|
142
|
+
continue
|
|
143
|
+
yields = set((a.get("yields") or {}).keys())
|
|
144
|
+
prompt = a.get("prompt") or ""
|
|
145
|
+
if not yields or not prompt:
|
|
146
|
+
continue
|
|
147
|
+
mentioned = {k for k in yields if re.search(rf'["\-\s]{re.escape(k)}["\s]*:', prompt)}
|
|
148
|
+
if not mentioned:
|
|
149
|
+
err(f"{n}: prompt mentions NONE of its {len(yields)} yields keys — "
|
|
150
|
+
f"the SDK will refuse to boot. Add an OUTPUT CONTRACT line "
|
|
151
|
+
f"listing them, e.g.\n OUTPUT CONTRACT — respond with "
|
|
152
|
+
f"ONLY valid JSON containing exactly these keys:\n "
|
|
153
|
+
+ "{" + ", ".join(f'"{k}": ...' for k in sorted(yields)) + "}")
|
|
154
|
+
elif len(mentioned) < len(yields):
|
|
155
|
+
print(f" ⚠ {n}: prompt mentions {len(mentioned)}/{len(yields)} "
|
|
156
|
+
f"yields keys (missing: {sorted(yields - mentioned)[:5]}...) — "
|
|
157
|
+
f"boots, but enforce_yields retries are likelier")
|
|
158
|
+
|
|
159
|
+
# 5. timeout fallbacks route somewhere
|
|
160
|
+
for n, a in agents.items():
|
|
161
|
+
if not isinstance(a, dict) or not is_human(a):
|
|
162
|
+
continue
|
|
163
|
+
edges = [cc for cc in a.get("can_call") or [] if isinstance(cc, dict)]
|
|
164
|
+
fr = a.get("fallback_response") or {}
|
|
165
|
+
msg = str(fr.get("message", ""))
|
|
166
|
+
if not edges or not fr or not msg:
|
|
167
|
+
continue
|
|
168
|
+
if not any(not cc.get("condition")
|
|
169
|
+
or cond_fires_for_message(str(cc["condition"]), msg)
|
|
170
|
+
for cc in edges):
|
|
171
|
+
err(f"{n}: timeout fallback message {msg!r} matches no route — "
|
|
172
|
+
f"an unanswered approval would silently kill the flow")
|
|
173
|
+
|
|
174
|
+
# 6. cron shape
|
|
175
|
+
for n, a in agents.items():
|
|
176
|
+
if isinstance(a, dict) and a.get("wake_up") \
|
|
177
|
+
and not CRON_RE.match(str(a["wake_up"])):
|
|
178
|
+
err(f"{n}: wake_up {a['wake_up']!r} is not a 5-field cron")
|
|
179
|
+
|
|
180
|
+
# 7. Module reconciliation — catch the silent dead-code class: a
|
|
181
|
+
# `*_agent.py` in ./agency that matches no agent never binds (it's
|
|
182
|
+
# written but unreachable). And an `external` agent whose intended
|
|
183
|
+
# shaper lives in _shared/ must be registered in main.py — flag
|
|
184
|
+
# when neither a top-level module nor a registration is evident.
|
|
185
|
+
agency = target.parent.parent / "agency"
|
|
186
|
+
if agency.is_dir():
|
|
187
|
+
for mod in sorted(agency.glob("*_agent.py")):
|
|
188
|
+
if mod.stem not in names:
|
|
189
|
+
warn(f"agency/{mod.name}: matches no agent in config — it will "
|
|
190
|
+
f"never bind (dead code). Rename it to a real agent, or "
|
|
191
|
+
f"remove it.")
|
|
192
|
+
# External agents whose module DOES exist top-level auto-bind; but
|
|
193
|
+
# if an external agent has no top-level module AND main.py has no
|
|
194
|
+
# explicit registration for it, its connector result is returned
|
|
195
|
+
# raw (no shaping). Surface it so it's a choice, not a surprise.
|
|
196
|
+
main_py = (target.parent.parent / "main.py")
|
|
197
|
+
main_src = main_py.read_text(encoding="utf-8") if main_py.exists() else ""
|
|
198
|
+
for n, a in agents.items():
|
|
199
|
+
if not isinstance(a, dict) or a.get("agent_type") != "external":
|
|
200
|
+
continue
|
|
201
|
+
if a.get("framework") == "custom":
|
|
202
|
+
continue # custom sinks (e.g. audit) register their own way
|
|
203
|
+
has_module = (agency / f"{n}.py").exists()
|
|
204
|
+
registered = f'"{n}"' in main_src or f"'{n}'" in main_src
|
|
205
|
+
if not has_module and not registered:
|
|
206
|
+
warn(f"{n}: external agent with no shaper — connector result is "
|
|
207
|
+
f"returned raw (unmapped to yields). Add agency/{n}.py "
|
|
208
|
+
f"(auto-binds) or register a shaper in main.py if you need "
|
|
209
|
+
f"to shape it.")
|
|
210
|
+
|
|
211
|
+
if problems:
|
|
212
|
+
print(f"\n{len(problems)} problem(s) found — fix before running main.py")
|
|
213
|
+
return 1
|
|
214
|
+
suffix = f" ({len(warnings)} warning(s))" if warnings else ""
|
|
215
|
+
print(f"OK — {len(names)} agents, "
|
|
216
|
+
f"{len(cfg.get('entry_points') or [])} entry points, all checks pass{suffix}")
|
|
217
|
+
return 0
|
|
218
|
+
|
|
219
|
+
|
|
220
|
+
if __name__ == "__main__":
|
|
221
|
+
sys.exit(main())
|