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.
Files changed (1027) hide show
  1. create_leafmesh-2.6.2/MANIFEST.in +11 -0
  2. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/PKG-INFO +1 -1
  3. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/__init__.py +1 -1
  4. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/cli.py +149 -9
  5. create_leafmesh-2.6.2/create_leafmesh/search.py +157 -0
  6. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/_registry.yaml +26 -7
  7. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/bd-proposals/agency/_shared/store.py +95 -0
  8. create_leafmesh-2.6.2/create_leafmesh/templates/bd-proposals/agency/proposal_assembler_agent.py +585 -0
  9. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/bd-proposals/configs/config.yaml +55 -1
  10. create_leafmesh-2.6.2/create_leafmesh/templates/bd-proposals/gitignore +17 -0
  11. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/bd-proposals/tests/test_config_shape.py +17 -0
  12. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/bd-proposals/tests/test_floors.py +54 -0
  13. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/bench-management/README.md +4 -2
  14. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/bench-management/agency/_shared/store.py +131 -0
  15. create_leafmesh-2.6.2/create_leafmesh/templates/bench-management/agency/allocation_booker_agent.py +234 -0
  16. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/bench-management/configs/config.yaml +50 -2
  17. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/bench-management/env +6 -0
  18. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/bench-management/tests/test_agent_logic.py +56 -0
  19. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/bench-management/tests/test_config_shape.py +18 -0
  20. create_leafmesh-2.6.2/create_leafmesh/templates/customer-success/agency/__init__.py +14 -0
  21. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/customer-success/agency/_shared/store.py +81 -0
  22. create_leafmesh-2.6.2/create_leafmesh/templates/customer-success/agency/play_runner_agent.py +247 -0
  23. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/customer-success/configs/config.yaml +76 -4
  24. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/customer-success/env +9 -0
  25. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/customer-success/tests/test_agent_logic.py +73 -0
  26. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/customer-support/PRD.md +3 -3
  27. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/customer-support/README.md +18 -8
  28. create_leafmesh-2.6.2/create_leafmesh/templates/customer-support/agency/_shared/store.py +88 -0
  29. create_leafmesh-2.6.2/create_leafmesh/templates/customer-support/agency/reply_dispatcher_agent.py +187 -0
  30. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/customer-support/configs/config.yaml +69 -5
  31. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/customer-support/env +5 -0
  32. create_leafmesh-2.6.2/create_leafmesh/templates/customer-support/tests/test_agent_logic.py +136 -0
  33. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/customer-support/tests/test_config_shape.py +47 -5
  34. create_leafmesh-2.6.2/create_leafmesh/templates/procurement-ops/agency/_shared/audit_logger.py +156 -0
  35. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/procurement-ops/configs/config.yaml +63 -8
  36. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/procurement-ops/main.py +9 -0
  37. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/quote-to-cash/PRD.md +28 -8
  38. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/quote-to-cash/README.md +16 -7
  39. create_leafmesh-2.6.2/create_leafmesh/templates/quote-to-cash/agency/quote_issuer_agent.py +520 -0
  40. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/quote-to-cash/configs/config.yaml +61 -0
  41. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/quote-to-cash/env +2 -0
  42. create_leafmesh-2.6.2/create_leafmesh/templates/quote-to-cash/gitignore +17 -0
  43. create_leafmesh-2.6.2/create_leafmesh/templates/quote-to-cash/requirements.txt +10 -0
  44. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/quote-to-cash/tests/test_config_shape.py +28 -2
  45. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/quote-to-cash/tests/test_floors.py +96 -1
  46. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/services-delivery/agency/_shared/store.py +5 -0
  47. create_leafmesh-2.6.2/create_leafmesh/templates/services-delivery/agency/deliverable_assembler_agent.py +391 -0
  48. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/services-delivery/configs/config.yaml +57 -1
  49. create_leafmesh-2.6.2/create_leafmesh/templates/services-delivery/gitignore +17 -0
  50. create_leafmesh-2.6.2/create_leafmesh/templates/services-delivery/requirements.txt +10 -0
  51. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/services-delivery/tests/test_agent_logic.py +92 -0
  52. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/services-delivery/tests/test_config_shape.py +36 -4
  53. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh.egg-info/PKG-INFO +1 -1
  54. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh.egg-info/SOURCES.txt +11 -308
  55. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/pyproject.toml +17 -1
  56. create_leafmesh-2.6.2/tests/test_search.py +140 -0
  57. create_leafmesh-2.6.0/create_leafmesh/templates/_inspire/logs/leafmesh_2026-06-11.log +0 -6
  58. create_leafmesh-2.6.0/create_leafmesh/templates/ai-dev-squad/logs/leafmesh_2026-06-22.log +0 -0
  59. create_leafmesh-2.6.0/create_leafmesh/templates/ai-dev-squad/logs/leafmesh_2026-06-23.log +0 -18
  60. create_leafmesh-2.6.0/create_leafmesh/templates/bd-proposals/agency/__pycache__/__init__.cpython-314.pyc +0 -0
  61. create_leafmesh-2.6.0/create_leafmesh/templates/bd-proposals/agency/__pycache__/bid_no_bid_decisioner_agent.cpython-314.pyc +0 -0
  62. create_leafmesh-2.6.0/create_leafmesh/templates/bd-proposals/agency/__pycache__/competitive_intel_agent.cpython-314.pyc +0 -0
  63. create_leafmesh-2.6.0/create_leafmesh/templates/bd-proposals/agency/__pycache__/contracts_review_agent.cpython-314.pyc +0 -0
  64. create_leafmesh-2.6.0/create_leafmesh/templates/bd-proposals/agency/__pycache__/precedent_research_agent.cpython-314.pyc +0 -0
  65. create_leafmesh-2.6.0/create_leafmesh/templates/bd-proposals/agency/__pycache__/pricing_configurator_agent.cpython-314.pyc +0 -0
  66. create_leafmesh-2.6.0/create_leafmesh/templates/bd-proposals/agency/__pycache__/rfp_intake_agent.cpython-314.pyc +0 -0
  67. create_leafmesh-2.6.0/create_leafmesh/templates/bd-proposals/agency/_shared/__pycache__/__init__.cpython-314.pyc +0 -0
  68. create_leafmesh-2.6.0/create_leafmesh/templates/bd-proposals/agency/_shared/__pycache__/store.cpython-314.pyc +0 -0
  69. create_leafmesh-2.6.0/create_leafmesh/templates/bd-proposals/logs/leafmesh_2026-06-23.log +0 -43
  70. create_leafmesh-2.6.0/create_leafmesh/templates/bd-proposals/tests/__pycache__/__init__.cpython-314.pyc +0 -0
  71. create_leafmesh-2.6.0/create_leafmesh/templates/bd-proposals/tests/__pycache__/conftest.cpython-314-pytest-9.0.2.pyc +0 -0
  72. create_leafmesh-2.6.0/create_leafmesh/templates/bd-proposals/tests/__pycache__/test_config_shape.cpython-314-pytest-9.0.2.pyc +0 -0
  73. create_leafmesh-2.6.0/create_leafmesh/templates/bd-proposals/tests/__pycache__/test_floors.cpython-314-pytest-9.0.2.pyc +0 -0
  74. create_leafmesh-2.6.0/create_leafmesh/templates/bench-management/agency/__pycache__/__init__.cpython-313.pyc +0 -0
  75. create_leafmesh-2.6.0/create_leafmesh/templates/bench-management/agency/__pycache__/__init__.cpython-314.pyc +0 -0
  76. create_leafmesh-2.6.0/create_leafmesh/templates/bench-management/agency/__pycache__/esat_survey_agent.cpython-313.pyc +0 -0
  77. create_leafmesh-2.6.0/create_leafmesh/templates/bench-management/agency/__pycache__/esat_survey_agent.cpython-314.pyc +0 -0
  78. create_leafmesh-2.6.0/create_leafmesh/templates/bench-management/agency/__pycache__/staffing_coordinator_agent.cpython-313.pyc +0 -0
  79. create_leafmesh-2.6.0/create_leafmesh/templates/bench-management/agency/__pycache__/staffing_coordinator_agent.cpython-314.pyc +0 -0
  80. create_leafmesh-2.6.0/create_leafmesh/templates/bench-management/agency/__pycache__/talent_development_agent.cpython-313.pyc +0 -0
  81. create_leafmesh-2.6.0/create_leafmesh/templates/bench-management/agency/__pycache__/talent_development_agent.cpython-314.pyc +0 -0
  82. create_leafmesh-2.6.0/create_leafmesh/templates/bench-management/agency/__pycache__/workforce_analytics_agent.cpython-313.pyc +0 -0
  83. create_leafmesh-2.6.0/create_leafmesh/templates/bench-management/agency/__pycache__/workforce_analytics_agent.cpython-314.pyc +0 -0
  84. create_leafmesh-2.6.0/create_leafmesh/templates/bench-management/agency/_shared/__pycache__/__init__.cpython-313.pyc +0 -0
  85. create_leafmesh-2.6.0/create_leafmesh/templates/bench-management/agency/_shared/__pycache__/__init__.cpython-314.pyc +0 -0
  86. create_leafmesh-2.6.0/create_leafmesh/templates/bench-management/agency/_shared/__pycache__/audit_logger.cpython-313.pyc +0 -0
  87. create_leafmesh-2.6.0/create_leafmesh/templates/bench-management/agency/_shared/__pycache__/store.cpython-313.pyc +0 -0
  88. create_leafmesh-2.6.0/create_leafmesh/templates/bench-management/agency/_shared/__pycache__/store.cpython-314.pyc +0 -0
  89. create_leafmesh-2.6.0/create_leafmesh/templates/bench-management/logs/leafmesh_2026-06-23.log +0 -10
  90. create_leafmesh-2.6.0/create_leafmesh/templates/bench-management/tests/__pycache__/__init__.cpython-314.pyc +0 -0
  91. create_leafmesh-2.6.0/create_leafmesh/templates/bench-management/tests/__pycache__/conftest.cpython-314-pytest-9.0.2.pyc +0 -0
  92. create_leafmesh-2.6.0/create_leafmesh/templates/bench-management/tests/__pycache__/test_agent_logic.cpython-314-pytest-9.0.2.pyc +0 -0
  93. create_leafmesh-2.6.0/create_leafmesh/templates/bench-management/tests/__pycache__/test_config_shape.cpython-314-pytest-9.0.2.pyc +0 -0
  94. create_leafmesh-2.6.0/create_leafmesh/templates/customer-success/agency/__init__.py +0 -8
  95. create_leafmesh-2.6.0/create_leafmesh/templates/customer-success/agency/__pycache__/__init__.cpython-314.pyc +0 -0
  96. create_leafmesh-2.6.0/create_leafmesh/templates/customer-success/agency/__pycache__/health_score_agent.cpython-314.pyc +0 -0
  97. create_leafmesh-2.6.0/create_leafmesh/templates/customer-success/agency/__pycache__/renewals_agent.cpython-314.pyc +0 -0
  98. create_leafmesh-2.6.0/create_leafmesh/templates/customer-success/agency/__pycache__/risk_detector_agent.cpython-314.pyc +0 -0
  99. create_leafmesh-2.6.0/create_leafmesh/templates/customer-success/agency/__pycache__/save_play_agent.cpython-314.pyc +0 -0
  100. create_leafmesh-2.6.0/create_leafmesh/templates/customer-success/agency/_shared/__pycache__/__init__.cpython-314.pyc +0 -0
  101. create_leafmesh-2.6.0/create_leafmesh/templates/customer-success/agency/_shared/__pycache__/extract.cpython-314.pyc +0 -0
  102. create_leafmesh-2.6.0/create_leafmesh/templates/customer-success/agency/_shared/__pycache__/health_math.cpython-314.pyc +0 -0
  103. create_leafmesh-2.6.0/create_leafmesh/templates/customer-success/agency/_shared/__pycache__/session_stash.cpython-314.pyc +0 -0
  104. create_leafmesh-2.6.0/create_leafmesh/templates/customer-success/agency/_shared/__pycache__/store.cpython-314.pyc +0 -0
  105. create_leafmesh-2.6.0/create_leafmesh/templates/customer-success/logs/leafmesh_2026-06-23.log +0 -18
  106. create_leafmesh-2.6.0/create_leafmesh/templates/customer-success/tests/__pycache__/__init__.cpython-314.pyc +0 -0
  107. create_leafmesh-2.6.0/create_leafmesh/templates/customer-success/tests/__pycache__/conftest.cpython-314-pytest-9.0.2.pyc +0 -0
  108. create_leafmesh-2.6.0/create_leafmesh/templates/customer-success/tests/__pycache__/test_agent_logic.cpython-314-pytest-9.0.2.pyc +0 -0
  109. create_leafmesh-2.6.0/create_leafmesh/templates/customer-success/tests/__pycache__/test_config_shape.cpython-314-pytest-9.0.2.pyc +0 -0
  110. create_leafmesh-2.6.0/create_leafmesh/templates/customer-support/logs/leafmesh_2026-06-11.log +0 -80
  111. create_leafmesh-2.6.0/create_leafmesh/templates/customer-support/logs/leafmesh_2026-06-12.log +0 -0
  112. create_leafmesh-2.6.0/create_leafmesh/templates/customer-support/tests/test_agent_logic.py +0 -30
  113. create_leafmesh-2.6.0/create_leafmesh/templates/finance-ops/agency/__pycache__/__init__.cpython-314.pyc +0 -0
  114. create_leafmesh-2.6.0/create_leafmesh/templates/finance-ops/agency/__pycache__/erp_poster_agent.cpython-314.pyc +0 -0
  115. create_leafmesh-2.6.0/create_leafmesh/templates/finance-ops/agency/__pycache__/gl_coding_agent.cpython-314.pyc +0 -0
  116. create_leafmesh-2.6.0/create_leafmesh/templates/finance-ops/agency/__pycache__/invoice_intake_agent.cpython-314.pyc +0 -0
  117. create_leafmesh-2.6.0/create_leafmesh/templates/finance-ops/agency/__pycache__/matching_agent.cpython-314.pyc +0 -0
  118. create_leafmesh-2.6.0/create_leafmesh/templates/finance-ops/agency/__pycache__/payment_risk_agent.cpython-314.pyc +0 -0
  119. create_leafmesh-2.6.0/create_leafmesh/templates/finance-ops/agency/__pycache__/regulatory_monitor_agent.cpython-314.pyc +0 -0
  120. create_leafmesh-2.6.0/create_leafmesh/templates/finance-ops/agency/__pycache__/vendor_compliance_agent.cpython-314.pyc +0 -0
  121. create_leafmesh-2.6.0/create_leafmesh/templates/finance-ops/agency/_shared/__pycache__/__init__.cpython-314.pyc +0 -0
  122. create_leafmesh-2.6.0/create_leafmesh/templates/finance-ops/agency/_shared/__pycache__/compliance_screen.cpython-314.pyc +0 -0
  123. create_leafmesh-2.6.0/create_leafmesh/templates/finance-ops/agency/_shared/__pycache__/dedupe.cpython-314.pyc +0 -0
  124. create_leafmesh-2.6.0/create_leafmesh/templates/finance-ops/agency/_shared/__pycache__/erp_poster.cpython-314.pyc +0 -0
  125. create_leafmesh-2.6.0/create_leafmesh/templates/finance-ops/agency/_shared/__pycache__/matching_math.cpython-314.pyc +0 -0
  126. create_leafmesh-2.6.0/create_leafmesh/templates/finance-ops/agency/_shared/__pycache__/session_stash.cpython-314.pyc +0 -0
  127. create_leafmesh-2.6.0/create_leafmesh/templates/finance-ops/agency/_shared/__pycache__/store.cpython-314.pyc +0 -0
  128. create_leafmesh-2.6.0/create_leafmesh/templates/finance-ops/logs/leafmesh_2026-06-23.log +0 -26
  129. create_leafmesh-2.6.0/create_leafmesh/templates/finance-ops/tests/__pycache__/__init__.cpython-314.pyc +0 -0
  130. create_leafmesh-2.6.0/create_leafmesh/templates/finance-ops/tests/__pycache__/conftest.cpython-314-pytest-9.0.2.pyc +0 -0
  131. create_leafmesh-2.6.0/create_leafmesh/templates/finance-ops/tests/__pycache__/test_agent_logic.cpython-314-pytest-9.0.2.pyc +0 -0
  132. create_leafmesh-2.6.0/create_leafmesh/templates/finance-ops/tests/__pycache__/test_config_shape.cpython-314-pytest-9.0.2.pyc +0 -0
  133. create_leafmesh-2.6.0/create_leafmesh/templates/finance-ops/tests/__pycache__/test_floors.cpython-314-pytest-9.0.2.pyc +0 -0
  134. create_leafmesh-2.6.0/create_leafmesh/templates/infra-cost-ops/agency/__pycache__/__init__.cpython-313.pyc +0 -0
  135. create_leafmesh-2.6.0/create_leafmesh/templates/infra-cost-ops/agency/__pycache__/__init__.cpython-314.pyc +0 -0
  136. create_leafmesh-2.6.0/create_leafmesh/templates/infra-cost-ops/agency/__pycache__/commitments_agent.cpython-313.pyc +0 -0
  137. create_leafmesh-2.6.0/create_leafmesh/templates/infra-cost-ops/agency/__pycache__/commitments_agent.cpython-314.pyc +0 -0
  138. create_leafmesh-2.6.0/create_leafmesh/templates/infra-cost-ops/agency/__pycache__/cost_anomaly_agent.cpython-313.pyc +0 -0
  139. create_leafmesh-2.6.0/create_leafmesh/templates/infra-cost-ops/agency/__pycache__/cost_anomaly_agent.cpython-314.pyc +0 -0
  140. create_leafmesh-2.6.0/create_leafmesh/templates/infra-cost-ops/agency/__pycache__/cost_tuner_agent.cpython-313.pyc +0 -0
  141. create_leafmesh-2.6.0/create_leafmesh/templates/infra-cost-ops/agency/__pycache__/cost_tuner_agent.cpython-314.pyc +0 -0
  142. create_leafmesh-2.6.0/create_leafmesh/templates/infra-cost-ops/agency/__pycache__/finops_governance_agent.cpython-313.pyc +0 -0
  143. create_leafmesh-2.6.0/create_leafmesh/templates/infra-cost-ops/agency/__pycache__/finops_governance_agent.cpython-314.pyc +0 -0
  144. create_leafmesh-2.6.0/create_leafmesh/templates/infra-cost-ops/agency/__pycache__/iac_drift_agent.cpython-313.pyc +0 -0
  145. create_leafmesh-2.6.0/create_leafmesh/templates/infra-cost-ops/agency/__pycache__/iac_drift_agent.cpython-314.pyc +0 -0
  146. create_leafmesh-2.6.0/create_leafmesh/templates/infra-cost-ops/agency/__pycache__/regulatory_monitor_agent.cpython-313.pyc +0 -0
  147. create_leafmesh-2.6.0/create_leafmesh/templates/infra-cost-ops/agency/__pycache__/regulatory_monitor_agent.cpython-314.pyc +0 -0
  148. create_leafmesh-2.6.0/create_leafmesh/templates/infra-cost-ops/agency/_shared/__pycache__/__init__.cpython-313.pyc +0 -0
  149. create_leafmesh-2.6.0/create_leafmesh/templates/infra-cost-ops/agency/_shared/__pycache__/__init__.cpython-314.pyc +0 -0
  150. create_leafmesh-2.6.0/create_leafmesh/templates/infra-cost-ops/agency/_shared/__pycache__/audit_logger.cpython-313.pyc +0 -0
  151. create_leafmesh-2.6.0/create_leafmesh/templates/infra-cost-ops/agency/_shared/__pycache__/session_stash.cpython-313.pyc +0 -0
  152. create_leafmesh-2.6.0/create_leafmesh/templates/infra-cost-ops/agency/_shared/__pycache__/session_stash.cpython-314.pyc +0 -0
  153. create_leafmesh-2.6.0/create_leafmesh/templates/infra-cost-ops/agency/_shared/__pycache__/store.cpython-313.pyc +0 -0
  154. create_leafmesh-2.6.0/create_leafmesh/templates/infra-cost-ops/agency/_shared/__pycache__/store.cpython-314.pyc +0 -0
  155. create_leafmesh-2.6.0/create_leafmesh/templates/infra-cost-ops/logs/leafmesh_2026-06-23.log +0 -22
  156. create_leafmesh-2.6.0/create_leafmesh/templates/infra-cost-ops/tests/__pycache__/__init__.cpython-314.pyc +0 -0
  157. create_leafmesh-2.6.0/create_leafmesh/templates/infra-cost-ops/tests/__pycache__/conftest.cpython-314-pytest-9.0.2.pyc +0 -0
  158. 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
  159. 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
  160. create_leafmesh-2.6.0/create_leafmesh/templates/logs/leafmesh_2026-06-23.log +0 -82
  161. create_leafmesh-2.6.0/create_leafmesh/templates/marketing-ops/agency/__pycache__/__init__.cpython-313.pyc +0 -0
  162. create_leafmesh-2.6.0/create_leafmesh/templates/marketing-ops/agency/__pycache__/__init__.cpython-314.pyc +0 -0
  163. create_leafmesh-2.6.0/create_leafmesh/templates/marketing-ops/agency/__pycache__/brand_guardian_agent.cpython-313.pyc +0 -0
  164. create_leafmesh-2.6.0/create_leafmesh/templates/marketing-ops/agency/__pycache__/brand_guardian_agent.cpython-314.pyc +0 -0
  165. create_leafmesh-2.6.0/create_leafmesh/templates/marketing-ops/agency/__pycache__/campaign_strategist_agent.cpython-313.pyc +0 -0
  166. create_leafmesh-2.6.0/create_leafmesh/templates/marketing-ops/agency/__pycache__/campaign_strategist_agent.cpython-314.pyc +0 -0
  167. create_leafmesh-2.6.0/create_leafmesh/templates/marketing-ops/agency/__pycache__/compliance_reviewer_agent.cpython-313.pyc +0 -0
  168. create_leafmesh-2.6.0/create_leafmesh/templates/marketing-ops/agency/__pycache__/compliance_reviewer_agent.cpython-314.pyc +0 -0
  169. create_leafmesh-2.6.0/create_leafmesh/templates/marketing-ops/agency/__pycache__/copywriter_agent.cpython-313.pyc +0 -0
  170. create_leafmesh-2.6.0/create_leafmesh/templates/marketing-ops/agency/__pycache__/copywriter_agent.cpython-314.pyc +0 -0
  171. create_leafmesh-2.6.0/create_leafmesh/templates/marketing-ops/agency/__pycache__/market_intelligence_agent.cpython-313.pyc +0 -0
  172. create_leafmesh-2.6.0/create_leafmesh/templates/marketing-ops/agency/__pycache__/market_intelligence_agent.cpython-314.pyc +0 -0
  173. create_leafmesh-2.6.0/create_leafmesh/templates/marketing-ops/agency/__pycache__/marketing_audit_logger_agent.cpython-313.pyc +0 -0
  174. create_leafmesh-2.6.0/create_leafmesh/templates/marketing-ops/agency/__pycache__/publisher_agent.cpython-313.pyc +0 -0
  175. create_leafmesh-2.6.0/create_leafmesh/templates/marketing-ops/agency/__pycache__/publisher_agent.cpython-314.pyc +0 -0
  176. create_leafmesh-2.6.0/create_leafmesh/templates/marketing-ops/agency/_shared/__pycache__/__init__.cpython-313.pyc +0 -0
  177. create_leafmesh-2.6.0/create_leafmesh/templates/marketing-ops/agency/_shared/__pycache__/__init__.cpython-314.pyc +0 -0
  178. create_leafmesh-2.6.0/create_leafmesh/templates/marketing-ops/agency/_shared/__pycache__/audit_logger.cpython-313.pyc +0 -0
  179. create_leafmesh-2.6.0/create_leafmesh/templates/marketing-ops/agency/_shared/__pycache__/session_stash.cpython-313.pyc +0 -0
  180. create_leafmesh-2.6.0/create_leafmesh/templates/marketing-ops/agency/_shared/__pycache__/session_stash.cpython-314.pyc +0 -0
  181. create_leafmesh-2.6.0/create_leafmesh/templates/marketing-ops/agency/_shared/__pycache__/store.cpython-313.pyc +0 -0
  182. create_leafmesh-2.6.0/create_leafmesh/templates/marketing-ops/agency/_shared/__pycache__/store.cpython-314.pyc +0 -0
  183. create_leafmesh-2.6.0/create_leafmesh/templates/marketing-ops/logs/leafmesh_2026-06-12.log +0 -46
  184. create_leafmesh-2.6.0/create_leafmesh/templates/marketing-ops/logs/leafmesh_2026-06-23.log +0 -38
  185. create_leafmesh-2.6.0/create_leafmesh/templates/marketing-ops/tests/__pycache__/__init__.cpython-314.pyc +0 -0
  186. create_leafmesh-2.6.0/create_leafmesh/templates/marketing-ops/tests/__pycache__/conftest.cpython-314-pytest-9.0.2.pyc +0 -0
  187. create_leafmesh-2.6.0/create_leafmesh/templates/marketing-ops/tests/__pycache__/test_agent_logic.cpython-314-pytest-9.0.2.pyc +0 -0
  188. create_leafmesh-2.6.0/create_leafmesh/templates/marketing-ops/tests/__pycache__/test_config_shape.cpython-314-pytest-9.0.2.pyc +0 -0
  189. create_leafmesh-2.6.0/create_leafmesh/templates/outbound-sdr/logs/leafmesh_2026-06-21.log +0 -0
  190. create_leafmesh-2.6.0/create_leafmesh/templates/predictive-maintenance/agency/__pycache__/__init__.cpython-314.pyc +0 -0
  191. create_leafmesh-2.6.0/create_leafmesh/templates/predictive-maintenance/agency/__pycache__/equipment_lifecycle_agent.cpython-314.pyc +0 -0
  192. create_leafmesh-2.6.0/create_leafmesh/templates/predictive-maintenance/agency/__pycache__/failure_predictor_agent.cpython-314.pyc +0 -0
  193. create_leafmesh-2.6.0/create_leafmesh/templates/predictive-maintenance/agency/__pycache__/safety_incident_reporter_agent.cpython-314.pyc +0 -0
  194. create_leafmesh-2.6.0/create_leafmesh/templates/predictive-maintenance/agency/__pycache__/spare_parts_forecaster_agent.cpython-314.pyc +0 -0
  195. create_leafmesh-2.6.0/create_leafmesh/templates/predictive-maintenance/agency/__pycache__/work_order_scheduler_agent.cpython-314.pyc +0 -0
  196. create_leafmesh-2.6.0/create_leafmesh/templates/predictive-maintenance/agency/_shared/__pycache__/__init__.cpython-314.pyc +0 -0
  197. create_leafmesh-2.6.0/create_leafmesh/templates/predictive-maintenance/agency/_shared/__pycache__/store.cpython-314.pyc +0 -0
  198. create_leafmesh-2.6.0/create_leafmesh/templates/predictive-maintenance/logs/leafmesh_2026-06-09.log +0 -21
  199. create_leafmesh-2.6.0/create_leafmesh/templates/predictive-maintenance/logs/leafmesh_2026-06-10.log +0 -7
  200. create_leafmesh-2.6.0/create_leafmesh/templates/predictive-maintenance/logs/leafmesh_2026-06-11.log +0 -88
  201. create_leafmesh-2.6.0/create_leafmesh/templates/predictive-maintenance/logs/leafmesh_2026-06-12.log +0 -32
  202. create_leafmesh-2.6.0/create_leafmesh/templates/predictive-maintenance/logs/leafmesh_2026-06-23.log +0 -750
  203. create_leafmesh-2.6.0/create_leafmesh/templates/predictive-maintenance/tests/__pycache__/__init__.cpython-314.pyc +0 -0
  204. create_leafmesh-2.6.0/create_leafmesh/templates/predictive-maintenance/tests/__pycache__/conftest.cpython-314-pytest-9.0.2.pyc +0 -0
  205. create_leafmesh-2.6.0/create_leafmesh/templates/predictive-maintenance/tests/__pycache__/test_agent_logic.cpython-314-pytest-9.0.2.pyc +0 -0
  206. create_leafmesh-2.6.0/create_leafmesh/templates/predictive-maintenance/tests/__pycache__/test_config_shape.cpython-314-pytest-9.0.2.pyc +0 -0
  207. create_leafmesh-2.6.0/create_leafmesh/templates/procurement-ops/agency/__pycache__/__init__.cpython-313.pyc +0 -0
  208. create_leafmesh-2.6.0/create_leafmesh/templates/procurement-ops/agency/__pycache__/__init__.cpython-314.pyc +0 -0
  209. create_leafmesh-2.6.0/create_leafmesh/templates/procurement-ops/agency/__pycache__/data_loader.cpython-313.pyc +0 -0
  210. create_leafmesh-2.6.0/create_leafmesh/templates/procurement-ops/agency/__pycache__/data_loader.cpython-314.pyc +0 -0
  211. create_leafmesh-2.6.0/create_leafmesh/templates/procurement-ops/agency/__pycache__/grn_agent.cpython-313.pyc +0 -0
  212. create_leafmesh-2.6.0/create_leafmesh/templates/procurement-ops/agency/__pycache__/grn_agent.cpython-314.pyc +0 -0
  213. create_leafmesh-2.6.0/create_leafmesh/templates/procurement-ops/agency/__pycache__/inventory_agent.cpython-313.pyc +0 -0
  214. create_leafmesh-2.6.0/create_leafmesh/templates/procurement-ops/agency/__pycache__/inventory_agent.cpython-314.pyc +0 -0
  215. create_leafmesh-2.6.0/create_leafmesh/templates/procurement-ops/agency/__pycache__/logistics_agent.cpython-313.pyc +0 -0
  216. create_leafmesh-2.6.0/create_leafmesh/templates/procurement-ops/agency/__pycache__/logistics_agent.cpython-314.pyc +0 -0
  217. create_leafmesh-2.6.0/create_leafmesh/templates/procurement-ops/agency/__pycache__/order_intake_agent.cpython-313.pyc +0 -0
  218. create_leafmesh-2.6.0/create_leafmesh/templates/procurement-ops/agency/__pycache__/order_intake_agent.cpython-314.pyc +0 -0
  219. create_leafmesh-2.6.0/create_leafmesh/templates/procurement-ops/agency/__pycache__/purchase_order_agent.cpython-313.pyc +0 -0
  220. create_leafmesh-2.6.0/create_leafmesh/templates/procurement-ops/agency/__pycache__/purchase_order_agent.cpython-314.pyc +0 -0
  221. create_leafmesh-2.6.0/create_leafmesh/templates/procurement-ops/agency/__pycache__/supplier_agent.cpython-313.pyc +0 -0
  222. create_leafmesh-2.6.0/create_leafmesh/templates/procurement-ops/agency/__pycache__/supplier_agent.cpython-314.pyc +0 -0
  223. create_leafmesh-2.6.0/create_leafmesh/templates/procurement-ops/agency/__pycache__/supply_report_agent.cpython-313.pyc +0 -0
  224. create_leafmesh-2.6.0/create_leafmesh/templates/procurement-ops/agency/__pycache__/supply_report_agent.cpython-314.pyc +0 -0
  225. create_leafmesh-2.6.0/create_leafmesh/templates/procurement-ops/agency/__pycache__/tariff_classifier_agent.cpython-313.pyc +0 -0
  226. create_leafmesh-2.6.0/create_leafmesh/templates/procurement-ops/agency/__pycache__/tariff_classifier_agent.cpython-314.pyc +0 -0
  227. create_leafmesh-2.6.0/create_leafmesh/templates/procurement-ops/agency/__pycache__/tools.cpython-313.pyc +0 -0
  228. create_leafmesh-2.6.0/create_leafmesh/templates/procurement-ops/agency/__pycache__/tools.cpython-314.pyc +0 -0
  229. create_leafmesh-2.6.0/create_leafmesh/templates/procurement-ops/agency/__pycache__/trade_compliance_agent.cpython-313.pyc +0 -0
  230. create_leafmesh-2.6.0/create_leafmesh/templates/procurement-ops/agency/__pycache__/trade_compliance_agent.cpython-314.pyc +0 -0
  231. create_leafmesh-2.6.0/create_leafmesh/templates/procurement-ops/agency/_shared/__pycache__/__init__.cpython-313.pyc +0 -0
  232. create_leafmesh-2.6.0/create_leafmesh/templates/procurement-ops/agency/_shared/__pycache__/__init__.cpython-314.pyc +0 -0
  233. create_leafmesh-2.6.0/create_leafmesh/templates/procurement-ops/agency/_shared/__pycache__/session_stash.cpython-313.pyc +0 -0
  234. create_leafmesh-2.6.0/create_leafmesh/templates/procurement-ops/agency/_shared/__pycache__/session_stash.cpython-314.pyc +0 -0
  235. create_leafmesh-2.6.0/create_leafmesh/templates/procurement-ops/logs/leafmesh_2026-06-23.log +0 -12
  236. create_leafmesh-2.6.0/create_leafmesh/templates/procurement-ops/tests/__pycache__/__init__.cpython-314.pyc +0 -0
  237. create_leafmesh-2.6.0/create_leafmesh/templates/procurement-ops/tests/__pycache__/test_chain_floors.cpython-314-pytest-9.0.2.pyc +0 -0
  238. create_leafmesh-2.6.0/create_leafmesh/templates/procurement-ops/tests/__pycache__/test_config_shape.cpython-314-pytest-9.0.2.pyc +0 -0
  239. create_leafmesh-2.6.0/create_leafmesh/templates/production-planning/agency/__pycache__/__init__.cpython-313.pyc +0 -0
  240. create_leafmesh-2.6.0/create_leafmesh/templates/production-planning/agency/__pycache__/__init__.cpython-314.pyc +0 -0
  241. create_leafmesh-2.6.0/create_leafmesh/templates/production-planning/agency/__pycache__/constraint_flagger_agent.cpython-313.pyc +0 -0
  242. create_leafmesh-2.6.0/create_leafmesh/templates/production-planning/agency/__pycache__/constraint_flagger_agent.cpython-314.pyc +0 -0
  243. create_leafmesh-2.6.0/create_leafmesh/templates/production-planning/agency/__pycache__/demand_sensor_agent.cpython-313.pyc +0 -0
  244. create_leafmesh-2.6.0/create_leafmesh/templates/production-planning/agency/__pycache__/release_agent.cpython-313.pyc +0 -0
  245. create_leafmesh-2.6.0/create_leafmesh/templates/production-planning/agency/__pycache__/scheduler_agent.cpython-313.pyc +0 -0
  246. create_leafmesh-2.6.0/create_leafmesh/templates/production-planning/agency/__pycache__/supplier_signal_agent.cpython-313.pyc +0 -0
  247. create_leafmesh-2.6.0/create_leafmesh/templates/production-planning/agency/__pycache__/supplier_signal_agent.cpython-314.pyc +0 -0
  248. create_leafmesh-2.6.0/create_leafmesh/templates/production-planning/agency/_shared/__pycache__/__init__.cpython-313.pyc +0 -0
  249. create_leafmesh-2.6.0/create_leafmesh/templates/production-planning/agency/_shared/__pycache__/__init__.cpython-314.pyc +0 -0
  250. create_leafmesh-2.6.0/create_leafmesh/templates/production-planning/agency/_shared/__pycache__/audit_logger.cpython-313.pyc +0 -0
  251. create_leafmesh-2.6.0/create_leafmesh/templates/production-planning/agency/_shared/__pycache__/session_stash.cpython-313.pyc +0 -0
  252. create_leafmesh-2.6.0/create_leafmesh/templates/production-planning/agency/_shared/__pycache__/session_stash.cpython-314.pyc +0 -0
  253. create_leafmesh-2.6.0/create_leafmesh/templates/production-planning/agency/_shared/__pycache__/store.cpython-313.pyc +0 -0
  254. create_leafmesh-2.6.0/create_leafmesh/templates/production-planning/agency/_shared/__pycache__/store.cpython-314.pyc +0 -0
  255. create_leafmesh-2.6.0/create_leafmesh/templates/production-planning/logs/leafmesh_2026-06-23.log +0 -22
  256. create_leafmesh-2.6.0/create_leafmesh/templates/production-planning/tests/__pycache__/__init__.cpython-314.pyc +0 -0
  257. create_leafmesh-2.6.0/create_leafmesh/templates/production-planning/tests/__pycache__/conftest.cpython-314-pytest-9.0.2.pyc +0 -0
  258. create_leafmesh-2.6.0/create_leafmesh/templates/production-planning/tests/__pycache__/test_agent_logic.cpython-314-pytest-9.0.2.pyc +0 -0
  259. create_leafmesh-2.6.0/create_leafmesh/templates/production-planning/tests/__pycache__/test_config_shape.cpython-314-pytest-9.0.2.pyc +0 -0
  260. create_leafmesh-2.6.0/create_leafmesh/templates/quality-yield/agency/__pycache__/__init__.cpython-314.pyc +0 -0
  261. create_leafmesh-2.6.0/create_leafmesh/templates/quality-yield/agency/__pycache__/inspection_intake_agent.cpython-314.pyc +0 -0
  262. create_leafmesh-2.6.0/create_leafmesh/templates/quality-yield/agency/__pycache__/quality_engineer_agent.cpython-314.pyc +0 -0
  263. create_leafmesh-2.6.0/create_leafmesh/templates/quality-yield/agency/__pycache__/recall_traceability_agent.cpython-314.pyc +0 -0
  264. create_leafmesh-2.6.0/create_leafmesh/templates/quality-yield/agency/__pycache__/regulatory_compliance_agent.cpython-314.pyc +0 -0
  265. create_leafmesh-2.6.0/create_leafmesh/templates/quality-yield/agency/__pycache__/spc_monitor_agent.cpython-314.pyc +0 -0
  266. create_leafmesh-2.6.0/create_leafmesh/templates/quality-yield/agency/_shared/__pycache__/__init__.cpython-314.pyc +0 -0
  267. create_leafmesh-2.6.0/create_leafmesh/templates/quality-yield/agency/_shared/__pycache__/batch_release.cpython-314.pyc +0 -0
  268. create_leafmesh-2.6.0/create_leafmesh/templates/quality-yield/agency/_shared/__pycache__/defect_scoring.cpython-314.pyc +0 -0
  269. create_leafmesh-2.6.0/create_leafmesh/templates/quality-yield/agency/_shared/__pycache__/spc_math.cpython-314.pyc +0 -0
  270. create_leafmesh-2.6.0/create_leafmesh/templates/quality-yield/agency/_shared/__pycache__/store.cpython-314.pyc +0 -0
  271. create_leafmesh-2.6.0/create_leafmesh/templates/quality-yield/logs/leafmesh_2026-06-23.log +0 -94
  272. create_leafmesh-2.6.0/create_leafmesh/templates/quality-yield/tests/__pycache__/__init__.cpython-314.pyc +0 -0
  273. create_leafmesh-2.6.0/create_leafmesh/templates/quality-yield/tests/__pycache__/conftest.cpython-314-pytest-9.0.2.pyc +0 -0
  274. create_leafmesh-2.6.0/create_leafmesh/templates/quality-yield/tests/__pycache__/test_agent_logic.cpython-314-pytest-9.0.2.pyc +0 -0
  275. create_leafmesh-2.6.0/create_leafmesh/templates/quality-yield/tests/__pycache__/test_config_shape.cpython-314-pytest-9.0.2.pyc +0 -0
  276. create_leafmesh-2.6.0/create_leafmesh/templates/quote-to-cash/agency/__pycache__/__init__.cpython-314.pyc +0 -0
  277. create_leafmesh-2.6.0/create_leafmesh/templates/quote-to-cash/agency/__pycache__/cost_calculator_agent.cpython-314.pyc +0 -0
  278. create_leafmesh-2.6.0/create_leafmesh/templates/quote-to-cash/agency/__pycache__/deal_compliance_agent.cpython-314.pyc +0 -0
  279. create_leafmesh-2.6.0/create_leafmesh/templates/quote-to-cash/agency/__pycache__/discount_policy_agent.cpython-314.pyc +0 -0
  280. create_leafmesh-2.6.0/create_leafmesh/templates/quote-to-cash/agency/__pycache__/quote_drafter_agent.cpython-314.pyc +0 -0
  281. create_leafmesh-2.6.0/create_leafmesh/templates/quote-to-cash/agency/_shared/__pycache__/__init__.cpython-314.pyc +0 -0
  282. create_leafmesh-2.6.0/create_leafmesh/templates/quote-to-cash/agency/_shared/__pycache__/session_stash.cpython-314.pyc +0 -0
  283. create_leafmesh-2.6.0/create_leafmesh/templates/quote-to-cash/agency/_shared/__pycache__/store.cpython-314.pyc +0 -0
  284. create_leafmesh-2.6.0/create_leafmesh/templates/quote-to-cash/logs/leafmesh_2026-06-23.log +0 -14
  285. create_leafmesh-2.6.0/create_leafmesh/templates/quote-to-cash/tests/__pycache__/__init__.cpython-314.pyc +0 -0
  286. create_leafmesh-2.6.0/create_leafmesh/templates/quote-to-cash/tests/__pycache__/conftest.cpython-314-pytest-9.0.2.pyc +0 -0
  287. 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
  288. 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
  289. create_leafmesh-2.6.0/create_leafmesh/templates/quote-to-cash/tests/__pycache__/test_floors.cpython-314-pytest-9.0.2.pyc +0 -0
  290. create_leafmesh-2.6.0/create_leafmesh/templates/recruiting-ops/agency/__pycache__/__init__.cpython-314.pyc +0 -0
  291. create_leafmesh-2.6.0/create_leafmesh/templates/recruiting-ops/agency/__pycache__/bias_audit_agent.cpython-314.pyc +0 -0
  292. create_leafmesh-2.6.0/create_leafmesh/templates/recruiting-ops/agency/__pycache__/correspondence_drafter_agent.cpython-314.pyc +0 -0
  293. create_leafmesh-2.6.0/create_leafmesh/templates/recruiting-ops/agency/__pycache__/hiring_assistant_agent.cpython-314.pyc +0 -0
  294. create_leafmesh-2.6.0/create_leafmesh/templates/recruiting-ops/agency/__pycache__/interview_coordinator_agent.cpython-314.pyc +0 -0
  295. create_leafmesh-2.6.0/create_leafmesh/templates/recruiting-ops/agency/__pycache__/resume_screener_agent.cpython-314.pyc +0 -0
  296. create_leafmesh-2.6.0/create_leafmesh/templates/recruiting-ops/agency/_shared/__pycache__/__init__.cpython-314.pyc +0 -0
  297. create_leafmesh-2.6.0/create_leafmesh/templates/recruiting-ops/agency/_shared/__pycache__/session_stash.cpython-314.pyc +0 -0
  298. create_leafmesh-2.6.0/create_leafmesh/templates/recruiting-ops/agency/_shared/__pycache__/store.cpython-314.pyc +0 -0
  299. create_leafmesh-2.6.0/create_leafmesh/templates/recruiting-ops/logs/leafmesh_2026-06-23.log +0 -16
  300. create_leafmesh-2.6.0/create_leafmesh/templates/recruiting-ops/tests/__pycache__/__init__.cpython-314.pyc +0 -0
  301. create_leafmesh-2.6.0/create_leafmesh/templates/recruiting-ops/tests/__pycache__/conftest.cpython-314-pytest-9.0.2.pyc +0 -0
  302. create_leafmesh-2.6.0/create_leafmesh/templates/recruiting-ops/tests/__pycache__/test_agent_logic.cpython-314-pytest-9.0.2.pyc +0 -0
  303. create_leafmesh-2.6.0/create_leafmesh/templates/recruiting-ops/tests/__pycache__/test_config_shape.cpython-314-pytest-9.0.2.pyc +0 -0
  304. create_leafmesh-2.6.0/create_leafmesh/templates/sales-orchestration/agency/__pycache__/__init__.cpython-313.pyc +0 -0
  305. create_leafmesh-2.6.0/create_leafmesh/templates/sales-orchestration/agency/__pycache__/__init__.cpython-314.pyc +0 -0
  306. create_leafmesh-2.6.0/create_leafmesh/templates/sales-orchestration/agency/__pycache__/lead_intake_agent.cpython-313.pyc +0 -0
  307. create_leafmesh-2.6.0/create_leafmesh/templates/sales-orchestration/agency/__pycache__/lead_intake_agent.cpython-314.pyc +0 -0
  308. create_leafmesh-2.6.0/create_leafmesh/templates/sales-orchestration/agency/__pycache__/lead_qualification_agent.cpython-313.pyc +0 -0
  309. create_leafmesh-2.6.0/create_leafmesh/templates/sales-orchestration/agency/__pycache__/lead_qualification_agent.cpython-314.pyc +0 -0
  310. create_leafmesh-2.6.0/create_leafmesh/templates/sales-orchestration/agency/__pycache__/lead_revival_agent.cpython-313.pyc +0 -0
  311. create_leafmesh-2.6.0/create_leafmesh/templates/sales-orchestration/agency/__pycache__/lead_revival_agent.cpython-314.pyc +0 -0
  312. create_leafmesh-2.6.0/create_leafmesh/templates/sales-orchestration/agency/__pycache__/sales_research_agent.cpython-313.pyc +0 -0
  313. create_leafmesh-2.6.0/create_leafmesh/templates/sales-orchestration/agency/__pycache__/sales_research_agent.cpython-314.pyc +0 -0
  314. create_leafmesh-2.6.0/create_leafmesh/templates/sales-orchestration/agency/_shared/__pycache__/__init__.cpython-313.pyc +0 -0
  315. create_leafmesh-2.6.0/create_leafmesh/templates/sales-orchestration/agency/_shared/__pycache__/__init__.cpython-314.pyc +0 -0
  316. create_leafmesh-2.6.0/create_leafmesh/templates/sales-orchestration/agency/_shared/__pycache__/audit_logger.cpython-313.pyc +0 -0
  317. create_leafmesh-2.6.0/create_leafmesh/templates/sales-orchestration/agency/_shared/__pycache__/session_stash.cpython-313.pyc +0 -0
  318. create_leafmesh-2.6.0/create_leafmesh/templates/sales-orchestration/agency/_shared/__pycache__/session_stash.cpython-314.pyc +0 -0
  319. create_leafmesh-2.6.0/create_leafmesh/templates/sales-orchestration/agency/_shared/__pycache__/store.cpython-313.pyc +0 -0
  320. create_leafmesh-2.6.0/create_leafmesh/templates/sales-orchestration/agency/_shared/__pycache__/store.cpython-314.pyc +0 -0
  321. create_leafmesh-2.6.0/create_leafmesh/templates/sales-orchestration/agency/_shared/__pycache__/util.cpython-313.pyc +0 -0
  322. create_leafmesh-2.6.0/create_leafmesh/templates/sales-orchestration/agency/_shared/__pycache__/util.cpython-314.pyc +0 -0
  323. create_leafmesh-2.6.0/create_leafmesh/templates/sales-orchestration/gitignore +0 -16
  324. create_leafmesh-2.6.0/create_leafmesh/templates/sales-orchestration/logs/leafmesh_2026-06-23.log +0 -65
  325. create_leafmesh-2.6.0/create_leafmesh/templates/sales-orchestration/tests/__pycache__/__init__.cpython-314.pyc +0 -0
  326. create_leafmesh-2.6.0/create_leafmesh/templates/sales-orchestration/tests/__pycache__/conftest.cpython-314-pytest-9.0.2.pyc +0 -0
  327. create_leafmesh-2.6.0/create_leafmesh/templates/sales-orchestration/tests/__pycache__/test_agent_logic.cpython-314-pytest-9.0.2.pyc +0 -0
  328. create_leafmesh-2.6.0/create_leafmesh/templates/sales-orchestration/tests/__pycache__/test_config_shape.cpython-314-pytest-9.0.2.pyc +0 -0
  329. create_leafmesh-2.6.0/create_leafmesh/templates/services-delivery/agency/__pycache__/__init__.cpython-314.pyc +0 -0
  330. create_leafmesh-2.6.0/create_leafmesh/templates/services-delivery/agency/__pycache__/citation_agent.cpython-314.pyc +0 -0
  331. create_leafmesh-2.6.0/create_leafmesh/templates/services-delivery/agency/__pycache__/consultant_agent.cpython-314.pyc +0 -0
  332. create_leafmesh-2.6.0/create_leafmesh/templates/services-delivery/agency/__pycache__/context_agent.cpython-314.pyc +0 -0
  333. create_leafmesh-2.6.0/create_leafmesh/templates/services-delivery/agency/__pycache__/engagement_status_drafter_agent.cpython-314.pyc +0 -0
  334. create_leafmesh-2.6.0/create_leafmesh/templates/services-delivery/agency/__pycache__/qa_agent.cpython-314.pyc +0 -0
  335. create_leafmesh-2.6.0/create_leafmesh/templates/services-delivery/agency/_shared/__pycache__/__init__.cpython-314.pyc +0 -0
  336. create_leafmesh-2.6.0/create_leafmesh/templates/services-delivery/agency/_shared/__pycache__/session_stash.cpython-314.pyc +0 -0
  337. create_leafmesh-2.6.0/create_leafmesh/templates/services-delivery/agency/_shared/__pycache__/store.cpython-314.pyc +0 -0
  338. create_leafmesh-2.6.0/create_leafmesh/templates/services-delivery/logs/leafmesh_2026-06-11.log +0 -86
  339. create_leafmesh-2.6.0/create_leafmesh/templates/services-delivery/logs/leafmesh_2026-06-12.log +0 -18
  340. create_leafmesh-2.6.0/create_leafmesh/templates/services-delivery/logs/leafmesh_2026-06-23.log +0 -193
  341. create_leafmesh-2.6.0/create_leafmesh/templates/services-delivery/tests/__pycache__/__init__.cpython-314.pyc +0 -0
  342. create_leafmesh-2.6.0/create_leafmesh/templates/services-delivery/tests/__pycache__/conftest.cpython-314-pytest-9.0.2.pyc +0 -0
  343. create_leafmesh-2.6.0/create_leafmesh/templates/services-delivery/tests/__pycache__/test_agent_logic.cpython-314-pytest-9.0.2.pyc +0 -0
  344. create_leafmesh-2.6.0/create_leafmesh/templates/services-delivery/tests/__pycache__/test_config_shape.cpython-314-pytest-9.0.2.pyc +0 -0
  345. create_leafmesh-2.6.0/create_leafmesh/templates/starter/gitignore +0 -15
  346. create_leafmesh-2.6.0/create_leafmesh/templates/starter/requirements.txt +0 -6
  347. create_leafmesh-2.6.0/create_leafmesh/templates/warehouse-supply-chain/agency/__pycache__/__init__.cpython-314.pyc +0 -0
  348. create_leafmesh-2.6.0/create_leafmesh/templates/warehouse-supply-chain/agency/__pycache__/allocation_agent.cpython-314.pyc +0 -0
  349. create_leafmesh-2.6.0/create_leafmesh/templates/warehouse-supply-chain/agency/__pycache__/carrier_selector_agent.cpython-314.pyc +0 -0
  350. create_leafmesh-2.6.0/create_leafmesh/templates/warehouse-supply-chain/agency/__pycache__/exception_agent.cpython-314.pyc +0 -0
  351. create_leafmesh-2.6.0/create_leafmesh/templates/warehouse-supply-chain/agency/__pycache__/inspection_humanoid.cpython-314.pyc +0 -0
  352. create_leafmesh-2.6.0/create_leafmesh/templates/warehouse-supply-chain/agency/__pycache__/inventory_control_agent.cpython-314.pyc +0 -0
  353. create_leafmesh-2.6.0/create_leafmesh/templates/warehouse-supply-chain/agency/__pycache__/loader_humanoid.cpython-314.pyc +0 -0
  354. create_leafmesh-2.6.0/create_leafmesh/templates/warehouse-supply-chain/agency/__pycache__/packer_humanoid.cpython-314.pyc +0 -0
  355. create_leafmesh-2.6.0/create_leafmesh/templates/warehouse-supply-chain/agency/__pycache__/picker_humanoid.cpython-314.pyc +0 -0
  356. create_leafmesh-2.6.0/create_leafmesh/templates/warehouse-supply-chain/agency/__pycache__/supplier_relations_agent.cpython-314.pyc +0 -0
  357. create_leafmesh-2.6.0/create_leafmesh/templates/warehouse-supply-chain/agency/_shared/__pycache__/__init__.cpython-314.pyc +0 -0
  358. create_leafmesh-2.6.0/create_leafmesh/templates/warehouse-supply-chain/agency/_shared/__pycache__/allocation_math.cpython-314.pyc +0 -0
  359. create_leafmesh-2.6.0/create_leafmesh/templates/warehouse-supply-chain/agency/_shared/__pycache__/carrier_math.cpython-314.pyc +0 -0
  360. create_leafmesh-2.6.0/create_leafmesh/templates/warehouse-supply-chain/agency/_shared/__pycache__/session_stash.cpython-314.pyc +0 -0
  361. create_leafmesh-2.6.0/create_leafmesh/templates/warehouse-supply-chain/agency/_shared/__pycache__/shrink_math.cpython-314.pyc +0 -0
  362. create_leafmesh-2.6.0/create_leafmesh/templates/warehouse-supply-chain/agency/_shared/__pycache__/store.cpython-314.pyc +0 -0
  363. create_leafmesh-2.6.0/create_leafmesh/templates/warehouse-supply-chain/gitignore +0 -16
  364. create_leafmesh-2.6.0/create_leafmesh/templates/warehouse-supply-chain/logs/leafmesh_2026-06-11.log +0 -9
  365. create_leafmesh-2.6.0/create_leafmesh/templates/warehouse-supply-chain/logs/leafmesh_2026-06-12.log +0 -12
  366. create_leafmesh-2.6.0/create_leafmesh/templates/warehouse-supply-chain/logs/leafmesh_2026-06-23.log +0 -312
  367. create_leafmesh-2.6.0/create_leafmesh/templates/warehouse-supply-chain/requirements.txt +0 -6
  368. create_leafmesh-2.6.0/create_leafmesh/templates/warehouse-supply-chain/tests/__pycache__/__init__.cpython-314.pyc +0 -0
  369. create_leafmesh-2.6.0/create_leafmesh/templates/warehouse-supply-chain/tests/__pycache__/conftest.cpython-314-pytest-9.0.2.pyc +0 -0
  370. 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
  371. 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
  372. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/README.md +0 -0
  373. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/create.py +0 -0
  374. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/deploy.py +0 -0
  375. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/deploy_providers/__init__.py +0 -0
  376. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/deploy_providers/_shared.py +0 -0
  377. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/deploy_providers/aws.py +0 -0
  378. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/deploy_providers/azure.py +0 -0
  379. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/deploy_providers/gcp.py +0 -0
  380. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/_inspire/Dockerfile +0 -0
  381. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/_inspire/README.md +0 -0
  382. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/_inspire/_REFERENCE_ONLY.md +0 -0
  383. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/_inspire/agency/__init__.py +0 -0
  384. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/_inspire/agency/advisor_agent.py +0 -0
  385. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/_inspire/agency/external_agents.py +0 -0
  386. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/_inspire/agency/fallback_researcher_agent.py +0 -0
  387. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/_inspire/agency/greeter_agent.py +0 -0
  388. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/_inspire/agency/processor_agent.py +0 -0
  389. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/_inspire/agency/researcher_agent.py +0 -0
  390. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/_inspire/agency/risk_scorer_agent.py +0 -0
  391. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/_inspire/agency/scheduler_agent.py +0 -0
  392. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/_inspire/agency/tools.py +0 -0
  393. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/_inspire/configs/config.yaml +0 -0
  394. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/_inspire/docker-compose.yml +0 -0
  395. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/_inspire/dockerignore +0 -0
  396. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/_inspire/env +0 -0
  397. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/_inspire/gitignore +0 -0
  398. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/_inspire/hitl_stub_receiver.py +0 -0
  399. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/_inspire/main.py +0 -0
  400. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/_inspire/requirements.txt +0 -0
  401. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/_inspire/skills/data-handling/SKILL.md +0 -0
  402. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/_inspire/skills/data-handling/examples.json +0 -0
  403. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/_inspire/skills/tone-rules.md +0 -0
  404. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/_inspire/tests/__init__.py +0 -0
  405. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/_inspire/tests/test_config_shape.py +0 -0
  406. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/_inspire/validate_config.py +0 -0
  407. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/ai-dev-squad/Dockerfile +0 -0
  408. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/ai-dev-squad/PRD.md +0 -0
  409. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/ai-dev-squad/README.md +0 -0
  410. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/ai-dev-squad/agency/__init__.py +0 -0
  411. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/ai-dev-squad/agency/_shared/__init__.py +0 -0
  412. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/ai-dev-squad/agency/_shared/audit_logger.py +0 -0
  413. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/ai-dev-squad/agency/_shared/session_stash.py +0 -0
  414. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/ai-dev-squad/agency/_shared/store.py +0 -0
  415. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/ai-dev-squad/agency/code_reviewer_agent.py +0 -0
  416. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/ai-dev-squad/agency/dev_planner_agent.py +0 -0
  417. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/ai-dev-squad/agency/developer_agent.py +0 -0
  418. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/ai-dev-squad/agency/merge_coordinator_agent.py +0 -0
  419. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/ai-dev-squad/agency/product_owner_agent.py +0 -0
  420. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/ai-dev-squad/agency/qa_agent.py +0 -0
  421. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/ai-dev-squad/agency/tools/__init__.py +0 -0
  422. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/ai-dev-squad/agency/tools/tools.py +0 -0
  423. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/ai-dev-squad/configs/config.yaml +0 -0
  424. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/ai-dev-squad/docker-compose.yml +0 -0
  425. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/ai-dev-squad/dockerignore +0 -0
  426. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/ai-dev-squad/env +0 -0
  427. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/ai-dev-squad/gitignore +0 -0
  428. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/ai-dev-squad/main.py +0 -0
  429. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/ai-dev-squad/pytest.ini +0 -0
  430. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/ai-dev-squad/requirements.txt +0 -0
  431. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/ai-dev-squad/tests/__init__.py +0 -0
  432. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/ai-dev-squad/tests/conftest.py +0 -0
  433. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/ai-dev-squad/tests/test_config_shape.py +0 -0
  434. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/ai-dev-squad/validate_config.py +0 -0
  435. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/bd-proposals/Dockerfile +0 -0
  436. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/bd-proposals/PRD.md +0 -0
  437. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/bd-proposals/README.md +0 -0
  438. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/bd-proposals/_prompts.json +0 -0
  439. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/bd-proposals/agency/__init__.py +0 -0
  440. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/bd-proposals/agency/_shared/__init__.py +0 -0
  441. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/bd-proposals/agency/_shared/audit_logger.py +0 -0
  442. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/bd-proposals/agency/_shared/session_stash.py +0 -0
  443. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/bd-proposals/agency/bid_no_bid_decisioner_agent.py +0 -0
  444. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/bd-proposals/agency/competitive_intel_agent.py +0 -0
  445. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/bd-proposals/agency/contracts_review_agent.py +0 -0
  446. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/bd-proposals/agency/precedent_research_agent.py +0 -0
  447. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/bd-proposals/agency/pricing_configurator_agent.py +0 -0
  448. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/bd-proposals/agency/rfp_intake_agent.py +0 -0
  449. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/bd-proposals/docker-compose.yml +0 -0
  450. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/bd-proposals/dockerignore +0 -0
  451. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/bd-proposals/env +0 -0
  452. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/bd-proposals/examples/01_new_rfp_received.json +0 -0
  453. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/bd-proposals/examples/02_win_post_mortem.json +0 -0
  454. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/bd-proposals/examples/03_loss_with_competitor.json +0 -0
  455. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/bd-proposals/examples/04_quarterly_win_rate.json +0 -0
  456. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/bd-proposals/examples/README.md +0 -0
  457. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/bd-proposals/examples/run_examples.py +0 -0
  458. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/bd-proposals/main.py +0 -0
  459. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/bd-proposals/pytest.ini +0 -0
  460. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/bd-proposals/requirements-dev.txt +0 -0
  461. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/bd-proposals/requirements.txt +0 -0
  462. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/bd-proposals/tests/__init__.py +0 -0
  463. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/bd-proposals/tests/conftest.py +0 -0
  464. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/bd-proposals/validate_config.py +0 -0
  465. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/bench-management/Dockerfile +0 -0
  466. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/bench-management/PRD.md +0 -0
  467. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/bench-management/_prompts.json +0 -0
  468. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/bench-management/agency/__init__.py +0 -0
  469. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/bench-management/agency/_shared/__init__.py +0 -0
  470. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/bench-management/agency/_shared/audit_logger.py +0 -0
  471. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/bench-management/agency/esat_survey_agent.py +0 -0
  472. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/bench-management/agency/staffing_coordinator_agent.py +0 -0
  473. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/bench-management/agency/talent_development_agent.py +0 -0
  474. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/bench-management/agency/workforce_analytics_agent.py +0 -0
  475. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/bench-management/docker-compose.yml +0 -0
  476. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/bench-management/dockerignore +0 -0
  477. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/bench-management/examples/01_new_project_kickoff.json +0 -0
  478. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/bench-management/examples/02_weekly_bench_review.json +0 -0
  479. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/bench-management/examples/03_promotion_readiness.json +0 -0
  480. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/bench-management/examples/04_person_rolling_off.json +0 -0
  481. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/bench-management/examples/README.md +0 -0
  482. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/bench-management/examples/run_examples.py +0 -0
  483. {create_leafmesh-2.6.0/create_leafmesh/templates/bd-proposals → create_leafmesh-2.6.2/create_leafmesh/templates/bench-management}/gitignore +0 -0
  484. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/bench-management/main.py +0 -0
  485. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/bench-management/pytest.ini +0 -0
  486. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/bench-management/requirements-dev.txt +0 -0
  487. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/bench-management/requirements.txt +0 -0
  488. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/bench-management/tests/__init__.py +0 -0
  489. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/bench-management/tests/conftest.py +0 -0
  490. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/bench-management/validate_config.py +0 -0
  491. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/claude_skills/leafmesh/SKILL.md +0 -0
  492. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/claude_skills/leafmesh/agency-development.md +0 -0
  493. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/claude_skills/leafmesh/agent-config-fields.md +0 -0
  494. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/claude_skills/leafmesh/examples.md +0 -0
  495. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/claude_skills/leafmesh/reference.md +0 -0
  496. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/customer-success/Dockerfile +0 -0
  497. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/customer-success/PRD.md +0 -0
  498. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/customer-success/README.md +0 -0
  499. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/customer-success/_prompts.json +0 -0
  500. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/customer-success/agency/_shared/__init__.py +0 -0
  501. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/customer-success/agency/_shared/audit_logger.py +0 -0
  502. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/customer-success/agency/_shared/extract.py +0 -0
  503. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/customer-success/agency/_shared/health_math.py +0 -0
  504. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/customer-success/agency/_shared/session_stash.py +0 -0
  505. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/customer-success/agency/account_intel_agent.py +0 -0
  506. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/customer-success/agency/health_score_agent.py +0 -0
  507. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/customer-success/agency/renewals_agent.py +0 -0
  508. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/customer-success/agency/risk_detector_agent.py +0 -0
  509. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/customer-success/agency/save_play_agent.py +0 -0
  510. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/customer-success/docker-compose.yml +0 -0
  511. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/customer-success/dockerignore +0 -0
  512. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/customer-success/examples/01_telemetry_dau_drop.json +0 -0
  513. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/customer-success/examples/02_billing_failed_payment.json +0 -0
  514. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/customer-success/examples/03_renewal_window_60d.json +0 -0
  515. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/customer-success/examples/04_executive_change.json +0 -0
  516. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/customer-success/examples/README.md +0 -0
  517. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/customer-success/examples/run_examples.py +0 -0
  518. {create_leafmesh-2.6.0/create_leafmesh/templates/bench-management → create_leafmesh-2.6.2/create_leafmesh/templates/customer-success}/gitignore +0 -0
  519. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/customer-success/main.py +0 -0
  520. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/customer-success/pytest.ini +0 -0
  521. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/customer-success/requirements-dev.txt +0 -0
  522. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/customer-success/requirements.txt +0 -0
  523. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/customer-success/tests/__init__.py +0 -0
  524. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/customer-success/tests/conftest.py +0 -0
  525. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/customer-success/tests/test_config_shape.py +0 -0
  526. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/customer-success/validate_config.py +0 -0
  527. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/customer-support/Dockerfile +0 -0
  528. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/customer-support/_prompts.json +0 -0
  529. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/customer-support/agency/__init__.py +0 -0
  530. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/customer-support/agency/_shared/__init__.py +0 -0
  531. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/customer-support/agency/_shared/audit_logger.py +0 -0
  532. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/customer-support/docker-compose.yml +0 -0
  533. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/customer-support/dockerignore +0 -0
  534. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/customer-support/examples/01_password_reset_routine.json +0 -0
  535. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/customer-support/examples/02_billing_dispute_escalation.json +0 -0
  536. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/customer-support/examples/03_security_incident.json +0 -0
  537. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/customer-support/examples/04_kb_gap_signal.json +0 -0
  538. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/customer-support/examples/README.md +0 -0
  539. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/customer-support/examples/run_examples.py +0 -0
  540. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/customer-support/gitignore +0 -0
  541. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/customer-support/main.py +0 -0
  542. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/customer-support/pytest.ini +0 -0
  543. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/customer-support/requirements-dev.txt +0 -0
  544. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/customer-support/requirements.txt +0 -0
  545. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/customer-support/tests/__init__.py +0 -0
  546. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/customer-support/tests/conftest.py +0 -0
  547. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/customer-support/validate_config.py +0 -0
  548. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/finance-ops/Dockerfile +0 -0
  549. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/finance-ops/PRD.md +0 -0
  550. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/finance-ops/README.md +0 -0
  551. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/finance-ops/_prompts.json +0 -0
  552. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/finance-ops/agency/__init__.py +0 -0
  553. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/finance-ops/agency/_shared/__init__.py +0 -0
  554. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/finance-ops/agency/_shared/audit_logger.py +0 -0
  555. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/finance-ops/agency/_shared/compliance_screen.py +0 -0
  556. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/finance-ops/agency/_shared/dedupe.py +0 -0
  557. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/finance-ops/agency/_shared/erp_poster.py +0 -0
  558. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/finance-ops/agency/_shared/matching_math.py +0 -0
  559. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/finance-ops/agency/_shared/session_stash.py +0 -0
  560. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/finance-ops/agency/_shared/store.py +0 -0
  561. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/finance-ops/agency/erp_poster_agent.py +0 -0
  562. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/finance-ops/agency/gl_coding_agent.py +0 -0
  563. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/finance-ops/agency/invoice_intake_agent.py +0 -0
  564. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/finance-ops/agency/loan_origination_agent.py +0 -0
  565. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/finance-ops/agency/loan_servicing_agent.py +0 -0
  566. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/finance-ops/agency/matching_agent.py +0 -0
  567. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/finance-ops/agency/payment_risk_agent.py +0 -0
  568. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/finance-ops/agency/regulatory_monitor_agent.py +0 -0
  569. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/finance-ops/agency/vendor_compliance_agent.py +0 -0
  570. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/finance-ops/configs/config.yaml +0 -0
  571. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/finance-ops/docker-compose.yml +0 -0
  572. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/finance-ops/dockerignore +0 -0
  573. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/finance-ops/env +0 -0
  574. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/finance-ops/examples/01_happy_path_subscription.json +0 -0
  575. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/finance-ops/examples/02_fraud_signal_round_number.json +0 -0
  576. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/finance-ops/examples/03_po_mismatch_exception.json +0 -0
  577. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/finance-ops/examples/04_high_value_cfo_signoff.json +0 -0
  578. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/finance-ops/examples/05_vendor_inquiry.json +0 -0
  579. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/finance-ops/examples/README.md +0 -0
  580. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/finance-ops/examples/run_examples.py +0 -0
  581. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/finance-ops/gitignore +0 -0
  582. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/finance-ops/main.py +0 -0
  583. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/finance-ops/pytest.ini +0 -0
  584. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/finance-ops/requirements-dev.txt +0 -0
  585. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/finance-ops/requirements.txt +0 -0
  586. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/finance-ops/tests/__init__.py +0 -0
  587. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/finance-ops/tests/conftest.py +0 -0
  588. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/finance-ops/tests/test_agent_logic.py +0 -0
  589. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/finance-ops/tests/test_config_shape.py +0 -0
  590. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/finance-ops/tests/test_floors.py +0 -0
  591. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/finance-ops/validate_config.py +0 -0
  592. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/infra-cost-ops/Dockerfile +0 -0
  593. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/infra-cost-ops/PRD.md +0 -0
  594. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/infra-cost-ops/README.md +0 -0
  595. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/infra-cost-ops/_prompts.json +0 -0
  596. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/infra-cost-ops/agency/__init__.py +0 -0
  597. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/infra-cost-ops/agency/_shared/__init__.py +0 -0
  598. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/infra-cost-ops/agency/_shared/audit_logger.py +0 -0
  599. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/infra-cost-ops/agency/_shared/session_stash.py +0 -0
  600. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/infra-cost-ops/agency/_shared/store.py +0 -0
  601. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/infra-cost-ops/agency/commitments_agent.py +0 -0
  602. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/infra-cost-ops/agency/cost_anomaly_agent.py +0 -0
  603. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/infra-cost-ops/agency/cost_tuner_agent.py +0 -0
  604. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/infra-cost-ops/agency/finops_governance_agent.py +0 -0
  605. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/infra-cost-ops/agency/iac_drift_agent.py +0 -0
  606. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/infra-cost-ops/agency/regulatory_monitor_agent.py +0 -0
  607. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/infra-cost-ops/configs/config.yaml +0 -0
  608. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/infra-cost-ops/docker-compose.yml +0 -0
  609. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/infra-cost-ops/dockerignore +0 -0
  610. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/infra-cost-ops/env +0 -0
  611. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/infra-cost-ops/examples/01_ec2_idle_anomaly.json +0 -0
  612. {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
  613. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/infra-cost-ops/examples/03_ri_expiry_30d.json +0 -0
  614. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/infra-cost-ops/examples/04_iac_drift_detected.json +0 -0
  615. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/infra-cost-ops/examples/README.md +0 -0
  616. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/infra-cost-ops/examples/run_examples.py +0 -0
  617. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/infra-cost-ops/gitignore +0 -0
  618. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/infra-cost-ops/main.py +0 -0
  619. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/infra-cost-ops/pytest.ini +0 -0
  620. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/infra-cost-ops/requirements-dev.txt +0 -0
  621. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/infra-cost-ops/requirements.txt +0 -0
  622. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/infra-cost-ops/tests/__init__.py +0 -0
  623. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/infra-cost-ops/tests/conftest.py +0 -0
  624. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/infra-cost-ops/tests/test_agent_logic.py +0 -0
  625. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/infra-cost-ops/tests/test_config_shape.py +0 -0
  626. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/infra-cost-ops/validate_config.py +0 -0
  627. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/marketing-ops/Dockerfile +0 -0
  628. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/marketing-ops/PRD.md +0 -0
  629. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/marketing-ops/README.md +0 -0
  630. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/marketing-ops/_prompts.json +0 -0
  631. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/marketing-ops/agency/__init__.py +0 -0
  632. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/marketing-ops/agency/_shared/__init__.py +0 -0
  633. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/marketing-ops/agency/_shared/audit_logger.py +0 -0
  634. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/marketing-ops/agency/_shared/session_stash.py +0 -0
  635. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/marketing-ops/agency/_shared/store.py +0 -0
  636. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/marketing-ops/agency/brand_guardian_agent.py +0 -0
  637. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/marketing-ops/agency/campaign_strategist_agent.py +0 -0
  638. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/marketing-ops/agency/compliance_reviewer_agent.py +0 -0
  639. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/marketing-ops/agency/copywriter_agent.py +0 -0
  640. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/marketing-ops/agency/market_intelligence_agent.py +0 -0
  641. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/marketing-ops/agency/marketing_audit_logger_agent.py +0 -0
  642. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/marketing-ops/agency/publisher_agent.py +0 -0
  643. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/marketing-ops/configs/config.yaml +0 -0
  644. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/marketing-ops/docker-compose.yml +0 -0
  645. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/marketing-ops/dockerignore +0 -0
  646. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/marketing-ops/env +0 -0
  647. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/marketing-ops/examples/01_new_campaign_brief.json +0 -0
  648. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/marketing-ops/examples/02_product_launch_kickoff.json +0 -0
  649. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/marketing-ops/examples/03_brand_crisis.json +0 -0
  650. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/marketing-ops/examples/04_competitor_pricing_move.json +0 -0
  651. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/marketing-ops/examples/README.md +0 -0
  652. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/marketing-ops/examples/run_examples.py +0 -0
  653. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/marketing-ops/gitignore +0 -0
  654. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/marketing-ops/main.py +0 -0
  655. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/marketing-ops/pytest.ini +0 -0
  656. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/marketing-ops/requirements-dev.txt +0 -0
  657. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/marketing-ops/requirements.txt +0 -0
  658. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/marketing-ops/tests/__init__.py +0 -0
  659. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/marketing-ops/tests/conftest.py +0 -0
  660. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/marketing-ops/tests/test_agent_logic.py +0 -0
  661. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/marketing-ops/tests/test_config_shape.py +0 -0
  662. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/marketing-ops/validate_config.py +0 -0
  663. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/outbound-sdr/Dockerfile +0 -0
  664. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/outbound-sdr/PRD.md +0 -0
  665. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/outbound-sdr/README.md +0 -0
  666. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/outbound-sdr/agency/__init__.py +0 -0
  667. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/outbound-sdr/agency/_shared/__init__.py +0 -0
  668. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/outbound-sdr/agency/_shared/audit_logger.py +0 -0
  669. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/outbound-sdr/agency/_shared/session_stash.py +0 -0
  670. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/outbound-sdr/agency/_shared/store.py +0 -0
  671. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/outbound-sdr/agency/campaign_launcher_agent.py +0 -0
  672. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/outbound-sdr/agency/campaign_strategist_agent.py +0 -0
  673. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/outbound-sdr/agency/gtm_strategist_agent.py +0 -0
  674. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/outbound-sdr/agency/inbox_monitor_agent.py +0 -0
  675. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/outbound-sdr/agency/meeting_scheduler_agent.py +0 -0
  676. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/outbound-sdr/agency/offer_architect_agent.py +0 -0
  677. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/outbound-sdr/agency/outreach_writer_agent.py +0 -0
  678. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/outbound-sdr/agency/prospector_agent.py +0 -0
  679. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/outbound-sdr/agency/records_keeper_agent.py +0 -0
  680. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/outbound-sdr/agency/reply_triager_agent.py +0 -0
  681. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/outbound-sdr/agency/tools/__init__.py +0 -0
  682. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/outbound-sdr/agency/tools/tools.py +0 -0
  683. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/outbound-sdr/configs/config.yaml +0 -0
  684. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/outbound-sdr/docker-compose.yml +0 -0
  685. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/outbound-sdr/dockerignore +0 -0
  686. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/outbound-sdr/env +0 -0
  687. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/outbound-sdr/gitignore +0 -0
  688. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/outbound-sdr/main.py +0 -0
  689. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/outbound-sdr/pytest.ini +0 -0
  690. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/outbound-sdr/requirements.txt +0 -0
  691. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/outbound-sdr/tests/__init__.py +0 -0
  692. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/outbound-sdr/tests/conftest.py +0 -0
  693. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/outbound-sdr/tests/test_config_shape.py +0 -0
  694. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/outbound-sdr/validate_config.py +0 -0
  695. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/predictive-maintenance/Dockerfile +0 -0
  696. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/predictive-maintenance/PRD.md +0 -0
  697. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/predictive-maintenance/README.md +0 -0
  698. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/predictive-maintenance/_prompts.json +0 -0
  699. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/predictive-maintenance/agency/__init__.py +0 -0
  700. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/predictive-maintenance/agency/_shared/__init__.py +0 -0
  701. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/predictive-maintenance/agency/_shared/audit_logger.py +0 -0
  702. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/predictive-maintenance/agency/_shared/session_stash.py +0 -0
  703. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/predictive-maintenance/agency/_shared/store.py +0 -0
  704. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/predictive-maintenance/agency/equipment_lifecycle_agent.py +0 -0
  705. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/predictive-maintenance/agency/failure_predictor_agent.py +0 -0
  706. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/predictive-maintenance/agency/safety_incident_reporter_agent.py +0 -0
  707. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/predictive-maintenance/agency/spare_parts_forecaster_agent.py +0 -0
  708. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/predictive-maintenance/agency/work_order_scheduler_agent.py +0 -0
  709. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/predictive-maintenance/configs/config.yaml +0 -0
  710. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/predictive-maintenance/docker-compose.yml +0 -0
  711. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/predictive-maintenance/dockerignore +0 -0
  712. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/predictive-maintenance/env +0 -0
  713. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/predictive-maintenance/examples/01_routine_sensor_reading.json +0 -0
  714. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/predictive-maintenance/examples/02_anomaly_failure_predicted.json +0 -0
  715. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/predictive-maintenance/examples/03_safety_critical_shutdown.json +0 -0
  716. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/predictive-maintenance/examples/04_weekly_parts_forecast.json +0 -0
  717. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/predictive-maintenance/examples/README.md +0 -0
  718. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/predictive-maintenance/examples/run_examples.py +0 -0
  719. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/predictive-maintenance/gitignore +0 -0
  720. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/predictive-maintenance/main.py +0 -0
  721. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/predictive-maintenance/pytest.ini +0 -0
  722. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/predictive-maintenance/requirements-dev.txt +0 -0
  723. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/predictive-maintenance/requirements.txt +0 -0
  724. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/predictive-maintenance/tests/__init__.py +0 -0
  725. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/predictive-maintenance/tests/conftest.py +0 -0
  726. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/predictive-maintenance/tests/test_agent_logic.py +0 -0
  727. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/predictive-maintenance/tests/test_config_shape.py +0 -0
  728. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/predictive-maintenance/validate_config.py +0 -0
  729. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/procurement-ops/Dockerfile +0 -0
  730. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/procurement-ops/PRD.md +0 -0
  731. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/procurement-ops/README.md +0 -0
  732. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/procurement-ops/TESTING_GUIDE.md +0 -0
  733. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/procurement-ops/WORKFLOW_GUIDE.md +0 -0
  734. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/procurement-ops/agency/__init__.py +0 -0
  735. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/procurement-ops/agency/_shared/__init__.py +0 -0
  736. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/procurement-ops/agency/_shared/session_stash.py +0 -0
  737. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/procurement-ops/agency/data_loader.py +0 -0
  738. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/procurement-ops/agency/grn_agent.py +0 -0
  739. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/procurement-ops/agency/inventory_agent.py +0 -0
  740. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/procurement-ops/agency/logistics_agent.py +0 -0
  741. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/procurement-ops/agency/order_intake_agent.py +0 -0
  742. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/procurement-ops/agency/purchase_order_agent.py +0 -0
  743. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/procurement-ops/agency/supplier_agent.py +0 -0
  744. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/procurement-ops/agency/supply_report_agent.py +0 -0
  745. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/procurement-ops/agency/tariff_classifier_agent.py +0 -0
  746. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/procurement-ops/agency/tools.py +0 -0
  747. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/procurement-ops/agency/trade_compliance_agent.py +0 -0
  748. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/procurement-ops/configs/inventory.yaml +0 -0
  749. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/procurement-ops/configs/open_pos.yaml +0 -0
  750. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/procurement-ops/configs/suppliers.yaml +0 -0
  751. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/procurement-ops/docker-compose.yml +0 -0
  752. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/procurement-ops/dockerignore +0 -0
  753. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/procurement-ops/env +0 -0
  754. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/procurement-ops/gitignore +0 -0
  755. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/procurement-ops/requirements.txt +0 -0
  756. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/procurement-ops/tests/__init__.py +0 -0
  757. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/procurement-ops/tests/test_chain_floors.py +0 -0
  758. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/procurement-ops/tests/test_config_shape.py +0 -0
  759. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/procurement-ops/validate_config.py +0 -0
  760. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/production-planning/Dockerfile +0 -0
  761. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/production-planning/PRD.md +0 -0
  762. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/production-planning/README.md +0 -0
  763. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/production-planning/_prompts.json +0 -0
  764. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/production-planning/agency/__init__.py +0 -0
  765. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/production-planning/agency/_shared/__init__.py +0 -0
  766. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/production-planning/agency/_shared/audit_logger.py +0 -0
  767. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/production-planning/agency/_shared/session_stash.py +0 -0
  768. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/production-planning/agency/_shared/store.py +0 -0
  769. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/production-planning/agency/constraint_flagger_agent.py +0 -0
  770. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/production-planning/agency/demand_sensor_agent.py +0 -0
  771. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/production-planning/agency/release_agent.py +0 -0
  772. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/production-planning/agency/scheduler_agent.py +0 -0
  773. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/production-planning/agency/supplier_signal_agent.py +0 -0
  774. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/production-planning/configs/config.yaml +0 -0
  775. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/production-planning/docker-compose.yml +0 -0
  776. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/production-planning/dockerignore +0 -0
  777. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/production-planning/env +0 -0
  778. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/production-planning/examples/01_demand_signal_normal.json +0 -0
  779. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/production-planning/examples/02_supplier_delay.json +0 -0
  780. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/production-planning/examples/03_emergency_constraint_alert.json +0 -0
  781. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/production-planning/examples/04_supplier_capacity_change.json +0 -0
  782. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/production-planning/examples/README.md +0 -0
  783. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/production-planning/examples/run_examples.py +0 -0
  784. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/production-planning/gitignore +0 -0
  785. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/production-planning/main.py +0 -0
  786. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/production-planning/pytest.ini +0 -0
  787. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/production-planning/requirements-dev.txt +0 -0
  788. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/production-planning/requirements.txt +0 -0
  789. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/production-planning/tests/__init__.py +0 -0
  790. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/production-planning/tests/conftest.py +0 -0
  791. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/production-planning/tests/test_agent_logic.py +0 -0
  792. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/production-planning/tests/test_config_shape.py +0 -0
  793. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/production-planning/validate_config.py +0 -0
  794. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/quality-yield/Dockerfile +0 -0
  795. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/quality-yield/PRD.md +0 -0
  796. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/quality-yield/README.md +0 -0
  797. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/quality-yield/_prompts.json +0 -0
  798. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/quality-yield/agency/__init__.py +0 -0
  799. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/quality-yield/agency/_shared/__init__.py +0 -0
  800. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/quality-yield/agency/_shared/audit_logger.py +0 -0
  801. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/quality-yield/agency/_shared/batch_release.py +0 -0
  802. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/quality-yield/agency/_shared/defect_scoring.py +0 -0
  803. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/quality-yield/agency/_shared/session_stash.py +0 -0
  804. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/quality-yield/agency/_shared/spc_math.py +0 -0
  805. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/quality-yield/agency/_shared/store.py +0 -0
  806. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/quality-yield/agency/inspection_intake_agent.py +0 -0
  807. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/quality-yield/agency/quality_engineer_agent.py +0 -0
  808. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/quality-yield/agency/recall_traceability_agent.py +0 -0
  809. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/quality-yield/agency/regulatory_compliance_agent.py +0 -0
  810. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/quality-yield/agency/spc_monitor_agent.py +0 -0
  811. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/quality-yield/configs/config.yaml +0 -0
  812. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/quality-yield/docker-compose.yml +0 -0
  813. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/quality-yield/dockerignore +0 -0
  814. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/quality-yield/env +0 -0
  815. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/quality-yield/examples/01_routine_inspection.json +0 -0
  816. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/quality-yield/examples/02_defect_cluster.json +0 -0
  817. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/quality-yield/examples/03_field_complaint_recall.json +0 -0
  818. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/quality-yield/examples/04_regulatory_audit_pull.json +0 -0
  819. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/quality-yield/examples/README.md +0 -0
  820. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/quality-yield/examples/run_examples.py +0 -0
  821. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/quality-yield/gitignore +0 -0
  822. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/quality-yield/main.py +0 -0
  823. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/quality-yield/pytest.ini +0 -0
  824. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/quality-yield/requirements-dev.txt +0 -0
  825. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/quality-yield/requirements.txt +0 -0
  826. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/quality-yield/tests/__init__.py +0 -0
  827. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/quality-yield/tests/conftest.py +0 -0
  828. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/quality-yield/tests/test_agent_logic.py +0 -0
  829. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/quality-yield/tests/test_config_shape.py +0 -0
  830. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/quality-yield/validate_config.py +0 -0
  831. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/quote-to-cash/Dockerfile +0 -0
  832. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/quote-to-cash/_prompts.json +0 -0
  833. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/quote-to-cash/agency/__init__.py +0 -0
  834. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/quote-to-cash/agency/_shared/__init__.py +0 -0
  835. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/quote-to-cash/agency/_shared/audit_logger.py +0 -0
  836. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/quote-to-cash/agency/_shared/session_stash.py +0 -0
  837. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/quote-to-cash/agency/_shared/store.py +0 -0
  838. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/quote-to-cash/agency/cost_calculator_agent.py +0 -0
  839. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/quote-to-cash/agency/deal_compliance_agent.py +0 -0
  840. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/quote-to-cash/agency/discount_policy_agent.py +0 -0
  841. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/quote-to-cash/agency/quote_drafter_agent.py +0 -0
  842. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/quote-to-cash/agency/rfq_ingester_agent.py +0 -0
  843. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/quote-to-cash/docker-compose.yml +0 -0
  844. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/quote-to-cash/dockerignore +0 -0
  845. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/quote-to-cash/examples/01_rfq_standard.json +0 -0
  846. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/quote-to-cash/examples/02_steep_discount_finance.json +0 -0
  847. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/quote-to-cash/examples/03_competitor_price_change.json +0 -0
  848. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/quote-to-cash/examples/04_renewal_uplift_bundle.json +0 -0
  849. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/quote-to-cash/examples/README.md +0 -0
  850. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/quote-to-cash/examples/run_examples.py +0 -0
  851. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/quote-to-cash/main.py +0 -0
  852. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/quote-to-cash/pytest.ini +0 -0
  853. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/quote-to-cash/requirements-dev.txt +0 -0
  854. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/quote-to-cash/tests/__init__.py +0 -0
  855. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/quote-to-cash/tests/conftest.py +0 -0
  856. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/quote-to-cash/tests/test_agent_logic.py +0 -0
  857. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/quote-to-cash/validate_config.py +0 -0
  858. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/recruiting-ops/Dockerfile +0 -0
  859. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/recruiting-ops/PRD.md +0 -0
  860. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/recruiting-ops/README.md +0 -0
  861. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/recruiting-ops/_prompts.json +0 -0
  862. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/recruiting-ops/agency/__init__.py +0 -0
  863. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/recruiting-ops/agency/_shared/__init__.py +0 -0
  864. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/recruiting-ops/agency/_shared/audit_logger.py +0 -0
  865. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/recruiting-ops/agency/_shared/session_stash.py +0 -0
  866. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/recruiting-ops/agency/_shared/store.py +0 -0
  867. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/recruiting-ops/agency/bias_audit_agent.py +0 -0
  868. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/recruiting-ops/agency/correspondence_drafter_agent.py +0 -0
  869. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/recruiting-ops/agency/hiring_assistant_agent.py +0 -0
  870. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/recruiting-ops/agency/interview_coordinator_agent.py +0 -0
  871. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/recruiting-ops/agency/req_intake_agent.py +0 -0
  872. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/recruiting-ops/agency/resume_screener_agent.py +0 -0
  873. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/recruiting-ops/configs/config.yaml +0 -0
  874. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/recruiting-ops/docker-compose.yml +0 -0
  875. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/recruiting-ops/dockerignore +0 -0
  876. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/recruiting-ops/env +0 -0
  877. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/recruiting-ops/examples/01_new_req_filed.json +0 -0
  878. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/recruiting-ops/examples/02_candidate_rejection_letter.json +0 -0
  879. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/recruiting-ops/examples/03_offer_drafting.json +0 -0
  880. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/recruiting-ops/examples/04_ghosted_candidate_close.json +0 -0
  881. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/recruiting-ops/examples/README.md +0 -0
  882. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/recruiting-ops/examples/run_examples.py +0 -0
  883. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/recruiting-ops/gitignore +0 -0
  884. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/recruiting-ops/main.py +0 -0
  885. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/recruiting-ops/pytest.ini +0 -0
  886. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/recruiting-ops/requirements-dev.txt +0 -0
  887. {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
  888. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/recruiting-ops/tests/__init__.py +0 -0
  889. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/recruiting-ops/tests/conftest.py +0 -0
  890. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/recruiting-ops/tests/test_agent_logic.py +0 -0
  891. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/recruiting-ops/tests/test_config_shape.py +0 -0
  892. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/recruiting-ops/validate_config.py +0 -0
  893. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/sales-orchestration/Dockerfile +0 -0
  894. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/sales-orchestration/PRD.md +0 -0
  895. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/sales-orchestration/README.md +0 -0
  896. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/sales-orchestration/_prompts.json +0 -0
  897. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/sales-orchestration/agency/__init__.py +0 -0
  898. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/sales-orchestration/agency/_shared/__init__.py +0 -0
  899. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/sales-orchestration/agency/_shared/audit_logger.py +0 -0
  900. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/sales-orchestration/agency/_shared/session_stash.py +0 -0
  901. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/sales-orchestration/agency/_shared/store.py +0 -0
  902. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/sales-orchestration/agency/_shared/util.py +0 -0
  903. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/sales-orchestration/agency/lead_intake_agent.py +0 -0
  904. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/sales-orchestration/agency/lead_qualification_agent.py +0 -0
  905. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/sales-orchestration/agency/lead_revival_agent.py +0 -0
  906. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/sales-orchestration/agency/sales_research_agent.py +0 -0
  907. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/sales-orchestration/configs/config.yaml +0 -0
  908. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/sales-orchestration/docker-compose.yml +0 -0
  909. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/sales-orchestration/dockerignore +0 -0
  910. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/sales-orchestration/env +0 -0
  911. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/sales-orchestration/examples/01_inbound_demo_request.json +0 -0
  912. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/sales-orchestration/examples/02_cold_lead_revival.json +0 -0
  913. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/sales-orchestration/examples/03_competitor_steal_signal.json +0 -0
  914. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/sales-orchestration/examples/04_event_followup_burst.json +0 -0
  915. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/sales-orchestration/examples/05_enriched_inbound_lead.json +0 -0
  916. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/sales-orchestration/examples/06_deal_nurture_sweep.json +0 -0
  917. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/sales-orchestration/examples/07_abm_account_activation.json +0 -0
  918. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/sales-orchestration/examples/08_competitive_intel_pull.json +0 -0
  919. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/sales-orchestration/examples/README.md +0 -0
  920. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/sales-orchestration/examples/run_examples.py +0 -0
  921. {create_leafmesh-2.6.0/create_leafmesh/templates/customer-success → create_leafmesh-2.6.2/create_leafmesh/templates/sales-orchestration}/gitignore +0 -0
  922. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/sales-orchestration/main.py +0 -0
  923. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/sales-orchestration/pytest.ini +0 -0
  924. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/sales-orchestration/requirements-dev.txt +0 -0
  925. {create_leafmesh-2.6.0/create_leafmesh/templates/recruiting-ops → create_leafmesh-2.6.2/create_leafmesh/templates/sales-orchestration}/requirements.txt +0 -0
  926. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/sales-orchestration/tests/__init__.py +0 -0
  927. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/sales-orchestration/tests/conftest.py +0 -0
  928. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/sales-orchestration/tests/test_agent_logic.py +0 -0
  929. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/sales-orchestration/tests/test_config_shape.py +0 -0
  930. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/sales-orchestration/validate_config.py +0 -0
  931. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/services-delivery/Dockerfile +0 -0
  932. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/services-delivery/PRD.md +0 -0
  933. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/services-delivery/README.md +0 -0
  934. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/services-delivery/_prompts.json +0 -0
  935. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/services-delivery/agency/__init__.py +0 -0
  936. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/services-delivery/agency/_shared/__init__.py +0 -0
  937. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/services-delivery/agency/_shared/audit_logger.py +0 -0
  938. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/services-delivery/agency/_shared/session_stash.py +0 -0
  939. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/services-delivery/agency/brief_intake_agent.py +0 -0
  940. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/services-delivery/agency/citation_agent.py +0 -0
  941. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/services-delivery/agency/consultant_agent.py +0 -0
  942. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/services-delivery/agency/context_agent.py +0 -0
  943. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/services-delivery/agency/engagement_controller_agent.py +0 -0
  944. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/services-delivery/agency/engagement_status_drafter_agent.py +0 -0
  945. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/services-delivery/agency/performance_review_agent.py +0 -0
  946. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/services-delivery/agency/qa_agent.py +0 -0
  947. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/services-delivery/agency/research_agent.py +0 -0
  948. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/services-delivery/docker-compose.yml +0 -0
  949. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/services-delivery/dockerignore +0 -0
  950. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/services-delivery/env +0 -0
  951. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/services-delivery/examples/01_new_engagement_memo.json +0 -0
  952. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/services-delivery/examples/02_friday_status_pack.json +0 -0
  953. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/services-delivery/examples/03_high_stakes_deliverable.json +0 -0
  954. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/services-delivery/examples/04_monthly_steering_pack.json +0 -0
  955. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/services-delivery/examples/README.md +0 -0
  956. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/services-delivery/examples/run_examples.py +0 -0
  957. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/services-delivery/main.py +0 -0
  958. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/services-delivery/pytest.ini +0 -0
  959. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/services-delivery/requirements-dev.txt +0 -0
  960. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/services-delivery/tests/__init__.py +0 -0
  961. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/services-delivery/tests/conftest.py +0 -0
  962. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/services-delivery/validate_config.py +0 -0
  963. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/starter/Dockerfile +0 -0
  964. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/starter/README.md +0 -0
  965. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/starter/_prompts.json +0 -0
  966. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/starter/agency/__init__.py +0 -0
  967. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/starter/agency/_shared/__init__.py +0 -0
  968. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/starter/agency/_shared/audit_logger.py +0 -0
  969. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/starter/configs/config.yaml +0 -0
  970. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/starter/docker-compose.yml +0 -0
  971. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/starter/dockerignore +0 -0
  972. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/starter/env +0 -0
  973. {create_leafmesh-2.6.0/create_leafmesh/templates/quote-to-cash → create_leafmesh-2.6.2/create_leafmesh/templates/starter}/gitignore +0 -0
  974. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/starter/main.py +0 -0
  975. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/starter/pytest.ini +0 -0
  976. {create_leafmesh-2.6.0/create_leafmesh/templates/sales-orchestration → create_leafmesh-2.6.2/create_leafmesh/templates/starter}/requirements.txt +0 -0
  977. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/starter/tests/__init__.py +0 -0
  978. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/starter/tests/conftest.py +0 -0
  979. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/starter/tests/test_config_shape.py +0 -0
  980. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/starter/validate_config.py +0 -0
  981. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/warehouse-supply-chain/Dockerfile +0 -0
  982. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/warehouse-supply-chain/PRD.md +0 -0
  983. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/warehouse-supply-chain/README.md +0 -0
  984. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/warehouse-supply-chain/_prompts.json +0 -0
  985. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/warehouse-supply-chain/agency/__init__.py +0 -0
  986. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/warehouse-supply-chain/agency/_shared/__init__.py +0 -0
  987. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/warehouse-supply-chain/agency/_shared/allocation_math.py +0 -0
  988. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/warehouse-supply-chain/agency/_shared/audit_logger.py +0 -0
  989. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/warehouse-supply-chain/agency/_shared/carrier_math.py +0 -0
  990. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/warehouse-supply-chain/agency/_shared/session_stash.py +0 -0
  991. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/warehouse-supply-chain/agency/_shared/shrink_math.py +0 -0
  992. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/warehouse-supply-chain/agency/_shared/store.py +0 -0
  993. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/warehouse-supply-chain/agency/allocation_agent.py +0 -0
  994. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/warehouse-supply-chain/agency/carrier_selector_agent.py +0 -0
  995. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/warehouse-supply-chain/agency/exception_agent.py +0 -0
  996. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/warehouse-supply-chain/agency/humanoid_status_agent.py +0 -0
  997. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/warehouse-supply-chain/agency/inspection_humanoid.py +0 -0
  998. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/warehouse-supply-chain/agency/inventory_control_agent.py +0 -0
  999. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/warehouse-supply-chain/agency/loader_humanoid.py +0 -0
  1000. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/warehouse-supply-chain/agency/packer_humanoid.py +0 -0
  1001. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/warehouse-supply-chain/agency/picker_humanoid.py +0 -0
  1002. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/warehouse-supply-chain/agency/supplier_relations_agent.py +0 -0
  1003. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/warehouse-supply-chain/configs/config.yaml +0 -0
  1004. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/warehouse-supply-chain/docker-compose.yml +0 -0
  1005. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/warehouse-supply-chain/dockerignore +0 -0
  1006. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/warehouse-supply-chain/env +0 -0
  1007. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/warehouse-supply-chain/examples/01_routine_order.json +0 -0
  1008. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/warehouse-supply-chain/examples/02_short_pick_exception.json +0 -0
  1009. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/warehouse-supply-chain/examples/03_returns_inspection.json +0 -0
  1010. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/warehouse-supply-chain/examples/04_carrier_outage_failover.json +0 -0
  1011. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/warehouse-supply-chain/examples/README.md +0 -0
  1012. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/warehouse-supply-chain/examples/run_examples.py +0 -0
  1013. {create_leafmesh-2.6.0/create_leafmesh/templates/services-delivery → create_leafmesh-2.6.2/create_leafmesh/templates/warehouse-supply-chain}/gitignore +0 -0
  1014. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/warehouse-supply-chain/main.py +0 -0
  1015. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/warehouse-supply-chain/pytest.ini +0 -0
  1016. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/warehouse-supply-chain/requirements-dev.txt +0 -0
  1017. {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
  1018. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/warehouse-supply-chain/tests/__init__.py +0 -0
  1019. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/warehouse-supply-chain/tests/conftest.py +0 -0
  1020. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/warehouse-supply-chain/tests/test_agent_logic.py +0 -0
  1021. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/warehouse-supply-chain/tests/test_config_shape.py +0 -0
  1022. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh/templates/warehouse-supply-chain/validate_config.py +0 -0
  1023. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh.egg-info/dependency_links.txt +0 -0
  1024. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh.egg-info/entry_points.txt +0 -0
  1025. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh.egg-info/requires.txt +0 -0
  1026. {create_leafmesh-2.6.0 → create_leafmesh-2.6.2}/create_leafmesh.egg-info/top_level.txt +0 -0
  1027. {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
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: create-leafmesh
3
- Version: 2.6.0
3
+ Version: 2.6.2
4
4
  Summary: Project scaffolding + cloud-deploy tool for LeafMesh
5
5
  License-Expression: MIT
6
6
  Requires-Python: >=3.10
@@ -1,3 +1,3 @@
1
1
  """create-leafmesh — Project scaffolding + cloud-deploy tool for LeafMesh."""
2
2
 
3
- __version__ = "2.6.0"
3
+ __version__ = "2.6.2"
@@ -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: create-leafmesh <project_name> --template <slug>"))
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, or 'q' to quit."))
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().lower()
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
- if raw in ("q", "quit", "exit"):
390
+ low = raw.lower()
391
+ if low in ("q", "quit", "exit"):
332
392
  print("\n Cancelled.\n")
333
393
  sys.exit(0)
334
- if raw in valid_indexes:
335
- return valid_indexes[raw]
336
- if raw in valid_slugs:
337
- return raw
338
- print(f" Invalid choice. Type 1–{len(ready)}, a slug, or 'q'.")
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: 14
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: 15
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: 14
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: 13
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: 18
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: 11
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: 11
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: