create-leafmesh 2.6.0__tar.gz → 2.6.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- create_leafmesh-2.6.2/MANIFEST.in +11 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/PKG-INFO +1 -1
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/__init__.py +1 -1
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/cli.py +149 -9
- create_leafmesh-2.6.2/create_leafmesh/search.py +157 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/_registry.yaml +26 -7
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/bd-proposals/agency/_shared/store.py +95 -0
- create_leafmesh-2.6.2/create_leafmesh/templates/bd-proposals/agency/proposal_assembler_agent.py +585 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/bd-proposals/configs/config.yaml +55 -1
- create_leafmesh-2.6.2/create_leafmesh/templates/bd-proposals/gitignore +17 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/bd-proposals/tests/test_config_shape.py +17 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/bd-proposals/tests/test_floors.py +54 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/bench-management/README.md +4 -2
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/bench-management/agency/_shared/store.py +131 -0
- create_leafmesh-2.6.2/create_leafmesh/templates/bench-management/agency/allocation_booker_agent.py +234 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/bench-management/configs/config.yaml +50 -2
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/bench-management/env +6 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/bench-management/tests/test_agent_logic.py +56 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/bench-management/tests/test_config_shape.py +18 -0
- create_leafmesh-2.6.2/create_leafmesh/templates/customer-success/agency/__init__.py +14 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/customer-success/agency/_shared/store.py +81 -0
- create_leafmesh-2.6.2/create_leafmesh/templates/customer-success/agency/play_runner_agent.py +247 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/customer-success/configs/config.yaml +76 -4
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/customer-success/env +9 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/customer-success/tests/test_agent_logic.py +73 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/customer-support/PRD.md +3 -3
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/customer-support/README.md +18 -8
- create_leafmesh-2.6.2/create_leafmesh/templates/customer-support/agency/_shared/store.py +88 -0
- create_leafmesh-2.6.2/create_leafmesh/templates/customer-support/agency/reply_dispatcher_agent.py +187 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/customer-support/configs/config.yaml +69 -5
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/customer-support/env +5 -0
- create_leafmesh-2.6.2/create_leafmesh/templates/customer-support/tests/test_agent_logic.py +136 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/customer-support/tests/test_config_shape.py +47 -5
- create_leafmesh-2.6.2/create_leafmesh/templates/procurement-ops/agency/_shared/audit_logger.py +156 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/procurement-ops/configs/config.yaml +63 -8
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/procurement-ops/main.py +9 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/quote-to-cash/PRD.md +28 -8
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/quote-to-cash/README.md +16 -7
- create_leafmesh-2.6.2/create_leafmesh/templates/quote-to-cash/agency/quote_issuer_agent.py +520 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/quote-to-cash/configs/config.yaml +61 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/quote-to-cash/env +2 -0
- create_leafmesh-2.6.2/create_leafmesh/templates/quote-to-cash/gitignore +17 -0
- create_leafmesh-2.6.2/create_leafmesh/templates/quote-to-cash/requirements.txt +10 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/quote-to-cash/tests/test_config_shape.py +28 -2
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/quote-to-cash/tests/test_floors.py +96 -1
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/services-delivery/agency/_shared/store.py +5 -0
- create_leafmesh-2.6.2/create_leafmesh/templates/services-delivery/agency/deliverable_assembler_agent.py +391 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/services-delivery/configs/config.yaml +57 -1
- create_leafmesh-2.6.2/create_leafmesh/templates/services-delivery/gitignore +17 -0
- create_leafmesh-2.6.2/create_leafmesh/templates/services-delivery/requirements.txt +10 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/services-delivery/tests/test_agent_logic.py +92 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/services-delivery/tests/test_config_shape.py +36 -4
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh.egg-info/PKG-INFO +1 -1
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh.egg-info/SOURCES.txt +11 -308
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/pyproject.toml +17 -1
- create_leafmesh-2.6.2/tests/test_search.py +140 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/_inspire/logs/leafmesh_2026-06-11.log +0 -6
- create_leafmesh-2.6.0/create_leafmesh/templates/ai-dev-squad/logs/leafmesh_2026-06-22.log +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/ai-dev-squad/logs/leafmesh_2026-06-23.log +0 -18
- 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/logs/leafmesh_2026-06-23.log +0 -43
- create_leafmesh-2.6.0/create_leafmesh/templates/bd-proposals/tests/__pycache__/__init__.cpython-314.pyc +0 -0
- 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.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/bench-management/agency/__pycache__/__init__.cpython-313.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/bench-management/agency/__pycache__/__init__.cpython-314.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/logs/leafmesh_2026-06-23.log +0 -10
- create_leafmesh-2.6.0/create_leafmesh/templates/bench-management/tests/__pycache__/__init__.cpython-314.pyc +0 -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/customer-success/agency/__init__.py +0 -8
- 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/logs/leafmesh_2026-06-23.log +0 -18
- create_leafmesh-2.6.0/create_leafmesh/templates/customer-success/tests/__pycache__/__init__.cpython-314.pyc +0 -0
- 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.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-support/logs/leafmesh_2026-06-11.log +0 -80
- create_leafmesh-2.6.0/create_leafmesh/templates/customer-support/logs/leafmesh_2026-06-12.log +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/customer-support/tests/test_agent_logic.py +0 -30
- 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__/__init__.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/logs/leafmesh_2026-06-23.log +0 -26
- create_leafmesh-2.6.0/create_leafmesh/templates/finance-ops/tests/__pycache__/__init__.cpython-314.pyc +0 -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/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/logs/leafmesh_2026-06-23.log +0 -22
- create_leafmesh-2.6.0/create_leafmesh/templates/infra-cost-ops/tests/__pycache__/__init__.cpython-314.pyc +0 -0
- 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.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/logs/leafmesh_2026-06-23.log +0 -82
- 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/logs/leafmesh_2026-06-12.log +0 -46
- create_leafmesh-2.6.0/create_leafmesh/templates/marketing-ops/logs/leafmesh_2026-06-23.log +0 -38
- create_leafmesh-2.6.0/create_leafmesh/templates/marketing-ops/tests/__pycache__/__init__.cpython-314.pyc +0 -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/outbound-sdr/logs/leafmesh_2026-06-21.log +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/predictive-maintenance/agency/__pycache__/__init__.cpython-314.pyc +0 -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/logs/leafmesh_2026-06-09.log +0 -21
- create_leafmesh-2.6.0/create_leafmesh/templates/predictive-maintenance/logs/leafmesh_2026-06-10.log +0 -7
- create_leafmesh-2.6.0/create_leafmesh/templates/predictive-maintenance/logs/leafmesh_2026-06-11.log +0 -88
- create_leafmesh-2.6.0/create_leafmesh/templates/predictive-maintenance/logs/leafmesh_2026-06-12.log +0 -32
- create_leafmesh-2.6.0/create_leafmesh/templates/predictive-maintenance/logs/leafmesh_2026-06-23.log +0 -750
- create_leafmesh-2.6.0/create_leafmesh/templates/predictive-maintenance/tests/__pycache__/__init__.cpython-314.pyc +0 -0
- 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.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/procurement-ops/agency/__pycache__/__init__.cpython-313.pyc +0 -0
- create_leafmesh-2.6.0/create_leafmesh/templates/procurement-ops/agency/__pycache__/__init__.cpython-314.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__/data_loader.cpython-314.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__/grn_agent.cpython-314.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__/logistics_agent.cpython-314.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__/supplier_agent.cpython-314.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__/supply_report_agent.cpython-314.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/logs/leafmesh_2026-06-23.log +0 -12
- create_leafmesh-2.6.0/create_leafmesh/templates/procurement-ops/tests/__pycache__/__init__.cpython-314.pyc +0 -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/__pycache__/test_config_shape.cpython-314-pytest-9.0.2.pyc +0 -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__/__init__.cpython-314.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/logs/leafmesh_2026-06-23.log +0 -22
- create_leafmesh-2.6.0/create_leafmesh/templates/production-planning/tests/__pycache__/__init__.cpython-314.pyc +0 -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/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/logs/leafmesh_2026-06-23.log +0 -94
- create_leafmesh-2.6.0/create_leafmesh/templates/quality-yield/tests/__pycache__/__init__.cpython-314.pyc +0 -0
- 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.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/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/logs/leafmesh_2026-06-23.log +0 -14
- create_leafmesh-2.6.0/create_leafmesh/templates/quote-to-cash/tests/__pycache__/__init__.cpython-314.pyc +0 -0
- 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.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/recruiting-ops/agency/__pycache__/__init__.cpython-314.pyc +0 -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/logs/leafmesh_2026-06-23.log +0 -16
- create_leafmesh-2.6.0/create_leafmesh/templates/recruiting-ops/tests/__pycache__/__init__.cpython-314.pyc +0 -0
- 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.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/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/gitignore +0 -16
- create_leafmesh-2.6.0/create_leafmesh/templates/sales-orchestration/logs/leafmesh_2026-06-23.log +0 -65
- create_leafmesh-2.6.0/create_leafmesh/templates/sales-orchestration/tests/__pycache__/__init__.cpython-314.pyc +0 -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/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/logs/leafmesh_2026-06-11.log +0 -86
- create_leafmesh-2.6.0/create_leafmesh/templates/services-delivery/logs/leafmesh_2026-06-12.log +0 -18
- create_leafmesh-2.6.0/create_leafmesh/templates/services-delivery/logs/leafmesh_2026-06-23.log +0 -193
- create_leafmesh-2.6.0/create_leafmesh/templates/services-delivery/tests/__pycache__/__init__.cpython-314.pyc +0 -0
- 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.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/starter/gitignore +0 -15
- create_leafmesh-2.6.0/create_leafmesh/templates/starter/requirements.txt +0 -6
- 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/gitignore +0 -16
- create_leafmesh-2.6.0/create_leafmesh/templates/warehouse-supply-chain/logs/leafmesh_2026-06-11.log +0 -9
- create_leafmesh-2.6.0/create_leafmesh/templates/warehouse-supply-chain/logs/leafmesh_2026-06-12.log +0 -12
- create_leafmesh-2.6.0/create_leafmesh/templates/warehouse-supply-chain/logs/leafmesh_2026-06-23.log +0 -312
- create_leafmesh-2.6.0/create_leafmesh/templates/warehouse-supply-chain/requirements.txt +0 -6
- create_leafmesh-2.6.0/create_leafmesh/templates/warehouse-supply-chain/tests/__pycache__/__init__.cpython-314.pyc +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-2.6.2}/README.md +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/create.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/deploy.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/deploy_providers/__init__.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/deploy_providers/_shared.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/deploy_providers/aws.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/deploy_providers/azure.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/deploy_providers/gcp.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/_inspire/Dockerfile +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/_inspire/README.md +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/_inspire/_REFERENCE_ONLY.md +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/_inspire/agency/__init__.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/_inspire/agency/advisor_agent.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/_inspire/agency/external_agents.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/_inspire/agency/fallback_researcher_agent.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/_inspire/agency/greeter_agent.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/_inspire/agency/processor_agent.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/_inspire/agency/researcher_agent.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/_inspire/agency/risk_scorer_agent.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/_inspire/agency/scheduler_agent.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/_inspire/agency/tools.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/_inspire/configs/config.yaml +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/_inspire/docker-compose.yml +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/_inspire/dockerignore +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/_inspire/env +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/_inspire/gitignore +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/_inspire/hitl_stub_receiver.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/_inspire/main.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/_inspire/requirements.txt +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/_inspire/skills/data-handling/SKILL.md +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/_inspire/skills/data-handling/examples.json +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/_inspire/skills/tone-rules.md +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/_inspire/tests/__init__.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/_inspire/tests/test_config_shape.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/_inspire/validate_config.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/ai-dev-squad/Dockerfile +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/ai-dev-squad/PRD.md +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/ai-dev-squad/README.md +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/ai-dev-squad/agency/__init__.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/ai-dev-squad/agency/_shared/__init__.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/ai-dev-squad/agency/_shared/audit_logger.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/ai-dev-squad/agency/_shared/session_stash.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/ai-dev-squad/agency/_shared/store.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/ai-dev-squad/agency/code_reviewer_agent.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/ai-dev-squad/agency/dev_planner_agent.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/ai-dev-squad/agency/developer_agent.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/ai-dev-squad/agency/merge_coordinator_agent.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/ai-dev-squad/agency/product_owner_agent.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/ai-dev-squad/agency/qa_agent.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/ai-dev-squad/agency/tools/__init__.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/ai-dev-squad/agency/tools/tools.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/ai-dev-squad/configs/config.yaml +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/ai-dev-squad/docker-compose.yml +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/ai-dev-squad/dockerignore +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/ai-dev-squad/env +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/ai-dev-squad/gitignore +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/ai-dev-squad/main.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/ai-dev-squad/pytest.ini +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/ai-dev-squad/requirements.txt +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/ai-dev-squad/tests/__init__.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/ai-dev-squad/tests/conftest.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/ai-dev-squad/tests/test_config_shape.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/ai-dev-squad/validate_config.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/bd-proposals/Dockerfile +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/bd-proposals/PRD.md +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/bd-proposals/README.md +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/bd-proposals/_prompts.json +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/bd-proposals/agency/__init__.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/bd-proposals/agency/_shared/__init__.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/bd-proposals/agency/_shared/audit_logger.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/bd-proposals/agency/_shared/session_stash.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/bd-proposals/agency/bid_no_bid_decisioner_agent.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/bd-proposals/agency/competitive_intel_agent.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/bd-proposals/agency/contracts_review_agent.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/bd-proposals/agency/precedent_research_agent.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/bd-proposals/agency/pricing_configurator_agent.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/bd-proposals/agency/rfp_intake_agent.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/bd-proposals/docker-compose.yml +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/bd-proposals/dockerignore +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/bd-proposals/env +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/bd-proposals/examples/01_new_rfp_received.json +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/bd-proposals/examples/02_win_post_mortem.json +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/bd-proposals/examples/03_loss_with_competitor.json +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/bd-proposals/examples/04_quarterly_win_rate.json +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/bd-proposals/examples/README.md +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/bd-proposals/examples/run_examples.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/bd-proposals/main.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/bd-proposals/pytest.ini +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/bd-proposals/requirements-dev.txt +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/bd-proposals/requirements.txt +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/bd-proposals/tests/__init__.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/bd-proposals/tests/conftest.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/bd-proposals/validate_config.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/bench-management/Dockerfile +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/bench-management/PRD.md +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/bench-management/_prompts.json +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/bench-management/agency/__init__.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/bench-management/agency/_shared/__init__.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/bench-management/agency/_shared/audit_logger.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/bench-management/agency/esat_survey_agent.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/bench-management/agency/staffing_coordinator_agent.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/bench-management/agency/talent_development_agent.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/bench-management/agency/workforce_analytics_agent.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/bench-management/docker-compose.yml +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/bench-management/dockerignore +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/bench-management/examples/01_new_project_kickoff.json +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/bench-management/examples/02_weekly_bench_review.json +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/bench-management/examples/03_promotion_readiness.json +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/bench-management/examples/04_person_rolling_off.json +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/bench-management/examples/README.md +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/bench-management/examples/run_examples.py +0 -0
- {create_leafmesh-2.6.0/create_leafmesh/templates/bd-proposals → create_leafmesh-2.6.2/create_leafmesh/templates/bench-management}/gitignore +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/bench-management/main.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/bench-management/pytest.ini +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/bench-management/requirements-dev.txt +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/bench-management/requirements.txt +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/bench-management/tests/__init__.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/bench-management/tests/conftest.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/bench-management/validate_config.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/claude_skills/leafmesh/SKILL.md +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/claude_skills/leafmesh/agency-development.md +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/claude_skills/leafmesh/agent-config-fields.md +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/claude_skills/leafmesh/examples.md +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/claude_skills/leafmesh/reference.md +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/customer-success/Dockerfile +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/customer-success/PRD.md +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/customer-success/README.md +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/customer-success/_prompts.json +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/customer-success/agency/_shared/__init__.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/customer-success/agency/_shared/audit_logger.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/customer-success/agency/_shared/extract.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/customer-success/agency/_shared/health_math.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/customer-success/agency/_shared/session_stash.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/customer-success/agency/account_intel_agent.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/customer-success/agency/health_score_agent.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/customer-success/agency/renewals_agent.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/customer-success/agency/risk_detector_agent.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/customer-success/agency/save_play_agent.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/customer-success/docker-compose.yml +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/customer-success/dockerignore +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/customer-success/examples/01_telemetry_dau_drop.json +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/customer-success/examples/02_billing_failed_payment.json +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/customer-success/examples/03_renewal_window_60d.json +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/customer-success/examples/04_executive_change.json +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/customer-success/examples/README.md +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/customer-success/examples/run_examples.py +0 -0
- {create_leafmesh-2.6.0/create_leafmesh/templates/bench-management → create_leafmesh-2.6.2/create_leafmesh/templates/customer-success}/gitignore +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/customer-success/main.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/customer-success/pytest.ini +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/customer-success/requirements-dev.txt +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/customer-success/requirements.txt +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/customer-success/tests/__init__.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/customer-success/tests/conftest.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/customer-success/tests/test_config_shape.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/customer-success/validate_config.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/customer-support/Dockerfile +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/customer-support/_prompts.json +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/customer-support/agency/__init__.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/customer-support/agency/_shared/__init__.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/customer-support/agency/_shared/audit_logger.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/customer-support/docker-compose.yml +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/customer-support/dockerignore +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/customer-support/examples/01_password_reset_routine.json +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/customer-support/examples/02_billing_dispute_escalation.json +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/customer-support/examples/03_security_incident.json +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/customer-support/examples/04_kb_gap_signal.json +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/customer-support/examples/README.md +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/customer-support/examples/run_examples.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/customer-support/gitignore +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/customer-support/main.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/customer-support/pytest.ini +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/customer-support/requirements-dev.txt +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/customer-support/requirements.txt +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/customer-support/tests/__init__.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/customer-support/tests/conftest.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/customer-support/validate_config.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/finance-ops/Dockerfile +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/finance-ops/PRD.md +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/finance-ops/README.md +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/finance-ops/_prompts.json +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/finance-ops/agency/__init__.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/finance-ops/agency/_shared/__init__.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/finance-ops/agency/_shared/audit_logger.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/finance-ops/agency/_shared/compliance_screen.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/finance-ops/agency/_shared/dedupe.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/finance-ops/agency/_shared/erp_poster.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/finance-ops/agency/_shared/matching_math.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/finance-ops/agency/_shared/session_stash.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/finance-ops/agency/_shared/store.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/finance-ops/agency/erp_poster_agent.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/finance-ops/agency/gl_coding_agent.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/finance-ops/agency/invoice_intake_agent.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/finance-ops/agency/loan_origination_agent.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/finance-ops/agency/loan_servicing_agent.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/finance-ops/agency/matching_agent.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/finance-ops/agency/payment_risk_agent.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/finance-ops/agency/regulatory_monitor_agent.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/finance-ops/agency/vendor_compliance_agent.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/finance-ops/configs/config.yaml +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/finance-ops/docker-compose.yml +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/finance-ops/dockerignore +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/finance-ops/env +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/finance-ops/examples/01_happy_path_subscription.json +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/finance-ops/examples/02_fraud_signal_round_number.json +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/finance-ops/examples/03_po_mismatch_exception.json +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/finance-ops/examples/04_high_value_cfo_signoff.json +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/finance-ops/examples/05_vendor_inquiry.json +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/finance-ops/examples/README.md +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/finance-ops/examples/run_examples.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/finance-ops/gitignore +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/finance-ops/main.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/finance-ops/pytest.ini +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/finance-ops/requirements-dev.txt +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/finance-ops/requirements.txt +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/finance-ops/tests/__init__.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/finance-ops/tests/conftest.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/finance-ops/tests/test_agent_logic.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/finance-ops/tests/test_config_shape.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/finance-ops/tests/test_floors.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/finance-ops/validate_config.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/infra-cost-ops/Dockerfile +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/infra-cost-ops/PRD.md +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/infra-cost-ops/README.md +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/infra-cost-ops/_prompts.json +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/infra-cost-ops/agency/__init__.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/infra-cost-ops/agency/_shared/__init__.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/infra-cost-ops/agency/_shared/audit_logger.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/infra-cost-ops/agency/_shared/session_stash.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/infra-cost-ops/agency/_shared/store.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/infra-cost-ops/agency/commitments_agent.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/infra-cost-ops/agency/cost_anomaly_agent.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/infra-cost-ops/agency/cost_tuner_agent.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/infra-cost-ops/agency/finops_governance_agent.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/infra-cost-ops/agency/iac_drift_agent.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/infra-cost-ops/agency/regulatory_monitor_agent.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/infra-cost-ops/configs/config.yaml +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/infra-cost-ops/docker-compose.yml +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/infra-cost-ops/dockerignore +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/infra-cost-ops/env +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/infra-cost-ops/examples/01_ec2_idle_anomaly.json +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/infra-cost-ops/examples/02_savings_plan_under_utilised.json +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/infra-cost-ops/examples/03_ri_expiry_30d.json +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/infra-cost-ops/examples/04_iac_drift_detected.json +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/infra-cost-ops/examples/README.md +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/infra-cost-ops/examples/run_examples.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/infra-cost-ops/gitignore +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/infra-cost-ops/main.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/infra-cost-ops/pytest.ini +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/infra-cost-ops/requirements-dev.txt +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/infra-cost-ops/requirements.txt +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/infra-cost-ops/tests/__init__.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/infra-cost-ops/tests/conftest.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/infra-cost-ops/tests/test_agent_logic.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/infra-cost-ops/tests/test_config_shape.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/infra-cost-ops/validate_config.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/marketing-ops/Dockerfile +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/marketing-ops/PRD.md +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/marketing-ops/README.md +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/marketing-ops/_prompts.json +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/marketing-ops/agency/__init__.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/marketing-ops/agency/_shared/__init__.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/marketing-ops/agency/_shared/audit_logger.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/marketing-ops/agency/_shared/session_stash.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/marketing-ops/agency/_shared/store.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/marketing-ops/agency/brand_guardian_agent.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/marketing-ops/agency/campaign_strategist_agent.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/marketing-ops/agency/compliance_reviewer_agent.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/marketing-ops/agency/copywriter_agent.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/marketing-ops/agency/market_intelligence_agent.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/marketing-ops/agency/marketing_audit_logger_agent.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/marketing-ops/agency/publisher_agent.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/marketing-ops/configs/config.yaml +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/marketing-ops/docker-compose.yml +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/marketing-ops/dockerignore +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/marketing-ops/env +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/marketing-ops/examples/01_new_campaign_brief.json +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/marketing-ops/examples/02_product_launch_kickoff.json +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/marketing-ops/examples/03_brand_crisis.json +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/marketing-ops/examples/04_competitor_pricing_move.json +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/marketing-ops/examples/README.md +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/marketing-ops/examples/run_examples.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/marketing-ops/gitignore +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/marketing-ops/main.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/marketing-ops/pytest.ini +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/marketing-ops/requirements-dev.txt +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/marketing-ops/requirements.txt +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/marketing-ops/tests/__init__.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/marketing-ops/tests/conftest.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/marketing-ops/tests/test_agent_logic.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/marketing-ops/tests/test_config_shape.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/marketing-ops/validate_config.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/outbound-sdr/Dockerfile +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/outbound-sdr/PRD.md +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/outbound-sdr/README.md +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/outbound-sdr/agency/__init__.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/outbound-sdr/agency/_shared/__init__.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/outbound-sdr/agency/_shared/audit_logger.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/outbound-sdr/agency/_shared/session_stash.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/outbound-sdr/agency/_shared/store.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/outbound-sdr/agency/campaign_launcher_agent.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/outbound-sdr/agency/campaign_strategist_agent.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/outbound-sdr/agency/gtm_strategist_agent.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/outbound-sdr/agency/inbox_monitor_agent.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/outbound-sdr/agency/meeting_scheduler_agent.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/outbound-sdr/agency/offer_architect_agent.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/outbound-sdr/agency/outreach_writer_agent.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/outbound-sdr/agency/prospector_agent.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/outbound-sdr/agency/records_keeper_agent.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/outbound-sdr/agency/reply_triager_agent.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/outbound-sdr/agency/tools/__init__.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/outbound-sdr/agency/tools/tools.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/outbound-sdr/configs/config.yaml +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/outbound-sdr/docker-compose.yml +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/outbound-sdr/dockerignore +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/outbound-sdr/env +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/outbound-sdr/gitignore +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/outbound-sdr/main.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/outbound-sdr/pytest.ini +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/outbound-sdr/requirements.txt +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/outbound-sdr/tests/__init__.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/outbound-sdr/tests/conftest.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/outbound-sdr/tests/test_config_shape.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/outbound-sdr/validate_config.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/predictive-maintenance/Dockerfile +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/predictive-maintenance/PRD.md +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/predictive-maintenance/README.md +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/predictive-maintenance/_prompts.json +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/predictive-maintenance/agency/__init__.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/predictive-maintenance/agency/_shared/__init__.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/predictive-maintenance/agency/_shared/audit_logger.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/predictive-maintenance/agency/_shared/session_stash.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/predictive-maintenance/agency/_shared/store.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/predictive-maintenance/agency/equipment_lifecycle_agent.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/predictive-maintenance/agency/failure_predictor_agent.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/predictive-maintenance/agency/safety_incident_reporter_agent.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/predictive-maintenance/agency/spare_parts_forecaster_agent.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/predictive-maintenance/agency/work_order_scheduler_agent.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/predictive-maintenance/configs/config.yaml +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/predictive-maintenance/docker-compose.yml +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/predictive-maintenance/dockerignore +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/predictive-maintenance/env +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/predictive-maintenance/examples/01_routine_sensor_reading.json +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/predictive-maintenance/examples/02_anomaly_failure_predicted.json +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/predictive-maintenance/examples/03_safety_critical_shutdown.json +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/predictive-maintenance/examples/04_weekly_parts_forecast.json +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/predictive-maintenance/examples/README.md +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/predictive-maintenance/examples/run_examples.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/predictive-maintenance/gitignore +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/predictive-maintenance/main.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/predictive-maintenance/pytest.ini +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/predictive-maintenance/requirements-dev.txt +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/predictive-maintenance/requirements.txt +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/predictive-maintenance/tests/__init__.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/predictive-maintenance/tests/conftest.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/predictive-maintenance/tests/test_agent_logic.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/predictive-maintenance/tests/test_config_shape.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/predictive-maintenance/validate_config.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/procurement-ops/Dockerfile +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/procurement-ops/PRD.md +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/procurement-ops/README.md +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/procurement-ops/TESTING_GUIDE.md +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/procurement-ops/WORKFLOW_GUIDE.md +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/procurement-ops/agency/__init__.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/procurement-ops/agency/_shared/__init__.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/procurement-ops/agency/_shared/session_stash.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/procurement-ops/agency/data_loader.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/procurement-ops/agency/grn_agent.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/procurement-ops/agency/inventory_agent.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/procurement-ops/agency/logistics_agent.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/procurement-ops/agency/order_intake_agent.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/procurement-ops/agency/purchase_order_agent.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/procurement-ops/agency/supplier_agent.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/procurement-ops/agency/supply_report_agent.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/procurement-ops/agency/tariff_classifier_agent.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/procurement-ops/agency/tools.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/procurement-ops/agency/trade_compliance_agent.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/procurement-ops/configs/inventory.yaml +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/procurement-ops/configs/open_pos.yaml +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/procurement-ops/configs/suppliers.yaml +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/procurement-ops/docker-compose.yml +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/procurement-ops/dockerignore +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/procurement-ops/env +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/procurement-ops/gitignore +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/procurement-ops/requirements.txt +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/procurement-ops/tests/__init__.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/procurement-ops/tests/test_chain_floors.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/procurement-ops/tests/test_config_shape.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/procurement-ops/validate_config.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/production-planning/Dockerfile +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/production-planning/PRD.md +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/production-planning/README.md +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/production-planning/_prompts.json +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/production-planning/agency/__init__.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/production-planning/agency/_shared/__init__.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/production-planning/agency/_shared/audit_logger.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/production-planning/agency/_shared/session_stash.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/production-planning/agency/_shared/store.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/production-planning/agency/constraint_flagger_agent.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/production-planning/agency/demand_sensor_agent.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/production-planning/agency/release_agent.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/production-planning/agency/scheduler_agent.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/production-planning/agency/supplier_signal_agent.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/production-planning/configs/config.yaml +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/production-planning/docker-compose.yml +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/production-planning/dockerignore +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/production-planning/env +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/production-planning/examples/01_demand_signal_normal.json +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/production-planning/examples/02_supplier_delay.json +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/production-planning/examples/03_emergency_constraint_alert.json +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/production-planning/examples/04_supplier_capacity_change.json +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/production-planning/examples/README.md +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/production-planning/examples/run_examples.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/production-planning/gitignore +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/production-planning/main.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/production-planning/pytest.ini +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/production-planning/requirements-dev.txt +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/production-planning/requirements.txt +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/production-planning/tests/__init__.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/production-planning/tests/conftest.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/production-planning/tests/test_agent_logic.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/production-planning/tests/test_config_shape.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/production-planning/validate_config.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/quality-yield/Dockerfile +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/quality-yield/PRD.md +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/quality-yield/README.md +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/quality-yield/_prompts.json +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/quality-yield/agency/__init__.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/quality-yield/agency/_shared/__init__.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/quality-yield/agency/_shared/audit_logger.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/quality-yield/agency/_shared/batch_release.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/quality-yield/agency/_shared/defect_scoring.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/quality-yield/agency/_shared/session_stash.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/quality-yield/agency/_shared/spc_math.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/quality-yield/agency/_shared/store.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/quality-yield/agency/inspection_intake_agent.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/quality-yield/agency/quality_engineer_agent.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/quality-yield/agency/recall_traceability_agent.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/quality-yield/agency/regulatory_compliance_agent.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/quality-yield/agency/spc_monitor_agent.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/quality-yield/configs/config.yaml +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/quality-yield/docker-compose.yml +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/quality-yield/dockerignore +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/quality-yield/env +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/quality-yield/examples/01_routine_inspection.json +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/quality-yield/examples/02_defect_cluster.json +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/quality-yield/examples/03_field_complaint_recall.json +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/quality-yield/examples/04_regulatory_audit_pull.json +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/quality-yield/examples/README.md +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/quality-yield/examples/run_examples.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/quality-yield/gitignore +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/quality-yield/main.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/quality-yield/pytest.ini +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/quality-yield/requirements-dev.txt +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/quality-yield/requirements.txt +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/quality-yield/tests/__init__.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/quality-yield/tests/conftest.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/quality-yield/tests/test_agent_logic.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/quality-yield/tests/test_config_shape.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/quality-yield/validate_config.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/quote-to-cash/Dockerfile +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/quote-to-cash/_prompts.json +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/quote-to-cash/agency/__init__.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/quote-to-cash/agency/_shared/__init__.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/quote-to-cash/agency/_shared/audit_logger.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/quote-to-cash/agency/_shared/session_stash.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/quote-to-cash/agency/_shared/store.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/quote-to-cash/agency/cost_calculator_agent.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/quote-to-cash/agency/deal_compliance_agent.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/quote-to-cash/agency/discount_policy_agent.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/quote-to-cash/agency/quote_drafter_agent.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/quote-to-cash/agency/rfq_ingester_agent.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/quote-to-cash/docker-compose.yml +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/quote-to-cash/dockerignore +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/quote-to-cash/examples/01_rfq_standard.json +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/quote-to-cash/examples/02_steep_discount_finance.json +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/quote-to-cash/examples/03_competitor_price_change.json +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/quote-to-cash/examples/04_renewal_uplift_bundle.json +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/quote-to-cash/examples/README.md +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/quote-to-cash/examples/run_examples.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/quote-to-cash/main.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/quote-to-cash/pytest.ini +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/quote-to-cash/requirements-dev.txt +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/quote-to-cash/tests/__init__.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/quote-to-cash/tests/conftest.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/quote-to-cash/tests/test_agent_logic.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/quote-to-cash/validate_config.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/recruiting-ops/Dockerfile +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/recruiting-ops/PRD.md +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/recruiting-ops/README.md +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/recruiting-ops/_prompts.json +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/recruiting-ops/agency/__init__.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/recruiting-ops/agency/_shared/__init__.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/recruiting-ops/agency/_shared/audit_logger.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/recruiting-ops/agency/_shared/session_stash.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/recruiting-ops/agency/_shared/store.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/recruiting-ops/agency/bias_audit_agent.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/recruiting-ops/agency/correspondence_drafter_agent.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/recruiting-ops/agency/hiring_assistant_agent.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/recruiting-ops/agency/interview_coordinator_agent.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/recruiting-ops/agency/req_intake_agent.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/recruiting-ops/agency/resume_screener_agent.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/recruiting-ops/configs/config.yaml +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/recruiting-ops/docker-compose.yml +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/recruiting-ops/dockerignore +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/recruiting-ops/env +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/recruiting-ops/examples/01_new_req_filed.json +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/recruiting-ops/examples/02_candidate_rejection_letter.json +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/recruiting-ops/examples/03_offer_drafting.json +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/recruiting-ops/examples/04_ghosted_candidate_close.json +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/recruiting-ops/examples/README.md +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/recruiting-ops/examples/run_examples.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/recruiting-ops/gitignore +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/recruiting-ops/main.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/recruiting-ops/pytest.ini +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/recruiting-ops/requirements-dev.txt +0 -0
- {create_leafmesh-2.6.0/create_leafmesh/templates/quote-to-cash → create_leafmesh-2.6.2/create_leafmesh/templates/recruiting-ops}/requirements.txt +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/recruiting-ops/tests/__init__.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/recruiting-ops/tests/conftest.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/recruiting-ops/tests/test_agent_logic.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/recruiting-ops/tests/test_config_shape.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/recruiting-ops/validate_config.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/sales-orchestration/Dockerfile +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/sales-orchestration/PRD.md +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/sales-orchestration/README.md +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/sales-orchestration/_prompts.json +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/sales-orchestration/agency/__init__.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/sales-orchestration/agency/_shared/__init__.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/sales-orchestration/agency/_shared/audit_logger.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/sales-orchestration/agency/_shared/session_stash.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/sales-orchestration/agency/_shared/store.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/sales-orchestration/agency/_shared/util.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/sales-orchestration/agency/lead_intake_agent.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/sales-orchestration/agency/lead_qualification_agent.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/sales-orchestration/agency/lead_revival_agent.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/sales-orchestration/agency/sales_research_agent.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/sales-orchestration/configs/config.yaml +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/sales-orchestration/docker-compose.yml +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/sales-orchestration/dockerignore +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/sales-orchestration/env +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/sales-orchestration/examples/01_inbound_demo_request.json +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/sales-orchestration/examples/02_cold_lead_revival.json +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/sales-orchestration/examples/03_competitor_steal_signal.json +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/sales-orchestration/examples/04_event_followup_burst.json +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/sales-orchestration/examples/05_enriched_inbound_lead.json +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/sales-orchestration/examples/06_deal_nurture_sweep.json +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/sales-orchestration/examples/07_abm_account_activation.json +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/sales-orchestration/examples/08_competitive_intel_pull.json +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/sales-orchestration/examples/README.md +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/sales-orchestration/examples/run_examples.py +0 -0
- {create_leafmesh-2.6.0/create_leafmesh/templates/customer-success → create_leafmesh-2.6.2/create_leafmesh/templates/sales-orchestration}/gitignore +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/sales-orchestration/main.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/sales-orchestration/pytest.ini +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/sales-orchestration/requirements-dev.txt +0 -0
- {create_leafmesh-2.6.0/create_leafmesh/templates/recruiting-ops → create_leafmesh-2.6.2/create_leafmesh/templates/sales-orchestration}/requirements.txt +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/sales-orchestration/tests/__init__.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/sales-orchestration/tests/conftest.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/sales-orchestration/tests/test_agent_logic.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/sales-orchestration/tests/test_config_shape.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/sales-orchestration/validate_config.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/services-delivery/Dockerfile +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/services-delivery/PRD.md +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/services-delivery/README.md +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/services-delivery/_prompts.json +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/services-delivery/agency/__init__.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/services-delivery/agency/_shared/__init__.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/services-delivery/agency/_shared/audit_logger.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/services-delivery/agency/_shared/session_stash.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/services-delivery/agency/brief_intake_agent.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/services-delivery/agency/citation_agent.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/services-delivery/agency/consultant_agent.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/services-delivery/agency/context_agent.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/services-delivery/agency/engagement_controller_agent.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/services-delivery/agency/engagement_status_drafter_agent.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/services-delivery/agency/performance_review_agent.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/services-delivery/agency/qa_agent.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/services-delivery/agency/research_agent.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/services-delivery/docker-compose.yml +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/services-delivery/dockerignore +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/services-delivery/env +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/services-delivery/examples/01_new_engagement_memo.json +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/services-delivery/examples/02_friday_status_pack.json +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/services-delivery/examples/03_high_stakes_deliverable.json +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/services-delivery/examples/04_monthly_steering_pack.json +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/services-delivery/examples/README.md +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/services-delivery/examples/run_examples.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/services-delivery/main.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/services-delivery/pytest.ini +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/services-delivery/requirements-dev.txt +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/services-delivery/tests/__init__.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/services-delivery/tests/conftest.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/services-delivery/validate_config.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/starter/Dockerfile +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/starter/README.md +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/starter/_prompts.json +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/starter/agency/__init__.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/starter/agency/_shared/__init__.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/starter/agency/_shared/audit_logger.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/starter/configs/config.yaml +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/starter/docker-compose.yml +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/starter/dockerignore +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/starter/env +0 -0
- {create_leafmesh-2.6.0/create_leafmesh/templates/quote-to-cash → create_leafmesh-2.6.2/create_leafmesh/templates/starter}/gitignore +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/starter/main.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/starter/pytest.ini +0 -0
- {create_leafmesh-2.6.0/create_leafmesh/templates/sales-orchestration → create_leafmesh-2.6.2/create_leafmesh/templates/starter}/requirements.txt +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/starter/tests/__init__.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/starter/tests/conftest.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/starter/tests/test_config_shape.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/starter/validate_config.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/warehouse-supply-chain/Dockerfile +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/warehouse-supply-chain/PRD.md +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/warehouse-supply-chain/README.md +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/warehouse-supply-chain/_prompts.json +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/warehouse-supply-chain/agency/__init__.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/warehouse-supply-chain/agency/_shared/__init__.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/warehouse-supply-chain/agency/_shared/allocation_math.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/warehouse-supply-chain/agency/_shared/audit_logger.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/warehouse-supply-chain/agency/_shared/carrier_math.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/warehouse-supply-chain/agency/_shared/session_stash.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/warehouse-supply-chain/agency/_shared/shrink_math.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/warehouse-supply-chain/agency/_shared/store.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/warehouse-supply-chain/agency/allocation_agent.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/warehouse-supply-chain/agency/carrier_selector_agent.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/warehouse-supply-chain/agency/exception_agent.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/warehouse-supply-chain/agency/humanoid_status_agent.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/warehouse-supply-chain/agency/inspection_humanoid.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/warehouse-supply-chain/agency/inventory_control_agent.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/warehouse-supply-chain/agency/loader_humanoid.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/warehouse-supply-chain/agency/packer_humanoid.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/warehouse-supply-chain/agency/picker_humanoid.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/warehouse-supply-chain/agency/supplier_relations_agent.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/warehouse-supply-chain/configs/config.yaml +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/warehouse-supply-chain/docker-compose.yml +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/warehouse-supply-chain/dockerignore +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/warehouse-supply-chain/env +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/warehouse-supply-chain/examples/01_routine_order.json +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/warehouse-supply-chain/examples/02_short_pick_exception.json +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/warehouse-supply-chain/examples/03_returns_inspection.json +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/warehouse-supply-chain/examples/04_carrier_outage_failover.json +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/warehouse-supply-chain/examples/README.md +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/warehouse-supply-chain/examples/run_examples.py +0 -0
- {create_leafmesh-2.6.0/create_leafmesh/templates/services-delivery → create_leafmesh-2.6.2/create_leafmesh/templates/warehouse-supply-chain}/gitignore +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/warehouse-supply-chain/main.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/warehouse-supply-chain/pytest.ini +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/warehouse-supply-chain/requirements-dev.txt +0 -0
- {create_leafmesh-2.6.0/create_leafmesh/templates/services-delivery → create_leafmesh-2.6.2/create_leafmesh/templates/warehouse-supply-chain}/requirements.txt +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/warehouse-supply-chain/tests/__init__.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/warehouse-supply-chain/tests/conftest.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/warehouse-supply-chain/tests/test_agent_logic.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/warehouse-supply-chain/tests/test_config_shape.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/warehouse-supply-chain/validate_config.py +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh.egg-info/dependency_links.txt +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh.egg-info/entry_points.txt +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh.egg-info/requires.txt +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh.egg-info/top_level.txt +0 -0
- {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/setup.cfg +0 -0
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# Source-distribution hygiene. The wheel is governed by
|
|
2
|
+
# [tool.setuptools.exclude-package-data] in pyproject.toml; this file does the
|
|
3
|
+
# same for the sdist so runtime cruft (stray logs, scratch data/out dirs,
|
|
4
|
+
# bytecode caches) can never be shipped, regardless of working-tree state.
|
|
5
|
+
global-exclude *.log
|
|
6
|
+
global-exclude *.pyc
|
|
7
|
+
prune create_leafmesh/templates/**/logs
|
|
8
|
+
prune create_leafmesh/templates/**/data
|
|
9
|
+
prune create_leafmesh/templates/**/out
|
|
10
|
+
prune create_leafmesh/templates/**/__pycache__
|
|
11
|
+
prune create_leafmesh/templates/**/.pytest_cache
|
|
@@ -12,6 +12,7 @@ from create_leafmesh.create import (
|
|
|
12
12
|
get_template_prompts,
|
|
13
13
|
list_templates,
|
|
14
14
|
)
|
|
15
|
+
from create_leafmesh.search import search_templates
|
|
15
16
|
|
|
16
17
|
# ---------------------------------------------------------------------------
|
|
17
18
|
# ANSI helpers (graceful fallback on terminals that don't support color)
|
|
@@ -155,7 +156,8 @@ def print_template_list(include_planned: bool = True) -> None:
|
|
|
155
156
|
print(f" {_c(_DIM, slug):<35s} {_c(_DIM, short)}")
|
|
156
157
|
print()
|
|
157
158
|
|
|
158
|
-
print(_c(_DIM, " Use:
|
|
159
|
+
print(_c(_DIM, " Use: create-leafmesh <project_name> --template <slug>"))
|
|
160
|
+
print(_c(_DIM, " Search: create-leafmesh --search \"<keywords>\""))
|
|
159
161
|
print()
|
|
160
162
|
|
|
161
163
|
|
|
@@ -194,6 +196,54 @@ def _grouped_templates() -> list[tuple[str, list[dict]]]:
|
|
|
194
196
|
return display
|
|
195
197
|
|
|
196
198
|
|
|
199
|
+
def _interactive_search(questionary, style) -> str | None:
|
|
200
|
+
"""State 1 → state 2 bridge inside the TUI picker.
|
|
201
|
+
|
|
202
|
+
Prompt for keywords, run the fuzzy search, and — if anything matches —
|
|
203
|
+
auto-switch to a template-level selection (state 2). Returns a chosen
|
|
204
|
+
slug, or None to return to the category view (state 1).
|
|
205
|
+
"""
|
|
206
|
+
ready = list_templates(include_planned=False)
|
|
207
|
+
query = questionary.text(
|
|
208
|
+
"Search templates (keywords — spelling needn't be exact):",
|
|
209
|
+
style=style,
|
|
210
|
+
).ask()
|
|
211
|
+
if not query or not query.strip():
|
|
212
|
+
return None
|
|
213
|
+
query = query.strip()
|
|
214
|
+
|
|
215
|
+
matches = search_templates(ready, query)
|
|
216
|
+
if not matches:
|
|
217
|
+
print(f"\n No templates matched '{query}'. "
|
|
218
|
+
f"Try a broader term (e.g. 'sales', 'finance', 'support').\n")
|
|
219
|
+
return None
|
|
220
|
+
|
|
221
|
+
# Auto-switch to state 2 — show the matching templates directly.
|
|
222
|
+
name_w = max((len(t.get("short_name", t["slug"])) for t, _ in matches),
|
|
223
|
+
default=12) + 2
|
|
224
|
+
tpl_choices = []
|
|
225
|
+
for t, _score in matches:
|
|
226
|
+
short = t.get("short_name", t["slug"])
|
|
227
|
+
one = t.get("one_line", "")
|
|
228
|
+
tpl_choices.append(questionary.Choice(
|
|
229
|
+
title=f"{short.ljust(name_w)} — {one}", value=t["slug"]))
|
|
230
|
+
tpl_choices.append(questionary.Separator())
|
|
231
|
+
tpl_choices.append(questionary.Choice(title="← Back / new search",
|
|
232
|
+
value="__back__"))
|
|
233
|
+
|
|
234
|
+
chosen = questionary.select(
|
|
235
|
+
f"Matches for '{query}':",
|
|
236
|
+
choices=tpl_choices,
|
|
237
|
+
style=style,
|
|
238
|
+
instruction="(↑/↓ to move, Enter to select)",
|
|
239
|
+
use_indicator=True,
|
|
240
|
+
).ask()
|
|
241
|
+
|
|
242
|
+
if chosen is None or chosen == "__back__":
|
|
243
|
+
return None
|
|
244
|
+
return chosen
|
|
245
|
+
|
|
246
|
+
|
|
197
247
|
def _prompt_template_choice_interactive() -> str:
|
|
198
248
|
"""Arrow-key TUI picker — cascading category → template selection.
|
|
199
249
|
|
|
@@ -232,6 +282,8 @@ def _prompt_template_choice_interactive() -> str:
|
|
|
232
282
|
label = f"{cat} ({n} template{'s' if n != 1 else ''})"
|
|
233
283
|
cat_choices.append(questionary.Choice(title=label, value=cat))
|
|
234
284
|
cat_choices.append(questionary.Separator())
|
|
285
|
+
cat_choices.append(questionary.Choice(title="Search by keyword…",
|
|
286
|
+
value="__search__"))
|
|
235
287
|
# NOTE: `value=None` causes questionary to fall back to the title
|
|
236
288
|
# string (treats None as "unset"), which then crashes our
|
|
237
289
|
# cat_to_items lookup with KeyError: 'Quit'. Use an explicit
|
|
@@ -250,6 +302,12 @@ def _prompt_template_choice_interactive() -> str:
|
|
|
250
302
|
print("\n Cancelled.\n")
|
|
251
303
|
sys.exit(0)
|
|
252
304
|
|
|
305
|
+
if chosen_cat == "__search__":
|
|
306
|
+
slug = _interactive_search(questionary, style)
|
|
307
|
+
if slug:
|
|
308
|
+
return slug
|
|
309
|
+
continue # no match / backed out → back to the category view
|
|
310
|
+
|
|
253
311
|
# ── Step 2: pick a template in that category ─────────────────
|
|
254
312
|
items = cat_to_items[chosen_cat]
|
|
255
313
|
# Pad short_names so the one-liner column aligns nicely.
|
|
@@ -319,23 +377,47 @@ def _prompt_template_choice_fallback() -> str:
|
|
|
319
377
|
)
|
|
320
378
|
n += 1
|
|
321
379
|
print()
|
|
322
|
-
print(_c(_DIM, f" Type 1–{len(ready)}, a slug,
|
|
380
|
+
print(_c(_DIM, f" Type 1–{len(ready)}, a slug, '/keywords' to search, "
|
|
381
|
+
f"or 'q' to quit."))
|
|
323
382
|
while True:
|
|
324
383
|
try:
|
|
325
|
-
raw = input(" > ").strip()
|
|
384
|
+
raw = input(" > ").strip()
|
|
326
385
|
except EOFError:
|
|
327
386
|
print()
|
|
328
387
|
sys.exit(0)
|
|
329
388
|
if not raw:
|
|
330
389
|
continue
|
|
331
|
-
|
|
390
|
+
low = raw.lower()
|
|
391
|
+
if low in ("q", "quit", "exit"):
|
|
332
392
|
print("\n Cancelled.\n")
|
|
333
393
|
sys.exit(0)
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
394
|
+
# Search: '/keywords' or 's keywords' → auto-switch to matches (state 2)
|
|
395
|
+
if raw.startswith("/") or low.startswith("s ") or low.startswith("search "):
|
|
396
|
+
query = (raw[1:] if raw.startswith("/")
|
|
397
|
+
else raw.split(None, 1)[1] if " " in raw else "")
|
|
398
|
+
query = query.strip()
|
|
399
|
+
if not query:
|
|
400
|
+
print(" Type '/' followed by keywords, e.g. '/cold email'.")
|
|
401
|
+
continue
|
|
402
|
+
matches = search_templates(ready, query)
|
|
403
|
+
if not matches:
|
|
404
|
+
print(f" No matches for '{query}'. Try a broader term.")
|
|
405
|
+
continue
|
|
406
|
+
print()
|
|
407
|
+
print(f" Matches for '{query}':")
|
|
408
|
+
for t, _score in matches:
|
|
409
|
+
short = t.get("short_name", t["slug"])
|
|
410
|
+
print(f" {_c(_BOLD, short.ljust(name_w))}"
|
|
411
|
+
f"{_c(_DIM, t.get('one_line', ''))}")
|
|
412
|
+
print(f" {_c(_DIM, 'slug: ' + t['slug'])}")
|
|
413
|
+
print(_c(_DIM, " → type the slug above to use one."))
|
|
414
|
+
continue
|
|
415
|
+
if low in valid_indexes:
|
|
416
|
+
return valid_indexes[low]
|
|
417
|
+
if low in valid_slugs:
|
|
418
|
+
return low
|
|
419
|
+
print(f" Invalid choice. Type 1–{len(ready)}, a slug, "
|
|
420
|
+
f"'/keywords' to search, or 'q'.")
|
|
339
421
|
|
|
340
422
|
|
|
341
423
|
def prompt_template_choice() -> str:
|
|
@@ -499,6 +581,56 @@ def _print_template_describe(slug: str) -> int:
|
|
|
499
581
|
return 0
|
|
500
582
|
|
|
501
583
|
|
|
584
|
+
def _run_search(query: str) -> int:
|
|
585
|
+
"""`--search` — fuzzy keyword search that lands straight on templates.
|
|
586
|
+
|
|
587
|
+
This is the non-interactive expression of the two-state model: rather than
|
|
588
|
+
show business areas (state 1), a search jumps directly to the matching
|
|
589
|
+
template(s) (state 2), ready to scaffold.
|
|
590
|
+
"""
|
|
591
|
+
query = (query or "").strip()
|
|
592
|
+
if not query:
|
|
593
|
+
print("\n Provide search keywords, e.g. "
|
|
594
|
+
"create-leafmesh --search 'cold email'\n")
|
|
595
|
+
return 2
|
|
596
|
+
|
|
597
|
+
# Search ready templates first; only widen to planned ones if nothing hits.
|
|
598
|
+
ready = list_templates(include_planned=False)
|
|
599
|
+
matches = search_templates(ready, query)
|
|
600
|
+
if not matches:
|
|
601
|
+
matches = search_templates(list_templates(include_planned=True), query)
|
|
602
|
+
|
|
603
|
+
if not matches:
|
|
604
|
+
print(f"\n No templates matched {_c(_BOLD, query)}.")
|
|
605
|
+
print(f" Run {_c(_BOLD, 'create-leafmesh --list')} to browse all "
|
|
606
|
+
f"templates,")
|
|
607
|
+
print(f" or try a broader term (e.g. 'sales', 'finance', 'support').\n")
|
|
608
|
+
return 1
|
|
609
|
+
|
|
610
|
+
print()
|
|
611
|
+
print(_c(_BOLD, f" Search results for '{query}':"))
|
|
612
|
+
print()
|
|
613
|
+
name_w = max((len(t.get("short_name", t["slug"])) for t, _ in matches),
|
|
614
|
+
default=12) + 2
|
|
615
|
+
for t, _score in matches:
|
|
616
|
+
short = t.get("short_name", t["slug"])
|
|
617
|
+
one = t.get("one_line", "")
|
|
618
|
+
status = t.get("status", "ready")
|
|
619
|
+
tag = "" if status == "ready" else _c(_DIM, f" ({status})")
|
|
620
|
+
print(f" {_c(_BOLD, short.ljust(name_w))}{_c(_DIM, '· ' + t['slug'])}{tag}")
|
|
621
|
+
if one:
|
|
622
|
+
print(f" {_c(_DIM, ' ' + one)}")
|
|
623
|
+
print()
|
|
624
|
+
|
|
625
|
+
top = matches[0][0]
|
|
626
|
+
print(_c(_DIM, " Scaffold the top match:"))
|
|
627
|
+
print(f" create-leafmesh <project_name> --template "
|
|
628
|
+
f"{_c(_BOLD, top['slug'])}")
|
|
629
|
+
print(_c(_DIM, f" Details: create-leafmesh --describe {top['slug']}"))
|
|
630
|
+
print()
|
|
631
|
+
return 0
|
|
632
|
+
|
|
633
|
+
|
|
502
634
|
def main(argv: list[str] | None = None) -> int:
|
|
503
635
|
parser = argparse.ArgumentParser(
|
|
504
636
|
prog="create-leafmesh",
|
|
@@ -508,6 +640,7 @@ examples:
|
|
|
508
640
|
create-leafmesh my-project --template incident-triage Create with explicit template
|
|
509
641
|
create-leafmesh my-project Interactive picker
|
|
510
642
|
create-leafmesh --list Show available templates
|
|
643
|
+
create-leafmesh --search "cold email" Find a template by keyword
|
|
511
644
|
create-leafmesh --describe payment-authorization Show template details
|
|
512
645
|
""",
|
|
513
646
|
formatter_class=argparse.RawDescriptionHelpFormatter,
|
|
@@ -525,6 +658,11 @@ examples:
|
|
|
525
658
|
"--list", dest="list_templates", action="store_true",
|
|
526
659
|
help="List available templates and exit",
|
|
527
660
|
)
|
|
661
|
+
parser.add_argument(
|
|
662
|
+
"--search", default=None, metavar="QUERY",
|
|
663
|
+
help="Search templates by keyword (fuzzy; spelling needn't be exact) "
|
|
664
|
+
"and show matches",
|
|
665
|
+
)
|
|
528
666
|
parser.add_argument(
|
|
529
667
|
"--describe", default=None, metavar="SLUG",
|
|
530
668
|
help="Show details for one template and exit",
|
|
@@ -536,6 +674,8 @@ examples:
|
|
|
536
674
|
if args.list_templates:
|
|
537
675
|
print_template_list()
|
|
538
676
|
return 0
|
|
677
|
+
if args.search:
|
|
678
|
+
return _run_search(args.search)
|
|
539
679
|
if args.describe:
|
|
540
680
|
return _print_template_describe(args.describe)
|
|
541
681
|
|
|
@@ -0,0 +1,157 @@
|
|
|
1
|
+
"""Semi-semantic template search — dependency-free keyword + fuzzy matching.
|
|
2
|
+
|
|
3
|
+
The CLI surfaces templates in two states:
|
|
4
|
+
|
|
5
|
+
state 1 → business areas (the category-grouped picker)
|
|
6
|
+
state 2 → a template (a specific, scaffoldable template)
|
|
7
|
+
|
|
8
|
+
Search is the bridge between them. The user types loose keywords — no exact
|
|
9
|
+
spelling required — and a match auto-switches the UI from state 1 to state 2
|
|
10
|
+
by surfacing the matching template(s) directly.
|
|
11
|
+
|
|
12
|
+
Matching is deliberately offline and simple (no ML / embedding deps): each
|
|
13
|
+
template owns a `keywords:` synonym list in `_registry.yaml` alongside its
|
|
14
|
+
name / one-liner / description / industries text. We tokenise the query and
|
|
15
|
+
score every template by:
|
|
16
|
+
|
|
17
|
+
* whole-query phrase hits against the synonym list (strongest signal)
|
|
18
|
+
* exact token overlap (strong)
|
|
19
|
+
* substring overlap (medium)
|
|
20
|
+
* fuzzy ratio via difflib (catches typos)
|
|
21
|
+
|
|
22
|
+
Keyword/name fields ("primary") outweigh the description ("secondary"), so a
|
|
23
|
+
synonym someone deliberately added always beats an incidental word in prose.
|
|
24
|
+
"""
|
|
25
|
+
|
|
26
|
+
from __future__ import annotations
|
|
27
|
+
|
|
28
|
+
import difflib
|
|
29
|
+
import re
|
|
30
|
+
from typing import Any
|
|
31
|
+
|
|
32
|
+
_TOKEN_RE = re.compile(r"[a-z0-9]+")
|
|
33
|
+
|
|
34
|
+
# Tokens too generic to carry signal — they appear across most descriptions
|
|
35
|
+
# and would otherwise reward every template equally.
|
|
36
|
+
_STOPWORDS = frozenset({
|
|
37
|
+
"the", "a", "an", "and", "or", "for", "to", "of", "in", "on", "with",
|
|
38
|
+
"team", "agent", "agents", "ops", "operation", "operations", "system",
|
|
39
|
+
"management", "manager", "automation", "automate", "automated",
|
|
40
|
+
})
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
def _tokens(text: str) -> list[str]:
|
|
44
|
+
return _TOKEN_RE.findall(text.lower())
|
|
45
|
+
|
|
46
|
+
|
|
47
|
+
def _contiguous_sublist(needle: list[str], haystack: list[str]) -> bool:
|
|
48
|
+
"""True if `needle` appears as a contiguous run of whole tokens in
|
|
49
|
+
`haystack`. Token-boundary aware so a short phrase like "po" can't match
|
|
50
|
+
inside a word like "support" (the classic raw-substring false positive)."""
|
|
51
|
+
if not needle or len(needle) > len(haystack):
|
|
52
|
+
return False
|
|
53
|
+
for i in range(len(haystack) - len(needle) + 1):
|
|
54
|
+
if haystack[i:i + len(needle)] == needle:
|
|
55
|
+
return True
|
|
56
|
+
return False
|
|
57
|
+
|
|
58
|
+
|
|
59
|
+
def _keyword_phrases(t: dict[str, Any]) -> list[str]:
|
|
60
|
+
"""The comma-separated `keywords:` scalar, split into phrases."""
|
|
61
|
+
raw = str(t.get("keywords", "") or "")
|
|
62
|
+
return [p.strip().lower() for p in raw.split(",") if p.strip()]
|
|
63
|
+
|
|
64
|
+
|
|
65
|
+
def _corpus(t: dict[str, Any]) -> tuple[str, str, list[str]]:
|
|
66
|
+
"""Return (primary_text, secondary_text, keyword_phrases) for a template."""
|
|
67
|
+
primary = " ".join(
|
|
68
|
+
str(t.get(k, "") or "")
|
|
69
|
+
for k in ("slug", "short_name", "full_name", "one_line",
|
|
70
|
+
"category", "industries", "keywords")
|
|
71
|
+
)
|
|
72
|
+
secondary = str(t.get("description", "") or "")
|
|
73
|
+
return primary.lower(), secondary.lower(), _keyword_phrases(t)
|
|
74
|
+
|
|
75
|
+
|
|
76
|
+
def score_template(t: dict[str, Any], query: str) -> float:
|
|
77
|
+
"""Score one template against a free-text query. Higher == better match."""
|
|
78
|
+
query = (query or "").strip().lower()
|
|
79
|
+
if not query:
|
|
80
|
+
return 0.0
|
|
81
|
+
q_tokens = [tok for tok in _tokens(query) if tok not in _STOPWORDS]
|
|
82
|
+
if not q_tokens:
|
|
83
|
+
# Query was all stopwords — fall back to raw tokens so it still does
|
|
84
|
+
# *something* rather than silently scoring zero.
|
|
85
|
+
q_tokens = _tokens(query)
|
|
86
|
+
if not q_tokens:
|
|
87
|
+
return 0.0
|
|
88
|
+
|
|
89
|
+
primary_text, secondary_text, phrases = _corpus(t)
|
|
90
|
+
primary_tokens = set(_tokens(primary_text))
|
|
91
|
+
secondary_tokens = set(_tokens(secondary_text))
|
|
92
|
+
all_tokens = primary_tokens | secondary_tokens
|
|
93
|
+
q_all_tokens = _tokens(query)
|
|
94
|
+
|
|
95
|
+
score = 0.0
|
|
96
|
+
|
|
97
|
+
# ── Whole-query phrase hits — the strongest signal. "cold email" should
|
|
98
|
+
# map straight to outbound-sdr because that phrase is in its synonyms.
|
|
99
|
+
# Matching is token-boundary aware: a synonym's tokens must appear as a
|
|
100
|
+
# contiguous run in the query (or vice versa), so a 2-letter alias like
|
|
101
|
+
# "po" can't match inside "support". ──
|
|
102
|
+
for ph in phrases:
|
|
103
|
+
ph_tokens = _tokens(ph)
|
|
104
|
+
if not ph_tokens:
|
|
105
|
+
continue
|
|
106
|
+
if q_all_tokens == ph_tokens:
|
|
107
|
+
score += 12.0
|
|
108
|
+
elif (_contiguous_sublist(ph_tokens, q_all_tokens)
|
|
109
|
+
or _contiguous_sublist(q_all_tokens, ph_tokens)):
|
|
110
|
+
score += 6.0
|
|
111
|
+
|
|
112
|
+
# ── Per-token scoring. ──
|
|
113
|
+
for qt in q_tokens:
|
|
114
|
+
if qt in primary_tokens:
|
|
115
|
+
score += 3.0
|
|
116
|
+
elif qt in secondary_tokens:
|
|
117
|
+
score += 1.5
|
|
118
|
+
elif len(qt) >= 4 and any(qt in tok for tok in all_tokens):
|
|
119
|
+
score += 1.0
|
|
120
|
+
else:
|
|
121
|
+
# Fuzzy match — catches spelling variants / typos the user warned
|
|
122
|
+
# about ("recuiting" → "recruiting", "warehous" → "warehouse").
|
|
123
|
+
# Only fuzz against PRIMARY tokens (keywords + names): fuzzing the
|
|
124
|
+
# description introduces cross-template noise (every template has
|
|
125
|
+
# *some* prose word ~0.82 from a typo).
|
|
126
|
+
best = 0.0
|
|
127
|
+
for tok in primary_tokens:
|
|
128
|
+
if abs(len(tok) - len(qt)) > 3:
|
|
129
|
+
continue
|
|
130
|
+
r = difflib.SequenceMatcher(None, qt, tok).ratio()
|
|
131
|
+
if r > best:
|
|
132
|
+
best = r
|
|
133
|
+
if best >= 0.82:
|
|
134
|
+
# A near-exact fuzzy hit (e.g. "recuiting" → "recruiting",
|
|
135
|
+
# ratio ~0.95) is a strong signal — weight it close to an
|
|
136
|
+
# exact token so a single-word typo still clears the floor.
|
|
137
|
+
score += best * 3.0
|
|
138
|
+
|
|
139
|
+
return score
|
|
140
|
+
|
|
141
|
+
|
|
142
|
+
def search_templates(
|
|
143
|
+
templates: list[dict[str, Any]],
|
|
144
|
+
query: str,
|
|
145
|
+
*,
|
|
146
|
+
limit: int = 6,
|
|
147
|
+
min_score: float = 2.5,
|
|
148
|
+
) -> list[tuple[dict[str, Any], float]]:
|
|
149
|
+
"""Rank templates against a query.
|
|
150
|
+
|
|
151
|
+
Returns [(template, score), …] sorted best-first, capped at `limit`,
|
|
152
|
+
dropping anything below `min_score`.
|
|
153
|
+
"""
|
|
154
|
+
scored = [(t, score_template(t, query)) for t in templates]
|
|
155
|
+
scored = [(t, s) for t, s in scored if s >= min_score]
|
|
156
|
+
scored.sort(key=lambda ts: (-ts[1], ts[0].get("slug", "")))
|
|
157
|
+
return scored[:limit]
|
|
@@ -41,6 +41,7 @@ templates:
|
|
|
41
41
|
trust_lead: "human-review gate on sensitive requests; hash-chained audit terminus; default-deny on reviewer timeout"
|
|
42
42
|
complexity: "low"
|
|
43
43
|
decision_tree_path: "start_from_scratch"
|
|
44
|
+
keywords: "blank, scratch, empty, minimal, tutorial, hello world, boilerplate, skeleton, custom, build your own, getting started, starter kit, none of these fit, from zero, poc, prototype, experiment, sandbox, learn, demo mesh, base template, foundation, new project, greenfield, custom agency, build my own mesh"
|
|
44
45
|
description: >
|
|
45
46
|
The template to pick when none of the business templates fit —
|
|
46
47
|
a minimal, working 3-agent mesh whose configs/config.yaml is
|
|
@@ -70,6 +71,7 @@ templates:
|
|
|
70
71
|
trust_lead: "GTM sign-off on strategy shifts; campaign approval before send (spend + brand); human reviews every reply; hash-chained audit"
|
|
71
72
|
complexity: "high"
|
|
72
73
|
decision_tree_path: "outbound_demand_generation"
|
|
74
|
+
keywords: "outbound, sdr, bdr, cold email, cold outreach, cold calling, demand generation, demand gen, lead generation, lead gen, prospecting, sequences, cadence, apollo, instantly, emailbison, lemlist, smartlead, salesloft, outreach io, sales development, gtm, go to market, pipeline generation, book meetings, appointment setting, sequencer, drip campaign, email outreach, outreach automation, sales emails, email campaigns, multichannel outreach, linkedin outreach, account based marketing, abm, lead enrichment, deliverability, mailbox warmup, reply handling, sdr team"
|
|
73
75
|
description: >
|
|
74
76
|
An autonomous outbound sales-development operation. A GTM head
|
|
75
77
|
agent researches the onboarded company (SERP/Surfer tools) and
|
|
@@ -99,6 +101,7 @@ templates:
|
|
|
99
101
|
trust_lead: "tech-lead sign-off before any code is written AND before merge; an independent QA agent re-runs the tests (no self-marked homework) and files bugs to Jira; bounded rework; hash-chained audit"
|
|
100
102
|
complexity: "high"
|
|
101
103
|
decision_tree_path: "autonomous_development"
|
|
104
|
+
keywords: "engineering, software development, coding, developer, programmer, software engineer, jira, github, gitlab, pull request, pr, claude agent, claude code, autonomous coding, coding agent, ai engineer, sdlc, tech lead, qa testing, test automation, build features, feature development, ship code, dev team, sprint, tickets, backlog, acceptance criteria, bug fixing, write code, code review, refactor, ci cd, merge, product owner, devops"
|
|
102
105
|
description: >
|
|
103
106
|
A Jira-driven autonomous software-development squad. A product-owner
|
|
104
107
|
agent grooms a raw request into a well-formed ticket (testable
|
|
@@ -134,6 +137,7 @@ templates:
|
|
|
134
137
|
trust_lead: "regulator visibility (high) — every action audited, exception-routed to Controller"
|
|
135
138
|
complexity: "high"
|
|
136
139
|
decision_tree_path: "finance_automation"
|
|
140
|
+
keywords: "finance, accounting, accounts payable, ap, accounts receivable, ar, invoice, invoices, invoicing, vendor invoices, ocr invoice, reconciliation, reconcile, cash application, dunning, close cycle, month end close, financial close, gl, general ledger, journal entries, accruals, bookkeeping, controller, cfo, fraud check, duplicate detection, three way match, po matching, erp, netsuite, quickbooks, sap, expense, billing, payment processing, audit trail, ap automation, ar automation, finance team, back office"
|
|
137
141
|
description: >
|
|
138
142
|
Accounts payable + accounts receivable + close-cycle automation.
|
|
139
143
|
Multi-entry: invoices land via email, vendor portal, ERP webhook,
|
|
@@ -156,6 +160,7 @@ templates:
|
|
|
156
160
|
trust_lead: "compliance by construction — bias signal + out-of-band offer are hard HRBP gates; weekly EEOC 4/5ths audit; hash-chained WORM"
|
|
157
161
|
complexity: "medium"
|
|
158
162
|
decision_tree_path: "talent_pipeline"
|
|
163
|
+
keywords: "recruiting, recruitment, hiring, talent, talent acquisition, talent pipeline, candidates, applicants, ats, applicant tracking, interview scheduling, interview loop, candidate screening, resume, cv, sourcing, sourcer, screening, offer letter, offer management, salary band, hr, human resources, hrbp, headcount, hiring manager, recruiter, eeoc, bias check, diversity hiring, people ops, hr ops, job openings, job posting, requisition, onboarding, greenhouse, lever, workday, linkedin recruiter"
|
|
159
164
|
description: >
|
|
160
165
|
End-to-end recruiting team. Multi-entry: req filed in ATS,
|
|
161
166
|
referral submitted, LinkedIn-InMail reply, scheduled pipeline
|
|
@@ -183,11 +188,12 @@ templates:
|
|
|
183
188
|
one_line: "Ticket → triage → sentiment → KB → draft → QA → escalation."
|
|
184
189
|
industries: ["saas", "services", "any with support"]
|
|
185
190
|
roi_cells: ["supp × saas"]
|
|
186
|
-
agent_count:
|
|
191
|
+
agent_count: 15
|
|
187
192
|
cron_count: 0
|
|
188
193
|
trust_lead: "customer visibility — sentiment-aware, escalation default-deny on low confidence"
|
|
189
194
|
complexity: "medium"
|
|
190
195
|
decision_tree_path: "support_triage"
|
|
196
|
+
keywords: "customer support, support, help desk, helpdesk, tickets, ticketing, support tickets, triage, customer service, customer queries, customer care, cx, knowledge base, kb, kb articles, macros, deflection, escalation, csat, sla, zendesk, intercom, freshdesk, gorgias, kustomer, slack support, email support, chat support, live chat, whatsapp support, phone support, omnichannel support, agent assist, tier 1, tier 2, complaints, service desk, contact center, support team"
|
|
191
197
|
description: >
|
|
192
198
|
Reactive support team. Multi-entry: Slack/email/chat/phone/web
|
|
193
199
|
channels each fire ticket.opened. Team: triage · sentiment ·
|
|
@@ -204,11 +210,12 @@ templates:
|
|
|
204
210
|
one_line: "Health score → risk → playbook → QBR → renewal — proactive."
|
|
205
211
|
industries: ["saas"]
|
|
206
212
|
roi_cells: ["cs × saas"]
|
|
207
|
-
agent_count:
|
|
213
|
+
agent_count: 16
|
|
208
214
|
cron_count: 1
|
|
209
215
|
trust_lead: "customer visibility — high — save-play actions HITL-gated"
|
|
210
216
|
complexity: "high"
|
|
211
217
|
decision_tree_path: "retention_motion"
|
|
218
|
+
keywords: "customer success, retention, churn, churn prevention, churn risk, renewal, renewals, renewal forecast, health score, account health, qbr, qbr deck, ebr, csm, csm team, account management, save play, playbooks, success plans, upsell, expansion, expansion revenue, nps, customer health, proactive outreach, onboarding customers, telemetry, adoption, success manager, post sales, gainsight, totango, net revenue retention, nrr"
|
|
212
219
|
description: >
|
|
213
220
|
Proactive (NOT reactive) retention team. Multi-entry:
|
|
214
221
|
product-telemetry signal, billing event, support escalation
|
|
@@ -235,6 +242,7 @@ templates:
|
|
|
235
242
|
trust_lead: "internal — risky tunes HITL-gated by SRE"
|
|
236
243
|
complexity: "medium"
|
|
237
244
|
decision_tree_path: "cloud_cost"
|
|
245
|
+
keywords: "infrastructure, cloud cost, cost optimization, cost management, finops, cloud finops, aws, gcp, azure, ec2, s3 cost, right sizing, instance right sizing, autoscaling, reserved instances, spot instances, savings plan, commitment discounts, cloud spend, billing optimization, sre, devops, iac, terraform drift, cost anomaly, cost allocation, tagging, platform engineering, cloud bill, cloud waste, spend optimization, kubernetes cost, optimize spend"
|
|
238
246
|
description: >
|
|
239
247
|
Continuous cloud-cost optimization. Multi-entry: cost-anomaly
|
|
240
248
|
alert, scheduled right-size sweep, IaC commit triggers drift
|
|
@@ -260,6 +268,7 @@ templates:
|
|
|
260
268
|
trust_lead: "customer — pipeline-health monitor on adaptive routing"
|
|
261
269
|
complexity: "medium"
|
|
262
270
|
decision_tree_path: "inbound_sales"
|
|
271
|
+
keywords: "inbound sales, lead scoring, lead routing, lead management, lead distribution, round robin routing, sales, marketing handoff, mql, sql, marketing qualified, sales qualified, lead handoff, lead nurture, nurture sequences, lead enrichment, lead qualification, sequences, crm, salesforce, hubspot, marketo, pardot, revops, ae, sdr handoff, demo request, web form leads, pipeline routing, pipeline management, deal routing, inbound leads, sales engagement, sales ops"
|
|
263
272
|
description: >
|
|
264
273
|
Inbound-sales team. Multi-entry: web-form submit, demo request,
|
|
265
274
|
event-list ingest, partner-lead handoff, scheduled
|
|
@@ -276,11 +285,12 @@ templates:
|
|
|
276
285
|
one_line: "RFP → past-proposal → draft → pricing → compliance."
|
|
277
286
|
industries: ["services"]
|
|
278
287
|
roi_cells: ["bd × services"]
|
|
279
|
-
agent_count:
|
|
288
|
+
agent_count: 15
|
|
280
289
|
cron_count: 0
|
|
281
290
|
trust_lead: "customer — legal compliance reviewer + practice-lead HITL on pricing"
|
|
282
291
|
complexity: "medium"
|
|
283
292
|
decision_tree_path: "proposal_factory"
|
|
293
|
+
keywords: "business development, bd, proposals, proposal automation, rfp, rfp response, rfp automation, rfq response, bids, bidding, bid response, tenders, tender response, govcon, capture management, win themes, win proposals, proposal writing, proposal library, pricing, pricing strategy, compliance review, engagement, sow, statement of work, redline, contracts review, presales, presales engineering, solutioning, response writing, loopio, responsive, qvidian"
|
|
284
294
|
description: >
|
|
285
295
|
RFP-response team. Multi-entry: RFP email, RFP portal upload,
|
|
286
296
|
partner-referred opportunity. Team: RFP ingester · past-proposal
|
|
@@ -296,11 +306,12 @@ templates:
|
|
|
296
306
|
one_line: "RFQ → cost calc → discount policy → approval → quote."
|
|
297
307
|
industries: ["goods", "services"]
|
|
298
308
|
roi_cells: ["price × goods"]
|
|
299
|
-
agent_count:
|
|
309
|
+
agent_count: 14
|
|
300
310
|
cron_count: 0
|
|
301
311
|
trust_lead: "customer + regulator (margin policy) — discount approval HITL-gated"
|
|
302
312
|
complexity: "medium"
|
|
303
313
|
decision_tree_path: "dynamic_pricing"
|
|
314
|
+
keywords: "quote to cash, cpq, cpq automation, pricing, price quoting, quote, quoting, quote generation, rfq, discount, discount governance, deal desk, deal desk approval, margin, margin protection, quotes, order forms, configure price quote, contracts, redline, sales quote, pricing approval, approval workflow, q2c, price calculation, pricing engine, discount approval, deal approval, salesforce cpq, dealhub, quoting team, sales operations"
|
|
304
315
|
description: >
|
|
305
316
|
RFQ-to-quote team. Multi-entry: RFQ email, sales-rep request,
|
|
306
317
|
CPQ event, competitor-price-change webhook. Team: RFQ ingester ·
|
|
@@ -322,11 +333,12 @@ templates:
|
|
|
322
333
|
one_line: "Brief → context → research → analysis → draft → QA."
|
|
323
334
|
industries: ["services", "saas (PS arm)"]
|
|
324
335
|
roi_cells: ["util × services", "hours × services"]
|
|
325
|
-
agent_count:
|
|
336
|
+
agent_count: 19
|
|
326
337
|
cron_count: 1
|
|
327
338
|
trust_lead: "customer — engagement-lead HITL on final delivery"
|
|
328
339
|
complexity: "high"
|
|
329
340
|
decision_tree_path: "consulting_engagement"
|
|
341
|
+
keywords: "professional services, consulting, delivery, client delivery, billable, billable hours, engagement, engagement management, deliverables, deliverable production, client deliverables, client work, research, research reports, analysis, reports, consulting reports, slide decks, ps arm, professional services automation, psa, utilization, consultant, project delivery, qa review, sme review, agency work, agency delivery, advisory, delivery team"
|
|
330
342
|
description: >
|
|
331
343
|
Billable-delivery team — covers both "more output per head" and
|
|
332
344
|
"fewer hours per job" ROI angles in a single mesh. Multi-entry:
|
|
@@ -343,11 +355,12 @@ templates:
|
|
|
343
355
|
one_line: "Forecast → skills match → allocate → idle-detect."
|
|
344
356
|
industries: ["services"]
|
|
345
357
|
roi_cells: ["bench × services"]
|
|
346
|
-
agent_count:
|
|
358
|
+
agent_count: 12
|
|
347
359
|
cron_count: 0
|
|
348
360
|
trust_lead: "internal — staffing-partner HITL on allocation conflicts"
|
|
349
361
|
complexity: "medium"
|
|
350
362
|
decision_tree_path: "staff_utilization"
|
|
363
|
+
keywords: "bench, bench management, bench optimization, resource management, resource allocation, staffing, staffing decisions, allocation, utilization, utilization rate, billable utilization, capacity planning, capacity management, skills matching, skills inventory, resource planning, staff allocation, project staffing, talent deployment, idle resources, reskilling, resourcing, people allocation, resource manager, staffing partner, consultant allocation"
|
|
351
364
|
description: >
|
|
352
365
|
Continuous resource-allocation team. Multi-entry: new project
|
|
353
366
|
kickoff, person rolls off engagement, weekly bench review.
|
|
@@ -373,6 +386,7 @@ templates:
|
|
|
373
386
|
trust_lead: "internal — planner HITL on conflict / major change"
|
|
374
387
|
complexity: "medium"
|
|
375
388
|
decision_tree_path: "factory_planning"
|
|
389
|
+
keywords: "production planning, production scheduling, manufacturing, manufacturing planning, scheduling, factory, demand sensing, demand forecasting, capacity planning, mrp, mps, master production schedule, materials planning, shop floor, shop floor scheduling, plant, plant scheduling, production schedule, master scheduler, supply planning, line scheduling, line balancing, build plan, make plan, make to order, planner"
|
|
376
390
|
description: >
|
|
377
391
|
Production-planning team. Multi-entry: demand signal arrives,
|
|
378
392
|
capacity change event, scheduled re-optimization wake-up. Team:
|
|
@@ -394,6 +408,7 @@ templates:
|
|
|
394
408
|
trust_lead: "internal — QA-manager HITL on batch-release decisions"
|
|
395
409
|
complexity: "medium"
|
|
396
410
|
decision_tree_path: "quality_systems"
|
|
411
|
+
keywords: "quality, qa, quality assurance, quality inspection, quality control, qc, yield, yield optimization, yield improvement, scrap reduction, defect detection, defect tracking, root cause, root cause analysis, corrective action, corrective and preventive action, capa, spc, spc charts, statistical process control, manufacturing quality, batch release, batch quality, inspection, inspection automation, six sigma, qa inspector, quality team"
|
|
397
412
|
description: >
|
|
398
413
|
Quality-inspection team. Multi-entry: vision-system event,
|
|
399
414
|
SPC-out-of-control signal, customer complaint webhook,
|
|
@@ -415,6 +430,7 @@ templates:
|
|
|
415
430
|
trust_lead: "internal — reliability-engineer HITL on shutdown / unscheduled work"
|
|
416
431
|
complexity: "medium"
|
|
417
432
|
decision_tree_path: "asset_reliability"
|
|
433
|
+
keywords: "predictive maintenance, maintenance, condition based maintenance, preventive maintenance, asset management, asset reliability, condition monitoring, equipment monitoring, failure prediction, vibration analysis, work order, work order management, iiot, iot sensors, sensors, reliability, reliability engineer, cmms, downtime, downtime reduction, maintenance scheduling, equipment, repair, technician dispatch, machine health, maintenance team"
|
|
418
434
|
description: >
|
|
419
435
|
Condition-based maintenance team. Multi-entry: IIoT sensor
|
|
420
436
|
anomaly, work order filed, scheduled inspection, parts-arrived
|
|
@@ -436,6 +452,7 @@ templates:
|
|
|
436
452
|
trust_lead: "internal + safety — ops-supervisor HITL on damage / exception; humanoid actions audit-trailed"
|
|
437
453
|
complexity: "high"
|
|
438
454
|
decision_tree_path: "physical_operations"
|
|
455
|
+
keywords: "warehouse, warehouse operations, supply chain, supply chain operations, logistics, logistics automation, fulfillment, order fulfillment, picking, packing, shipping, pick pack ship, inventory, inventory management, wms, wms integration, humanoid, humanoid robots, robotics, robotics fulfillment, distribution, distribution center, dc operations, 3pl, third party logistics, cycle count, cycle counting, ecommerce fulfillment, returns, warehouse team"
|
|
439
456
|
description: >
|
|
440
457
|
Warehouse-operations team — introduces the humanoid actor kind
|
|
441
458
|
for physical work. Multi-entry: order placed, returns received,
|
|
@@ -453,11 +470,12 @@ templates:
|
|
|
453
470
|
one_line: "Order intake → inventory check → supplier sourcing → PO → goods receipt."
|
|
454
471
|
industries: ["goods", "services"]
|
|
455
472
|
roi_cells: ["procurement × goods"]
|
|
456
|
-
agent_count:
|
|
473
|
+
agent_count: 12
|
|
457
474
|
cron_count: 1
|
|
458
475
|
trust_lead: "operations-manager HITL on order approval; po-approver HITL before formal PO issuance; hash-chained audit on every state change"
|
|
459
476
|
complexity: "high"
|
|
460
477
|
decision_tree_path: "procure_to_pay"
|
|
478
|
+
keywords: "procurement, purchasing, purchasing automation, procure to pay, p2p, purchase order, po, po generation, supplier, supplier management, supplier onboarding, sourcing, strategic sourcing, vendor management, vendor sourcing, vendor onboarding, goods receipt, supply chain, buyer, requisition, purchase requisition, three way match, trade compliance, tariff, erp, sap procurement, coupa, ariba, spend management, spend control, procurement team"
|
|
461
479
|
description: >
|
|
462
480
|
Procure-to-pay team — order intake + compliance screening in a
|
|
463
481
|
single LLM pass, then inventory check, supplier sourcing,
|
|
@@ -487,6 +505,7 @@ templates:
|
|
|
487
505
|
trust_lead: "brand + legal visibility — compliance gates publish; legal HITL on regulated claims; CMO on budget > 50K and crises"
|
|
488
506
|
complexity: "high"
|
|
489
507
|
decision_tree_path: "campaign_growth"
|
|
508
|
+
keywords: "marketing, marketing operations, marketing automation, campaign, campaign management, growth, growth marketing, content, content marketing, content creation, copywriting, creative, brand, brand campaigns, advertising, ad campaigns, paid ads, attribution, marketing attribution, performance marketing, cmo, cmo office, social media, social media marketing, publishing, demand generation, seo, email marketing, hubspot marketing, marketo, content team"
|
|
490
509
|
description: >
|
|
491
510
|
Marketing team — campaign briefs land via many channels (form,
|
|
492
511
|
email, product-launch, competitor signal, crisis). Team:
|