create-leafmesh 2.3.2__tar.gz → 2.4.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1450) hide show
  1. create_leafmesh-2.4.0/PKG-INFO +94 -0
  2. create_leafmesh-2.4.0/create_leafmesh/__init__.py +3 -0
  3. create_leafmesh-2.4.0/create_leafmesh/templates/_inspire/__pycache__/main.cpython-314.pyc +0 -0
  4. create_leafmesh-2.4.0/create_leafmesh/templates/_inspire/agency/__pycache__/advisor_agent.cpython-314.pyc +0 -0
  5. create_leafmesh-2.4.0/create_leafmesh/templates/_inspire/agency/__pycache__/fallback_researcher_agent.cpython-314.pyc +0 -0
  6. create_leafmesh-2.4.0/create_leafmesh/templates/_inspire/agency/__pycache__/greeter_agent.cpython-314.pyc +0 -0
  7. create_leafmesh-2.4.0/create_leafmesh/templates/_inspire/agency/__pycache__/processor_agent.cpython-314.pyc +0 -0
  8. create_leafmesh-2.4.0/create_leafmesh/templates/_inspire/agency/__pycache__/researcher_agent.cpython-314.pyc +0 -0
  9. create_leafmesh-2.4.0/create_leafmesh/templates/_inspire/agency/__pycache__/risk_scorer_agent.cpython-314.pyc +0 -0
  10. create_leafmesh-2.4.0/create_leafmesh/templates/_inspire/agency/advisor_agent.py +195 -0
  11. create_leafmesh-2.4.0/create_leafmesh/templates/_inspire/agency/fallback_researcher_agent.py +110 -0
  12. create_leafmesh-2.4.0/create_leafmesh/templates/_inspire/agency/greeter_agent.py +129 -0
  13. create_leafmesh-2.4.0/create_leafmesh/templates/_inspire/agency/processor_agent.py +146 -0
  14. create_leafmesh-2.4.0/create_leafmesh/templates/_inspire/agency/researcher_agent.py +143 -0
  15. create_leafmesh-2.4.0/create_leafmesh/templates/_inspire/agency/risk_scorer_agent.py +197 -0
  16. create_leafmesh-2.4.0/create_leafmesh/templates/_inspire/configs/config.yaml +1260 -0
  17. create_leafmesh-2.4.0/create_leafmesh/templates/_inspire/logs/leafmesh_2026-06-11.log +6 -0
  18. create_leafmesh-2.4.0/create_leafmesh/templates/_inspire/requirements.txt +10 -0
  19. create_leafmesh-2.4.0/create_leafmesh/templates/_registry.yaml +415 -0
  20. create_leafmesh-2.4.0/create_leafmesh/templates/bd-proposals/README.md +17 -0
  21. create_leafmesh-2.4.0/create_leafmesh/templates/bd-proposals/__pycache__/main.cpython-314.pyc +0 -0
  22. create_leafmesh-2.4.0/create_leafmesh/templates/bd-proposals/agency/__pycache__/__init__.cpython-314.pyc +0 -0
  23. create_leafmesh-2.4.0/create_leafmesh/templates/bd-proposals/agency/__pycache__/bid_no_bid_decisioner_agent.cpython-314.pyc +0 -0
  24. create_leafmesh-2.4.0/create_leafmesh/templates/bd-proposals/agency/__pycache__/competitive_intel_agent.cpython-314.pyc +0 -0
  25. create_leafmesh-2.4.0/create_leafmesh/templates/bd-proposals/agency/__pycache__/contracts_review_agent.cpython-314.pyc +0 -0
  26. create_leafmesh-2.4.0/create_leafmesh/templates/bd-proposals/agency/__pycache__/precedent_research_agent.cpython-314.pyc +0 -0
  27. create_leafmesh-2.4.0/create_leafmesh/templates/bd-proposals/agency/__pycache__/pricing_configurator_agent.cpython-314.pyc +0 -0
  28. create_leafmesh-2.4.0/create_leafmesh/templates/bd-proposals/agency/__pycache__/rfp_intake_agent.cpython-314.pyc +0 -0
  29. create_leafmesh-2.4.0/create_leafmesh/templates/bd-proposals/agency/__pycache__/section_drafter_agent.cpython-314.pyc +0 -0
  30. create_leafmesh-2.4.0/create_leafmesh/templates/bd-proposals/agency/_shared/__pycache__/__init__.cpython-314.pyc +0 -0
  31. create_leafmesh-2.4.0/create_leafmesh/templates/bd-proposals/agency/_shared/__pycache__/audit_logger.cpython-314.pyc +0 -0
  32. create_leafmesh-2.4.0/create_leafmesh/templates/bd-proposals/agency/_shared/audit_logger.py +149 -0
  33. create_leafmesh-2.4.0/create_leafmesh/templates/bd-proposals/agency/bid_no_bid_decisioner_agent.py +111 -0
  34. create_leafmesh-2.4.0/create_leafmesh/templates/bd-proposals/agency/competitive_intel_agent.py +253 -0
  35. create_leafmesh-2.4.0/create_leafmesh/templates/bd-proposals/agency/contracts_review_agent.py +292 -0
  36. create_leafmesh-2.4.0/create_leafmesh/templates/bd-proposals/agency/precedent_research_agent.py +225 -0
  37. create_leafmesh-2.4.0/create_leafmesh/templates/bd-proposals/agency/rfp_intake_agent.py +351 -0
  38. create_leafmesh-2.4.0/create_leafmesh/templates/bd-proposals/configs/config.yaml +803 -0
  39. create_leafmesh-2.4.0/create_leafmesh/templates/bd-proposals/examples/01_new_rfp_received.json +13 -0
  40. create_leafmesh-2.4.0/create_leafmesh/templates/bd-proposals/examples/02_win_post_mortem.json +23 -0
  41. create_leafmesh-2.4.0/create_leafmesh/templates/bd-proposals/examples/README.md +23 -0
  42. create_leafmesh-2.4.0/create_leafmesh/templates/bd-proposals/main.py +49 -0
  43. create_leafmesh-2.4.0/create_leafmesh/templates/bd-proposals/requirements.txt +6 -0
  44. create_leafmesh-2.4.0/create_leafmesh/templates/bd-proposals/tests/__pycache__/test_agent_logic.cpython-314-pytest-9.0.2.pyc +0 -0
  45. create_leafmesh-2.4.0/create_leafmesh/templates/bd-proposals/tests/test_agent_logic.py +323 -0
  46. create_leafmesh-2.4.0/create_leafmesh/templates/bench-management/README.md +15 -0
  47. create_leafmesh-2.4.0/create_leafmesh/templates/bench-management/__pycache__/main.cpython-314.pyc +0 -0
  48. create_leafmesh-2.4.0/create_leafmesh/templates/bench-management/agency/__pycache__/__init__.cpython-314.pyc +0 -0
  49. create_leafmesh-2.4.0/create_leafmesh/templates/bench-management/agency/__pycache__/esat_survey_agent.cpython-314.pyc +0 -0
  50. create_leafmesh-2.4.0/create_leafmesh/templates/bench-management/agency/__pycache__/performance_review_agent.cpython-314.pyc +0 -0
  51. create_leafmesh-2.4.0/create_leafmesh/templates/bench-management/agency/__pycache__/staffing_coordinator_agent.cpython-314.pyc +0 -0
  52. create_leafmesh-2.4.0/create_leafmesh/templates/bench-management/agency/__pycache__/talent_development_agent.cpython-314.pyc +0 -0
  53. create_leafmesh-2.4.0/create_leafmesh/templates/bench-management/agency/__pycache__/weekly_bench_sweep_agent.cpython-314.pyc +0 -0
  54. create_leafmesh-2.4.0/create_leafmesh/templates/bench-management/agency/__pycache__/workforce_analytics_agent.cpython-314.pyc +0 -0
  55. create_leafmesh-2.4.0/create_leafmesh/templates/bench-management/agency/_shared/__pycache__/__init__.cpython-314.pyc +0 -0
  56. create_leafmesh-2.4.0/create_leafmesh/templates/bench-management/agency/_shared/__pycache__/audit_logger.cpython-314.pyc +0 -0
  57. create_leafmesh-2.4.0/create_leafmesh/templates/bench-management/agency/_shared/audit_logger.py +149 -0
  58. create_leafmesh-2.4.0/create_leafmesh/templates/bench-management/agency/esat_survey_agent.py +224 -0
  59. create_leafmesh-2.4.0/create_leafmesh/templates/bench-management/agency/performance_review_agent.py +200 -0
  60. create_leafmesh-2.4.0/create_leafmesh/templates/bench-management/agency/staffing_coordinator_agent.py +118 -0
  61. create_leafmesh-2.4.0/create_leafmesh/templates/bench-management/agency/talent_development_agent.py +160 -0
  62. create_leafmesh-2.4.0/create_leafmesh/templates/bench-management/agency/workforce_analytics_agent.py +347 -0
  63. create_leafmesh-2.4.0/create_leafmesh/templates/bench-management/configs/config.yaml +655 -0
  64. create_leafmesh-2.4.0/create_leafmesh/templates/bench-management/examples/01_new_project_kickoff.json +19 -0
  65. create_leafmesh-2.4.0/create_leafmesh/templates/bench-management/examples/02_weekly_bench_review.json +10 -0
  66. create_leafmesh-2.4.0/create_leafmesh/templates/bench-management/examples/03_promotion_readiness.json +14 -0
  67. create_leafmesh-2.4.0/create_leafmesh/templates/bench-management/examples/README.md +23 -0
  68. create_leafmesh-2.4.0/create_leafmesh/templates/bench-management/main.py +49 -0
  69. create_leafmesh-2.4.0/create_leafmesh/templates/bench-management/requirements.txt +6 -0
  70. create_leafmesh-2.4.0/create_leafmesh/templates/bench-management/tests/__pycache__/conftest.cpython-314-pytest-9.0.2.pyc +0 -0
  71. create_leafmesh-2.4.0/create_leafmesh/templates/bench-management/tests/__pycache__/test_agent_logic.cpython-314-pytest-9.0.2.pyc +0 -0
  72. create_leafmesh-2.4.0/create_leafmesh/templates/bench-management/tests/conftest.py +26 -0
  73. create_leafmesh-2.4.0/create_leafmesh/templates/bench-management/tests/test_agent_logic.py +91 -0
  74. create_leafmesh-2.4.0/create_leafmesh/templates/claude_skills/leafmesh/SKILL.md +2602 -0
  75. create_leafmesh-2.4.0/create_leafmesh/templates/customer-success/README.md +193 -0
  76. create_leafmesh-2.4.0/create_leafmesh/templates/customer-success/agency/__init__.py +8 -0
  77. create_leafmesh-2.4.0/create_leafmesh/templates/customer-success/agency/__pycache__/__init__.cpython-314.pyc +0 -0
  78. create_leafmesh-2.4.0/create_leafmesh/templates/customer-success/agency/__pycache__/account_intel_agent.cpython-314.pyc +0 -0
  79. create_leafmesh-2.4.0/create_leafmesh/templates/customer-success/agency/__pycache__/competitor_intel_agent.cpython-314.pyc +0 -0
  80. create_leafmesh-2.4.0/create_leafmesh/templates/customer-success/agency/__pycache__/cs_operations_agent.cpython-314.pyc +0 -0
  81. create_leafmesh-2.4.0/create_leafmesh/templates/customer-success/agency/__pycache__/customer_onboarding_agent.cpython-314.pyc +0 -0
  82. create_leafmesh-2.4.0/create_leafmesh/templates/customer-success/agency/__pycache__/health_score_agent.cpython-314.pyc +0 -0
  83. create_leafmesh-2.4.0/create_leafmesh/templates/customer-success/agency/__pycache__/playbook_trigger_agent.cpython-314.pyc +0 -0
  84. create_leafmesh-2.4.0/create_leafmesh/templates/customer-success/agency/__pycache__/qbr_drafter_agent.cpython-314.pyc +0 -0
  85. create_leafmesh-2.4.0/create_leafmesh/templates/customer-success/agency/__pycache__/renewals_agent.cpython-314.pyc +0 -0
  86. create_leafmesh-2.4.0/create_leafmesh/templates/customer-success/agency/__pycache__/risk_detector_agent.cpython-314.pyc +0 -0
  87. create_leafmesh-2.4.0/create_leafmesh/templates/customer-success/agency/__pycache__/save_play_agent.cpython-314.pyc +0 -0
  88. create_leafmesh-2.4.0/create_leafmesh/templates/customer-success/agency/_shared/__pycache__/__init__.cpython-314.pyc +0 -0
  89. create_leafmesh-2.4.0/create_leafmesh/templates/customer-success/agency/_shared/__pycache__/audit_logger.cpython-314.pyc +0 -0
  90. create_leafmesh-2.4.0/create_leafmesh/templates/customer-success/agency/_shared/audit_logger.py +149 -0
  91. create_leafmesh-2.4.0/create_leafmesh/templates/customer-success/agency/account_intel_agent.py +275 -0
  92. create_leafmesh-2.4.0/create_leafmesh/templates/customer-success/agency/competitor_intel_agent.py +236 -0
  93. create_leafmesh-2.4.0/create_leafmesh/templates/customer-success/agency/cs_operations_agent.py +238 -0
  94. create_leafmesh-2.4.0/create_leafmesh/templates/customer-success/agency/customer_onboarding_agent.py +278 -0
  95. create_leafmesh-2.4.0/create_leafmesh/templates/customer-success/agency/health_score_agent.py +118 -0
  96. create_leafmesh-2.4.0/create_leafmesh/templates/customer-success/agency/renewals_agent.py +199 -0
  97. create_leafmesh-2.4.0/create_leafmesh/templates/customer-success/agency/risk_detector_agent.py +123 -0
  98. create_leafmesh-2.4.0/create_leafmesh/templates/customer-success/agency/save_play_agent.py +109 -0
  99. create_leafmesh-2.4.0/create_leafmesh/templates/customer-success/configs/config.yaml +1357 -0
  100. create_leafmesh-2.4.0/create_leafmesh/templates/customer-success/examples/02_billing_failed_payment.json +19 -0
  101. create_leafmesh-2.4.0/create_leafmesh/templates/customer-success/examples/03_renewal_window_60d.json +21 -0
  102. create_leafmesh-2.4.0/create_leafmesh/templates/customer-success/examples/04_executive_change.json +26 -0
  103. create_leafmesh-2.4.0/create_leafmesh/templates/customer-success/examples/README.md +23 -0
  104. create_leafmesh-2.4.0/create_leafmesh/templates/customer-success/logs/leafmesh_2026-06-11.log +102 -0
  105. create_leafmesh-2.4.0/create_leafmesh/templates/customer-success/main.py +119 -0
  106. create_leafmesh-2.4.0/create_leafmesh/templates/customer-success/requirements.txt +7 -0
  107. create_leafmesh-2.4.0/create_leafmesh/templates/customer-success/tests/__pycache__/test_agent_logic.cpython-314-pytest-9.0.2.pyc +0 -0
  108. create_leafmesh-2.4.0/create_leafmesh/templates/customer-success/tests/__pycache__/test_config_shape.cpython-314-pytest-9.0.2.pyc +0 -0
  109. create_leafmesh-2.4.0/create_leafmesh/templates/customer-success/tests/test_agent_logic.py +452 -0
  110. create_leafmesh-2.4.0/create_leafmesh/templates/customer-success/tests/test_config_shape.py +169 -0
  111. create_leafmesh-2.4.0/create_leafmesh/templates/customer-support/README.md +62 -0
  112. create_leafmesh-2.4.0/create_leafmesh/templates/customer-support/__pycache__/main.cpython-314.pyc +0 -0
  113. create_leafmesh-2.4.0/create_leafmesh/templates/customer-support/agency/__pycache__/__init__.cpython-314.pyc +0 -0
  114. create_leafmesh-2.4.0/create_leafmesh/templates/customer-support/agency/__pycache__/crm_case_generator_agent.cpython-314.pyc +0 -0
  115. create_leafmesh-2.4.0/create_leafmesh/templates/customer-support/agency/__pycache__/cross_channel_agent.cpython-314.pyc +0 -0
  116. create_leafmesh-2.4.0/create_leafmesh/templates/customer-support/agency/__pycache__/kb_gap_filler_agent.cpython-314.pyc +0 -0
  117. create_leafmesh-2.4.0/create_leafmesh/templates/customer-support/agency/__pycache__/qa_agent.cpython-314.pyc +0 -0
  118. create_leafmesh-2.4.0/create_leafmesh/templates/customer-support/agency/__pycache__/response_agent.cpython-314.pyc +0 -0
  119. create_leafmesh-2.4.0/create_leafmesh/templates/customer-support/agency/__pycache__/sentiment_agent.cpython-314.pyc +0 -0
  120. create_leafmesh-2.4.0/create_leafmesh/templates/customer-support/agency/__pycache__/sla_watchdog_agent.cpython-314.pyc +0 -0
  121. create_leafmesh-2.4.0/create_leafmesh/templates/customer-support/agency/__pycache__/support_insights_agent.cpython-314.pyc +0 -0
  122. create_leafmesh-2.4.0/create_leafmesh/templates/customer-support/agency/__pycache__/ticket_intake_agent.cpython-314.pyc +0 -0
  123. create_leafmesh-2.4.0/create_leafmesh/templates/customer-support/agency/_shared/__pycache__/__init__.cpython-314.pyc +0 -0
  124. create_leafmesh-2.4.0/create_leafmesh/templates/customer-support/agency/_shared/__pycache__/audit_logger.cpython-314.pyc +0 -0
  125. create_leafmesh-2.4.0/create_leafmesh/templates/customer-support/agency/_shared/audit_logger.py +149 -0
  126. create_leafmesh-2.4.0/create_leafmesh/templates/customer-support/agency/crm_case_generator_agent.py +228 -0
  127. create_leafmesh-2.4.0/create_leafmesh/templates/customer-support/agency/cross_channel_agent.py +190 -0
  128. create_leafmesh-2.4.0/create_leafmesh/templates/customer-support/agency/kb_gap_filler_agent.py +46 -0
  129. create_leafmesh-2.4.0/create_leafmesh/templates/customer-support/agency/qa_agent.py +104 -0
  130. create_leafmesh-2.4.0/create_leafmesh/templates/customer-support/agency/response_agent.py +97 -0
  131. create_leafmesh-2.4.0/create_leafmesh/templates/customer-support/agency/support_insights_agent.py +336 -0
  132. create_leafmesh-2.4.0/create_leafmesh/templates/customer-support/agency/ticket_intake_agent.py +413 -0
  133. create_leafmesh-2.4.0/create_leafmesh/templates/customer-support/configs/config.yaml +959 -0
  134. create_leafmesh-2.4.0/create_leafmesh/templates/customer-support/data/csat_ledger.db +0 -0
  135. create_leafmesh-2.4.0/create_leafmesh/templates/customer-support/data/ticket_history.db +0 -0
  136. create_leafmesh-2.4.0/create_leafmesh/templates/customer-support/logs/leafmesh_2026-06-11.log +80 -0
  137. create_leafmesh-2.4.0/create_leafmesh/templates/customer-support/main.py +62 -0
  138. create_leafmesh-2.4.0/create_leafmesh/templates/customer-support/requirements.txt +6 -0
  139. create_leafmesh-2.4.0/create_leafmesh/templates/customer-support/tests/__pycache__/test_agent_logic.cpython-314-pytest-9.0.2.pyc +0 -0
  140. create_leafmesh-2.4.0/create_leafmesh/templates/customer-support/tests/__pycache__/test_config_shape.cpython-314-pytest-9.0.2.pyc +0 -0
  141. create_leafmesh-2.4.0/create_leafmesh/templates/customer-support/tests/test_agent_logic.py +346 -0
  142. create_leafmesh-2.4.0/create_leafmesh/templates/customer-support/tests/test_config_shape.py +197 -0
  143. create_leafmesh-2.4.0/create_leafmesh/templates/engineering-sdlc/__pycache__/main.cpython-314.pyc +0 -0
  144. create_leafmesh-2.4.0/create_leafmesh/templates/engineering-sdlc/agency/__pycache__/__init__.cpython-314.pyc +0 -0
  145. create_leafmesh-2.4.0/create_leafmesh/templates/engineering-sdlc/agency/__pycache__/code_reviewer_agent.cpython-314.pyc +0 -0
  146. create_leafmesh-2.4.0/create_leafmesh/templates/engineering-sdlc/agency/__pycache__/junior_engineer_agent.cpython-314.pyc +0 -0
  147. create_leafmesh-2.4.0/create_leafmesh/templates/engineering-sdlc/agency/__pycache__/oncall_alert_triager_agent.cpython-314.pyc +0 -0
  148. create_leafmesh-2.4.0/create_leafmesh/templates/engineering-sdlc/agency/__pycache__/refactor_agent.cpython-314.pyc +0 -0
  149. create_leafmesh-2.4.0/create_leafmesh/templates/engineering-sdlc/agency/__pycache__/regression_detector_agent.cpython-314.pyc +0 -0
  150. create_leafmesh-2.4.0/create_leafmesh/templates/engineering-sdlc/agency/__pycache__/regulatory_monitor_agent.cpython-314.pyc +0 -0
  151. create_leafmesh-2.4.0/create_leafmesh/templates/engineering-sdlc/agency/__pycache__/release_notes_drafter_agent.cpython-314.pyc +0 -0
  152. create_leafmesh-2.4.0/create_leafmesh/templates/engineering-sdlc/agency/__pycache__/security_scanner_agent.cpython-314.pyc +0 -0
  153. create_leafmesh-2.4.0/create_leafmesh/templates/engineering-sdlc/agency/__pycache__/spec_agent.cpython-314.pyc +0 -0
  154. create_leafmesh-2.4.0/create_leafmesh/templates/engineering-sdlc/agency/__pycache__/test_engineer_agent.cpython-314.pyc +0 -0
  155. create_leafmesh-2.4.0/create_leafmesh/templates/engineering-sdlc/agency/_shared/__pycache__/__init__.cpython-314.pyc +0 -0
  156. create_leafmesh-2.4.0/create_leafmesh/templates/engineering-sdlc/agency/_shared/__pycache__/audit_logger.cpython-314.pyc +0 -0
  157. create_leafmesh-2.4.0/create_leafmesh/templates/engineering-sdlc/agency/_shared/__pycache__/session_stash.cpython-314.pyc +0 -0
  158. create_leafmesh-2.4.0/create_leafmesh/templates/engineering-sdlc/agency/_shared/audit_logger.py +149 -0
  159. create_leafmesh-2.4.0/create_leafmesh/templates/engineering-sdlc/agency/_shared/session_stash.py +53 -0
  160. create_leafmesh-2.4.0/create_leafmesh/templates/engineering-sdlc/agency/code_reviewer_agent.py +129 -0
  161. create_leafmesh-2.4.0/create_leafmesh/templates/engineering-sdlc/agency/junior_engineer_agent.py +121 -0
  162. create_leafmesh-2.4.0/create_leafmesh/templates/engineering-sdlc/agency/spec_agent.py +104 -0
  163. create_leafmesh-2.4.0/create_leafmesh/templates/engineering-sdlc/configs/config.yaml +828 -0
  164. create_leafmesh-2.4.0/create_leafmesh/templates/engineering-sdlc/logs/leafmesh_2026-06-11.log +28 -0
  165. create_leafmesh-2.4.0/create_leafmesh/templates/engineering-sdlc/main.py +62 -0
  166. create_leafmesh-2.4.0/create_leafmesh/templates/engineering-sdlc/requirements.txt +6 -0
  167. create_leafmesh-2.4.0/create_leafmesh/templates/finance-ops/README.md +188 -0
  168. create_leafmesh-2.4.0/create_leafmesh/templates/finance-ops/__pycache__/main.cpython-314.pyc +0 -0
  169. create_leafmesh-2.4.0/create_leafmesh/templates/finance-ops/agency/__pycache__/__init__.cpython-314.pyc +0 -0
  170. create_leafmesh-2.4.0/create_leafmesh/templates/finance-ops/agency/__pycache__/approval_router_agent.cpython-314.pyc +0 -0
  171. create_leafmesh-2.4.0/create_leafmesh/templates/finance-ops/agency/__pycache__/close_cycle_orchestrator_agent.cpython-314.pyc +0 -0
  172. create_leafmesh-2.4.0/create_leafmesh/templates/finance-ops/agency/__pycache__/erp_poster_agent.cpython-314.pyc +0 -0
  173. create_leafmesh-2.4.0/create_leafmesh/templates/finance-ops/agency/__pycache__/gl_coding_agent.cpython-314.pyc +0 -0
  174. create_leafmesh-2.4.0/create_leafmesh/templates/finance-ops/agency/__pycache__/invoice_intake_agent.cpython-314.pyc +0 -0
  175. create_leafmesh-2.4.0/create_leafmesh/templates/finance-ops/agency/__pycache__/loan_origination_agent.cpython-314.pyc +0 -0
  176. create_leafmesh-2.4.0/create_leafmesh/templates/finance-ops/agency/__pycache__/loan_servicing_agent.cpython-314.pyc +0 -0
  177. create_leafmesh-2.4.0/create_leafmesh/templates/finance-ops/agency/__pycache__/matching_agent.cpython-314.pyc +0 -0
  178. create_leafmesh-2.4.0/create_leafmesh/templates/finance-ops/agency/__pycache__/payment_risk_agent.cpython-314.pyc +0 -0
  179. create_leafmesh-2.4.0/create_leafmesh/templates/finance-ops/agency/__pycache__/payment_scheduler_agent.cpython-314.pyc +0 -0
  180. create_leafmesh-2.4.0/create_leafmesh/templates/finance-ops/agency/__pycache__/regulatory_monitor_agent.cpython-314.pyc +0 -0
  181. create_leafmesh-2.4.0/create_leafmesh/templates/finance-ops/agency/__pycache__/vendor_comms_agent.cpython-314.pyc +0 -0
  182. create_leafmesh-2.4.0/create_leafmesh/templates/finance-ops/agency/__pycache__/vendor_compliance_agent.cpython-314.pyc +0 -0
  183. create_leafmesh-2.4.0/create_leafmesh/templates/finance-ops/agency/_shared/__pycache__/__init__.cpython-314.pyc +0 -0
  184. create_leafmesh-2.4.0/create_leafmesh/templates/finance-ops/agency/_shared/__pycache__/audit_logger.cpython-314.pyc +0 -0
  185. create_leafmesh-2.4.0/create_leafmesh/templates/finance-ops/agency/_shared/__pycache__/erp_poster.cpython-314.pyc +0 -0
  186. create_leafmesh-2.4.0/create_leafmesh/templates/finance-ops/agency/_shared/__pycache__/session_stash.cpython-314.pyc +0 -0
  187. create_leafmesh-2.4.0/create_leafmesh/templates/finance-ops/agency/_shared/audit_logger.py +149 -0
  188. create_leafmesh-2.4.0/create_leafmesh/templates/finance-ops/agency/_shared/erp_poster.py +135 -0
  189. create_leafmesh-2.4.0/create_leafmesh/templates/finance-ops/agency/_shared/session_stash.py +53 -0
  190. create_leafmesh-2.4.0/create_leafmesh/templates/finance-ops/agency/approval_router_agent.py +155 -0
  191. create_leafmesh-2.4.0/create_leafmesh/templates/finance-ops/agency/erp_poster_agent.py +93 -0
  192. create_leafmesh-2.4.0/create_leafmesh/templates/finance-ops/agency/gl_coding_agent.py +135 -0
  193. create_leafmesh-2.4.0/create_leafmesh/templates/finance-ops/agency/invoice_intake_agent.py +133 -0
  194. create_leafmesh-2.4.0/create_leafmesh/templates/finance-ops/agency/loan_origination_agent.py +216 -0
  195. create_leafmesh-2.4.0/create_leafmesh/templates/finance-ops/agency/matching_agent.py +169 -0
  196. create_leafmesh-2.4.0/create_leafmesh/templates/finance-ops/agency/payment_risk_agent.py +301 -0
  197. create_leafmesh-2.4.0/create_leafmesh/templates/finance-ops/agency/payment_scheduler_agent.py +171 -0
  198. create_leafmesh-2.4.0/create_leafmesh/templates/finance-ops/agency/vendor_comms_agent.py +198 -0
  199. create_leafmesh-2.4.0/create_leafmesh/templates/finance-ops/agency/vendor_compliance_agent.py +444 -0
  200. create_leafmesh-2.4.0/create_leafmesh/templates/finance-ops/configs/config.yaml +1421 -0
  201. create_leafmesh-2.4.0/create_leafmesh/templates/finance-ops/examples/02_fraud_signal_round_number.json +26 -0
  202. create_leafmesh-2.4.0/create_leafmesh/templates/finance-ops/examples/03_po_mismatch_exception.json +26 -0
  203. create_leafmesh-2.4.0/create_leafmesh/templates/finance-ops/examples/05_vendor_inquiry.json +14 -0
  204. create_leafmesh-2.4.0/create_leafmesh/templates/finance-ops/examples/README.md +63 -0
  205. create_leafmesh-2.4.0/create_leafmesh/templates/finance-ops/main.py +157 -0
  206. create_leafmesh-2.4.0/create_leafmesh/templates/finance-ops/requirements.txt +11 -0
  207. create_leafmesh-2.4.0/create_leafmesh/templates/finance-ops/tests/__pycache__/conftest.cpython-314-pytest-9.0.2.pyc +0 -0
  208. create_leafmesh-2.4.0/create_leafmesh/templates/finance-ops/tests/__pycache__/test_agent_logic.cpython-314-pytest-9.0.2.pyc +0 -0
  209. create_leafmesh-2.4.0/create_leafmesh/templates/finance-ops/tests/__pycache__/test_config_shape.cpython-314-pytest-9.0.2.pyc +0 -0
  210. create_leafmesh-2.4.0/create_leafmesh/templates/finance-ops/tests/conftest.py +41 -0
  211. create_leafmesh-2.4.0/create_leafmesh/templates/finance-ops/tests/test_agent_logic.py +616 -0
  212. create_leafmesh-2.4.0/create_leafmesh/templates/finance-ops/tests/test_config_shape.py +270 -0
  213. create_leafmesh-2.4.0/create_leafmesh/templates/infra-cost-ops/README.md +13 -0
  214. create_leafmesh-2.4.0/create_leafmesh/templates/infra-cost-ops/__pycache__/main.cpython-314.pyc +0 -0
  215. create_leafmesh-2.4.0/create_leafmesh/templates/infra-cost-ops/agency/__pycache__/__init__.cpython-314.pyc +0 -0
  216. create_leafmesh-2.4.0/create_leafmesh/templates/infra-cost-ops/agency/__pycache__/commitments_agent.cpython-314.pyc +0 -0
  217. create_leafmesh-2.4.0/create_leafmesh/templates/infra-cost-ops/agency/__pycache__/cost_anomaly_agent.cpython-314.pyc +0 -0
  218. create_leafmesh-2.4.0/create_leafmesh/templates/infra-cost-ops/agency/__pycache__/cost_tuner_agent.cpython-314.pyc +0 -0
  219. create_leafmesh-2.4.0/create_leafmesh/templates/infra-cost-ops/agency/__pycache__/finops_governance_agent.cpython-314.pyc +0 -0
  220. create_leafmesh-2.4.0/create_leafmesh/templates/infra-cost-ops/agency/__pycache__/iac_drift_agent.cpython-314.pyc +0 -0
  221. create_leafmesh-2.4.0/create_leafmesh/templates/infra-cost-ops/agency/__pycache__/regulatory_monitor_agent.cpython-314.pyc +0 -0
  222. create_leafmesh-2.4.0/create_leafmesh/templates/infra-cost-ops/agency/_shared/__pycache__/__init__.cpython-314.pyc +0 -0
  223. create_leafmesh-2.4.0/create_leafmesh/templates/infra-cost-ops/agency/_shared/__pycache__/audit_logger.cpython-314.pyc +0 -0
  224. create_leafmesh-2.4.0/create_leafmesh/templates/infra-cost-ops/agency/_shared/__pycache__/session_stash.cpython-314.pyc +0 -0
  225. create_leafmesh-2.4.0/create_leafmesh/templates/infra-cost-ops/agency/_shared/audit_logger.py +149 -0
  226. create_leafmesh-2.4.0/create_leafmesh/templates/infra-cost-ops/agency/_shared/session_stash.py +53 -0
  227. create_leafmesh-2.4.0/create_leafmesh/templates/infra-cost-ops/agency/commitments_agent.py +130 -0
  228. create_leafmesh-2.4.0/create_leafmesh/templates/infra-cost-ops/agency/cost_anomaly_agent.py +133 -0
  229. create_leafmesh-2.4.0/create_leafmesh/templates/infra-cost-ops/agency/cost_tuner_agent.py +79 -0
  230. create_leafmesh-2.4.0/create_leafmesh/templates/infra-cost-ops/agency/finops_governance_agent.py +320 -0
  231. create_leafmesh-2.4.0/create_leafmesh/templates/infra-cost-ops/agency/regulatory_monitor_agent.py +218 -0
  232. create_leafmesh-2.4.0/create_leafmesh/templates/infra-cost-ops/configs/config.yaml +543 -0
  233. create_leafmesh-2.4.0/create_leafmesh/templates/infra-cost-ops/data/cloud_resources.db +0 -0
  234. create_leafmesh-2.4.0/create_leafmesh/templates/infra-cost-ops/data/cloud_spend.db +0 -0
  235. create_leafmesh-2.4.0/create_leafmesh/templates/infra-cost-ops/examples/02_savings_plan_under_utilised.json +13 -0
  236. create_leafmesh-2.4.0/create_leafmesh/templates/infra-cost-ops/examples/03_ri_expiry_30d.json +14 -0
  237. create_leafmesh-2.4.0/create_leafmesh/templates/infra-cost-ops/examples/README.md +23 -0
  238. create_leafmesh-2.4.0/create_leafmesh/templates/infra-cost-ops/logs/leafmesh_2026-06-11.log +25 -0
  239. create_leafmesh-2.4.0/create_leafmesh/templates/infra-cost-ops/main.py +49 -0
  240. create_leafmesh-2.4.0/create_leafmesh/templates/infra-cost-ops/requirements.txt +6 -0
  241. create_leafmesh-2.4.0/create_leafmesh/templates/infra-cost-ops/tests/__pycache__/test_agent_logic.cpython-314-pytest-9.0.2.pyc +0 -0
  242. create_leafmesh-2.4.0/create_leafmesh/templates/infra-cost-ops/tests/__pycache__/test_config_shape.cpython-314-pytest-9.0.2.pyc +0 -0
  243. create_leafmesh-2.4.0/create_leafmesh/templates/infra-cost-ops/tests/test_agent_logic.py +199 -0
  244. create_leafmesh-2.4.0/create_leafmesh/templates/infra-cost-ops/tests/test_config_shape.py +45 -0
  245. create_leafmesh-2.4.0/create_leafmesh/templates/marketing-ops/__pycache__/main.cpython-314.pyc +0 -0
  246. create_leafmesh-2.4.0/create_leafmesh/templates/marketing-ops/agency/__pycache__/__init__.cpython-314.pyc +0 -0
  247. create_leafmesh-2.4.0/create_leafmesh/templates/marketing-ops/agency/__pycache__/aeo_geo_optimiser_agent.cpython-314.pyc +0 -0
  248. create_leafmesh-2.4.0/create_leafmesh/templates/marketing-ops/agency/__pycache__/brand_guardian_agent.cpython-314.pyc +0 -0
  249. create_leafmesh-2.4.0/create_leafmesh/templates/marketing-ops/agency/__pycache__/campaign_orchestrator_agent.cpython-314.pyc +0 -0
  250. create_leafmesh-2.4.0/create_leafmesh/templates/marketing-ops/agency/__pycache__/campaign_strategist_agent.cpython-314.pyc +0 -0
  251. create_leafmesh-2.4.0/create_leafmesh/templates/marketing-ops/agency/__pycache__/compliance_reviewer_agent.cpython-314.pyc +0 -0
  252. create_leafmesh-2.4.0/create_leafmesh/templates/marketing-ops/agency/__pycache__/copywriter_agent.cpython-314.pyc +0 -0
  253. create_leafmesh-2.4.0/create_leafmesh/templates/marketing-ops/agency/__pycache__/market_intelligence_agent.cpython-314.pyc +0 -0
  254. create_leafmesh-2.4.0/create_leafmesh/templates/marketing-ops/agency/__pycache__/marketing_analytics_agent.cpython-314.pyc +0 -0
  255. create_leafmesh-2.4.0/create_leafmesh/templates/marketing-ops/agency/__pycache__/marketing_audit_logger_agent.cpython-314.pyc +0 -0
  256. create_leafmesh-2.4.0/create_leafmesh/templates/marketing-ops/agency/__pycache__/publisher_agent.cpython-314.pyc +0 -0
  257. create_leafmesh-2.4.0/create_leafmesh/templates/marketing-ops/agency/__pycache__/social_media_agent.cpython-314.pyc +0 -0
  258. create_leafmesh-2.4.0/create_leafmesh/templates/marketing-ops/agency/__pycache__/visual_briefer_agent.cpython-314.pyc +0 -0
  259. create_leafmesh-2.4.0/create_leafmesh/templates/marketing-ops/agency/_shared/__pycache__/__init__.cpython-314.pyc +0 -0
  260. create_leafmesh-2.4.0/create_leafmesh/templates/marketing-ops/agency/_shared/__pycache__/audit_logger.cpython-314.pyc +0 -0
  261. create_leafmesh-2.4.0/create_leafmesh/templates/marketing-ops/agency/_shared/__pycache__/session_stash.cpython-314.pyc +0 -0
  262. create_leafmesh-2.4.0/create_leafmesh/templates/marketing-ops/agency/_shared/audit_logger.py +149 -0
  263. create_leafmesh-2.4.0/create_leafmesh/templates/marketing-ops/agency/_shared/session_stash.py +53 -0
  264. create_leafmesh-2.4.0/create_leafmesh/templates/marketing-ops/agency/aeo_geo_optimiser_agent.py +250 -0
  265. create_leafmesh-2.4.0/create_leafmesh/templates/marketing-ops/agency/brand_guardian_agent.py +297 -0
  266. create_leafmesh-2.4.0/create_leafmesh/templates/marketing-ops/agency/campaign_strategist_agent.py +181 -0
  267. create_leafmesh-2.4.0/create_leafmesh/templates/marketing-ops/agency/compliance_reviewer_agent.py +122 -0
  268. create_leafmesh-2.4.0/create_leafmesh/templates/marketing-ops/agency/copywriter_agent.py +107 -0
  269. create_leafmesh-2.4.0/create_leafmesh/templates/marketing-ops/agency/market_intelligence_agent.py +98 -0
  270. create_leafmesh-2.4.0/create_leafmesh/templates/marketing-ops/agency/marketing_analytics_agent.py +325 -0
  271. create_leafmesh-2.4.0/create_leafmesh/templates/marketing-ops/agency/marketing_audit_logger_agent.py +107 -0
  272. create_leafmesh-2.4.0/create_leafmesh/templates/marketing-ops/agency/publisher_agent.py +114 -0
  273. create_leafmesh-2.4.0/create_leafmesh/templates/marketing-ops/agency/social_media_agent.py +262 -0
  274. create_leafmesh-2.4.0/create_leafmesh/templates/marketing-ops/configs/config.yaml +886 -0
  275. create_leafmesh-2.4.0/create_leafmesh/templates/marketing-ops/examples/01_new_campaign_brief.json +18 -0
  276. create_leafmesh-2.4.0/create_leafmesh/templates/marketing-ops/examples/02_product_launch_kickoff.json +17 -0
  277. create_leafmesh-2.4.0/create_leafmesh/templates/marketing-ops/examples/03_brand_crisis.json +17 -0
  278. create_leafmesh-2.4.0/create_leafmesh/templates/marketing-ops/examples/04_competitor_pricing_move.json +17 -0
  279. create_leafmesh-2.4.0/create_leafmesh/templates/marketing-ops/examples/README.md +23 -0
  280. create_leafmesh-2.4.0/create_leafmesh/templates/marketing-ops/main.py +114 -0
  281. create_leafmesh-2.4.0/create_leafmesh/templates/marketing-ops/requirements.txt +7 -0
  282. create_leafmesh-2.4.0/create_leafmesh/templates/marketing-ops/tests/__pycache__/conftest.cpython-314-pytest-9.0.2.pyc +0 -0
  283. create_leafmesh-2.4.0/create_leafmesh/templates/marketing-ops/tests/__pycache__/test_agent_logic.cpython-314-pytest-9.0.2.pyc +0 -0
  284. create_leafmesh-2.4.0/create_leafmesh/templates/marketing-ops/tests/__pycache__/test_config_shape.cpython-314-pytest-9.0.2.pyc +0 -0
  285. create_leafmesh-2.4.0/create_leafmesh/templates/marketing-ops/tests/conftest.py +38 -0
  286. create_leafmesh-2.4.0/create_leafmesh/templates/marketing-ops/tests/test_agent_logic.py +254 -0
  287. create_leafmesh-2.4.0/create_leafmesh/templates/marketing-ops/tests/test_config_shape.py +162 -0
  288. create_leafmesh-2.4.0/create_leafmesh/templates/predictive-maintenance/README.md +21 -0
  289. create_leafmesh-2.4.0/create_leafmesh/templates/predictive-maintenance/__pycache__/main.cpython-314.pyc +0 -0
  290. create_leafmesh-2.4.0/create_leafmesh/templates/predictive-maintenance/agency/__pycache__/__init__.cpython-314.pyc +0 -0
  291. create_leafmesh-2.4.0/create_leafmesh/templates/predictive-maintenance/agency/__pycache__/condition_sensor_agent.cpython-314.pyc +0 -0
  292. create_leafmesh-2.4.0/create_leafmesh/templates/predictive-maintenance/agency/__pycache__/equipment_lifecycle_agent.cpython-314.pyc +0 -0
  293. create_leafmesh-2.4.0/create_leafmesh/templates/predictive-maintenance/agency/__pycache__/failure_predictor_agent.cpython-314.pyc +0 -0
  294. create_leafmesh-2.4.0/create_leafmesh/templates/predictive-maintenance/agency/__pycache__/maintenance_records_agent.cpython-314.pyc +0 -0
  295. create_leafmesh-2.4.0/create_leafmesh/templates/predictive-maintenance/agency/__pycache__/safety_incident_reporter_agent.cpython-314.pyc +0 -0
  296. create_leafmesh-2.4.0/create_leafmesh/templates/predictive-maintenance/agency/__pycache__/spare_parts_forecaster_agent.cpython-314.pyc +0 -0
  297. create_leafmesh-2.4.0/create_leafmesh/templates/predictive-maintenance/agency/__pycache__/work_order_scheduler_agent.cpython-314.pyc +0 -0
  298. create_leafmesh-2.4.0/create_leafmesh/templates/predictive-maintenance/agency/_shared/__pycache__/__init__.cpython-314.pyc +0 -0
  299. create_leafmesh-2.4.0/create_leafmesh/templates/predictive-maintenance/agency/_shared/__pycache__/audit_logger.cpython-314.pyc +0 -0
  300. create_leafmesh-2.4.0/create_leafmesh/templates/predictive-maintenance/agency/_shared/audit_logger.py +149 -0
  301. create_leafmesh-2.4.0/create_leafmesh/templates/predictive-maintenance/agency/equipment_lifecycle_agent.py +186 -0
  302. create_leafmesh-2.4.0/create_leafmesh/templates/predictive-maintenance/agency/maintenance_records_agent.py +355 -0
  303. create_leafmesh-2.4.0/create_leafmesh/templates/predictive-maintenance/agency/safety_incident_reporter_agent.py +177 -0
  304. create_leafmesh-2.4.0/create_leafmesh/templates/predictive-maintenance/agency/work_order_scheduler_agent.py +139 -0
  305. create_leafmesh-2.4.0/create_leafmesh/templates/predictive-maintenance/configs/config.yaml +630 -0
  306. create_leafmesh-2.4.0/create_leafmesh/templates/predictive-maintenance/logs/leafmesh_2026-06-11.log +88 -0
  307. create_leafmesh-2.4.0/create_leafmesh/templates/predictive-maintenance/main.py +61 -0
  308. create_leafmesh-2.4.0/create_leafmesh/templates/predictive-maintenance/requirements.txt +6 -0
  309. create_leafmesh-2.4.0/create_leafmesh/templates/predictive-maintenance/tests/__pycache__/test_agent_logic.cpython-314-pytest-9.0.2.pyc +0 -0
  310. create_leafmesh-2.4.0/create_leafmesh/templates/predictive-maintenance/tests/__pycache__/test_config_shape.cpython-314-pytest-9.0.2.pyc +0 -0
  311. create_leafmesh-2.4.0/create_leafmesh/templates/predictive-maintenance/tests/test_agent_logic.py +248 -0
  312. create_leafmesh-2.4.0/create_leafmesh/templates/predictive-maintenance/tests/test_config_shape.py +64 -0
  313. create_leafmesh-2.4.0/create_leafmesh/templates/procurement-ops/__pycache__/main.cpython-314.pyc +0 -0
  314. create_leafmesh-2.4.0/create_leafmesh/templates/procurement-ops/agency/__pycache__/inventory_agent.cpython-314.pyc +0 -0
  315. create_leafmesh-2.4.0/create_leafmesh/templates/procurement-ops/agency/__pycache__/logistics_agent.cpython-314.pyc +0 -0
  316. create_leafmesh-2.4.0/create_leafmesh/templates/procurement-ops/agency/__pycache__/order_intake_agent.cpython-314.pyc +0 -0
  317. create_leafmesh-2.4.0/create_leafmesh/templates/procurement-ops/agency/__pycache__/purchase_order_agent.cpython-314.pyc +0 -0
  318. create_leafmesh-2.4.0/create_leafmesh/templates/procurement-ops/agency/__pycache__/supplier_agent.cpython-314.pyc +0 -0
  319. create_leafmesh-2.4.0/create_leafmesh/templates/procurement-ops/agency/__pycache__/trade_compliance_agent.cpython-314.pyc +0 -0
  320. create_leafmesh-2.4.0/create_leafmesh/templates/procurement-ops/agency/_shared/__init__.py +5 -0
  321. create_leafmesh-2.4.0/create_leafmesh/templates/procurement-ops/agency/_shared/__pycache__/__init__.cpython-314.pyc +0 -0
  322. create_leafmesh-2.4.0/create_leafmesh/templates/procurement-ops/agency/_shared/__pycache__/session_stash.cpython-314.pyc +0 -0
  323. create_leafmesh-2.4.0/create_leafmesh/templates/procurement-ops/agency/_shared/session_stash.py +53 -0
  324. create_leafmesh-2.4.0/create_leafmesh/templates/procurement-ops/agency/inventory_agent.py +384 -0
  325. create_leafmesh-2.4.0/create_leafmesh/templates/procurement-ops/agency/logistics_agent.py +420 -0
  326. create_leafmesh-2.4.0/create_leafmesh/templates/procurement-ops/agency/order_intake_agent.py +260 -0
  327. create_leafmesh-2.4.0/create_leafmesh/templates/procurement-ops/agency/purchase_order_agent.py +439 -0
  328. create_leafmesh-2.4.0/create_leafmesh/templates/procurement-ops/agency/supplier_agent.py +239 -0
  329. create_leafmesh-2.4.0/create_leafmesh/templates/procurement-ops/agency/trade_compliance_agent.py +228 -0
  330. create_leafmesh-2.4.0/create_leafmesh/templates/procurement-ops/configs/config.yaml +511 -0
  331. create_leafmesh-2.4.0/create_leafmesh/templates/procurement-ops/requirements.txt +14 -0
  332. create_leafmesh-2.4.0/create_leafmesh/templates/production-planning/__pycache__/main.cpython-314.pyc +0 -0
  333. create_leafmesh-2.4.0/create_leafmesh/templates/production-planning/agency/__pycache__/__init__.cpython-314.pyc +0 -0
  334. create_leafmesh-2.4.0/create_leafmesh/templates/production-planning/agency/__pycache__/capacity_model_agent.cpython-314.pyc +0 -0
  335. create_leafmesh-2.4.0/create_leafmesh/templates/production-planning/agency/__pycache__/capacity_what_if_agent.cpython-314.pyc +0 -0
  336. create_leafmesh-2.4.0/create_leafmesh/templates/production-planning/agency/__pycache__/constraint_flagger_agent.cpython-314.pyc +0 -0
  337. create_leafmesh-2.4.0/create_leafmesh/templates/production-planning/agency/__pycache__/demand_sensor_agent.cpython-314.pyc +0 -0
  338. create_leafmesh-2.4.0/create_leafmesh/templates/production-planning/agency/__pycache__/material_requirements_agent.cpython-314.pyc +0 -0
  339. create_leafmesh-2.4.0/create_leafmesh/templates/production-planning/agency/__pycache__/planning_analytics_agent.cpython-314.pyc +0 -0
  340. create_leafmesh-2.4.0/create_leafmesh/templates/production-planning/agency/__pycache__/release_agent.cpython-314.pyc +0 -0
  341. create_leafmesh-2.4.0/create_leafmesh/templates/production-planning/agency/__pycache__/rolling_reopt_orchestrator_agent.cpython-314.pyc +0 -0
  342. create_leafmesh-2.4.0/create_leafmesh/templates/production-planning/agency/__pycache__/scheduler_agent.cpython-314.pyc +0 -0
  343. create_leafmesh-2.4.0/create_leafmesh/templates/production-planning/agency/__pycache__/supplier_signal_agent.cpython-314.pyc +0 -0
  344. create_leafmesh-2.4.0/create_leafmesh/templates/production-planning/agency/_shared/__pycache__/__init__.cpython-314.pyc +0 -0
  345. create_leafmesh-2.4.0/create_leafmesh/templates/production-planning/agency/_shared/__pycache__/audit_logger.cpython-314.pyc +0 -0
  346. create_leafmesh-2.4.0/create_leafmesh/templates/production-planning/agency/_shared/__pycache__/session_stash.cpython-314.pyc +0 -0
  347. create_leafmesh-2.4.0/create_leafmesh/templates/production-planning/agency/_shared/audit_logger.py +149 -0
  348. create_leafmesh-2.4.0/create_leafmesh/templates/production-planning/agency/_shared/session_stash.py +53 -0
  349. create_leafmesh-2.4.0/create_leafmesh/templates/production-planning/agency/capacity_model_agent.py +60 -0
  350. create_leafmesh-2.4.0/create_leafmesh/templates/production-planning/agency/capacity_what_if_agent.py +157 -0
  351. create_leafmesh-2.4.0/create_leafmesh/templates/production-planning/agency/constraint_flagger_agent.py +102 -0
  352. create_leafmesh-2.4.0/create_leafmesh/templates/production-planning/agency/planning_analytics_agent.py +391 -0
  353. create_leafmesh-2.4.0/create_leafmesh/templates/production-planning/agency/release_agent.py +77 -0
  354. create_leafmesh-2.4.0/create_leafmesh/templates/production-planning/agency/scheduler_agent.py +72 -0
  355. create_leafmesh-2.4.0/create_leafmesh/templates/production-planning/configs/config.yaml +698 -0
  356. create_leafmesh-2.4.0/create_leafmesh/templates/production-planning/logs/leafmesh_2026-06-11.log +21 -0
  357. create_leafmesh-2.4.0/create_leafmesh/templates/production-planning/main.py +61 -0
  358. create_leafmesh-2.4.0/create_leafmesh/templates/production-planning/requirements.txt +6 -0
  359. create_leafmesh-2.4.0/create_leafmesh/templates/production-planning/tests/__pycache__/conftest.cpython-314-pytest-9.0.2.pyc +0 -0
  360. create_leafmesh-2.4.0/create_leafmesh/templates/production-planning/tests/__pycache__/test_agent_logic.cpython-314-pytest-9.0.2.pyc +0 -0
  361. create_leafmesh-2.4.0/create_leafmesh/templates/production-planning/tests/__pycache__/test_config_shape.cpython-314-pytest-9.0.2.pyc +0 -0
  362. create_leafmesh-2.4.0/create_leafmesh/templates/production-planning/tests/conftest.py +37 -0
  363. create_leafmesh-2.4.0/create_leafmesh/templates/production-planning/tests/test_agent_logic.py +115 -0
  364. create_leafmesh-2.4.0/create_leafmesh/templates/production-planning/tests/test_config_shape.py +69 -0
  365. create_leafmesh-2.4.0/create_leafmesh/templates/quality-yield/README.md +15 -0
  366. create_leafmesh-2.4.0/create_leafmesh/templates/quality-yield/__pycache__/main.cpython-314.pyc +0 -0
  367. create_leafmesh-2.4.0/create_leafmesh/templates/quality-yield/agency/__pycache__/__init__.cpython-314.pyc +0 -0
  368. create_leafmesh-2.4.0/create_leafmesh/templates/quality-yield/agency/__pycache__/corrective_action_tracker_agent.cpython-314.pyc +0 -0
  369. create_leafmesh-2.4.0/create_leafmesh/templates/quality-yield/agency/__pycache__/inspection_intake_agent.cpython-314.pyc +0 -0
  370. create_leafmesh-2.4.0/create_leafmesh/templates/quality-yield/agency/__pycache__/quality_engineer_agent.cpython-314.pyc +0 -0
  371. create_leafmesh-2.4.0/create_leafmesh/templates/quality-yield/agency/__pycache__/recall_traceability_agent.cpython-314.pyc +0 -0
  372. create_leafmesh-2.4.0/create_leafmesh/templates/quality-yield/agency/__pycache__/regulatory_compliance_agent.cpython-314.pyc +0 -0
  373. create_leafmesh-2.4.0/create_leafmesh/templates/quality-yield/agency/__pycache__/spc_monitor_agent.cpython-314.pyc +0 -0
  374. create_leafmesh-2.4.0/create_leafmesh/templates/quality-yield/agency/_shared/__pycache__/__init__.cpython-314.pyc +0 -0
  375. create_leafmesh-2.4.0/create_leafmesh/templates/quality-yield/agency/_shared/__pycache__/audit_logger.cpython-314.pyc +0 -0
  376. create_leafmesh-2.4.0/create_leafmesh/templates/quality-yield/agency/_shared/audit_logger.py +149 -0
  377. create_leafmesh-2.4.0/create_leafmesh/templates/quality-yield/agency/inspection_intake_agent.py +122 -0
  378. create_leafmesh-2.4.0/create_leafmesh/templates/quality-yield/agency/quality_engineer_agent.py +126 -0
  379. create_leafmesh-2.4.0/create_leafmesh/templates/quality-yield/agency/recall_traceability_agent.py +259 -0
  380. create_leafmesh-2.4.0/create_leafmesh/templates/quality-yield/agency/regulatory_compliance_agent.py +149 -0
  381. create_leafmesh-2.4.0/create_leafmesh/templates/quality-yield/agency/spc_monitor_agent.py +208 -0
  382. create_leafmesh-2.4.0/create_leafmesh/templates/quality-yield/configs/config.yaml +652 -0
  383. create_leafmesh-2.4.0/create_leafmesh/templates/quality-yield/examples/01_routine_inspection.json +11 -0
  384. create_leafmesh-2.4.0/create_leafmesh/templates/quality-yield/examples/02_defect_cluster.json +19 -0
  385. create_leafmesh-2.4.0/create_leafmesh/templates/quality-yield/examples/03_field_complaint_recall.json +12 -0
  386. create_leafmesh-2.4.0/create_leafmesh/templates/quality-yield/examples/README.md +23 -0
  387. create_leafmesh-2.4.0/create_leafmesh/templates/quality-yield/main.py +49 -0
  388. create_leafmesh-2.4.0/create_leafmesh/templates/quality-yield/requirements.txt +6 -0
  389. create_leafmesh-2.4.0/create_leafmesh/templates/quality-yield/tests/__pycache__/test_agent_logic.cpython-314-pytest-9.0.2.pyc +0 -0
  390. create_leafmesh-2.4.0/create_leafmesh/templates/quality-yield/tests/__pycache__/test_config_shape.cpython-314-pytest-9.0.2.pyc +0 -0
  391. create_leafmesh-2.4.0/create_leafmesh/templates/quality-yield/tests/test_agent_logic.py +199 -0
  392. create_leafmesh-2.4.0/create_leafmesh/templates/quality-yield/tests/test_config_shape.py +81 -0
  393. create_leafmesh-2.4.0/create_leafmesh/templates/quote-to-cash/README.md +14 -0
  394. create_leafmesh-2.4.0/create_leafmesh/templates/quote-to-cash/__pycache__/main.cpython-314.pyc +0 -0
  395. create_leafmesh-2.4.0/create_leafmesh/templates/quote-to-cash/agency/__pycache__/__init__.cpython-314.pyc +0 -0
  396. create_leafmesh-2.4.0/create_leafmesh/templates/quote-to-cash/agency/__pycache__/approval_router_agent.cpython-314.pyc +0 -0
  397. create_leafmesh-2.4.0/create_leafmesh/templates/quote-to-cash/agency/__pycache__/bundle_recommender_agent.cpython-314.pyc +0 -0
  398. create_leafmesh-2.4.0/create_leafmesh/templates/quote-to-cash/agency/__pycache__/competitor_watch_agent.cpython-314.pyc +0 -0
  399. create_leafmesh-2.4.0/create_leafmesh/templates/quote-to-cash/agency/__pycache__/contract_redline_tracker_agent.cpython-314.pyc +0 -0
  400. create_leafmesh-2.4.0/create_leafmesh/templates/quote-to-cash/agency/__pycache__/cost_calculator_agent.cpython-314.pyc +0 -0
  401. create_leafmesh-2.4.0/create_leafmesh/templates/quote-to-cash/agency/__pycache__/deal_compliance_agent.cpython-314.pyc +0 -0
  402. create_leafmesh-2.4.0/create_leafmesh/templates/quote-to-cash/agency/__pycache__/discount_policy_agent.cpython-314.pyc +0 -0
  403. create_leafmesh-2.4.0/create_leafmesh/templates/quote-to-cash/agency/__pycache__/quote_drafter_agent.cpython-314.pyc +0 -0
  404. create_leafmesh-2.4.0/create_leafmesh/templates/quote-to-cash/agency/__pycache__/rfq_ingester_agent.cpython-314.pyc +0 -0
  405. create_leafmesh-2.4.0/create_leafmesh/templates/quote-to-cash/agency/_shared/__pycache__/__init__.cpython-314.pyc +0 -0
  406. create_leafmesh-2.4.0/create_leafmesh/templates/quote-to-cash/agency/_shared/__pycache__/audit_logger.cpython-314.pyc +0 -0
  407. create_leafmesh-2.4.0/create_leafmesh/templates/quote-to-cash/agency/_shared/__pycache__/session_stash.cpython-314.pyc +0 -0
  408. create_leafmesh-2.4.0/create_leafmesh/templates/quote-to-cash/agency/_shared/audit_logger.py +149 -0
  409. create_leafmesh-2.4.0/create_leafmesh/templates/quote-to-cash/agency/_shared/session_stash.py +53 -0
  410. create_leafmesh-2.4.0/create_leafmesh/templates/quote-to-cash/agency/approval_router_agent.py +91 -0
  411. create_leafmesh-2.4.0/create_leafmesh/templates/quote-to-cash/agency/deal_compliance_agent.py +328 -0
  412. create_leafmesh-2.4.0/create_leafmesh/templates/quote-to-cash/agency/quote_drafter_agent.py +112 -0
  413. create_leafmesh-2.4.0/create_leafmesh/templates/quote-to-cash/configs/config.yaml +670 -0
  414. create_leafmesh-2.4.0/create_leafmesh/templates/quote-to-cash/logs/leafmesh_2026-06-11.log +16 -0
  415. create_leafmesh-2.4.0/create_leafmesh/templates/quote-to-cash/main.py +49 -0
  416. create_leafmesh-2.4.0/create_leafmesh/templates/quote-to-cash/requirements.txt +6 -0
  417. create_leafmesh-2.4.0/create_leafmesh/templates/quote-to-cash/tests/__pycache__/test_agent_logic.cpython-314-pytest-9.0.2.pyc +0 -0
  418. create_leafmesh-2.4.0/create_leafmesh/templates/quote-to-cash/tests/test_agent_logic.py +134 -0
  419. create_leafmesh-2.4.0/create_leafmesh/templates/recruiting-ops/README.md +16 -0
  420. create_leafmesh-2.4.0/create_leafmesh/templates/recruiting-ops/__pycache__/main.cpython-314.pyc +0 -0
  421. create_leafmesh-2.4.0/create_leafmesh/templates/recruiting-ops/agency/__pycache__/__init__.cpython-314.pyc +0 -0
  422. create_leafmesh-2.4.0/create_leafmesh/templates/recruiting-ops/agency/__pycache__/bias_audit_agent.cpython-314.pyc +0 -0
  423. create_leafmesh-2.4.0/create_leafmesh/templates/recruiting-ops/agency/__pycache__/correspondence_drafter_agent.cpython-314.pyc +0 -0
  424. create_leafmesh-2.4.0/create_leafmesh/templates/recruiting-ops/agency/__pycache__/hiring_assistant_agent.cpython-314.pyc +0 -0
  425. create_leafmesh-2.4.0/create_leafmesh/templates/recruiting-ops/agency/__pycache__/interview_coordinator_agent.cpython-314.pyc +0 -0
  426. create_leafmesh-2.4.0/create_leafmesh/templates/recruiting-ops/agency/__pycache__/recruiting_ops_agent.cpython-314.pyc +0 -0
  427. create_leafmesh-2.4.0/create_leafmesh/templates/recruiting-ops/agency/__pycache__/req_intake_agent.cpython-314.pyc +0 -0
  428. create_leafmesh-2.4.0/create_leafmesh/templates/recruiting-ops/agency/__pycache__/resume_screener_agent.cpython-314.pyc +0 -0
  429. create_leafmesh-2.4.0/create_leafmesh/templates/recruiting-ops/agency/__pycache__/sourcing_agent.cpython-314.pyc +0 -0
  430. create_leafmesh-2.4.0/create_leafmesh/templates/recruiting-ops/agency/_shared/__pycache__/__init__.cpython-314.pyc +0 -0
  431. create_leafmesh-2.4.0/create_leafmesh/templates/recruiting-ops/agency/_shared/__pycache__/audit_logger.cpython-314.pyc +0 -0
  432. create_leafmesh-2.4.0/create_leafmesh/templates/recruiting-ops/agency/_shared/audit_logger.py +149 -0
  433. create_leafmesh-2.4.0/create_leafmesh/templates/recruiting-ops/agency/correspondence_drafter_agent.py +204 -0
  434. create_leafmesh-2.4.0/create_leafmesh/templates/recruiting-ops/agency/hiring_assistant_agent.py +187 -0
  435. create_leafmesh-2.4.0/create_leafmesh/templates/recruiting-ops/agency/interview_coordinator_agent.py +148 -0
  436. create_leafmesh-2.4.0/create_leafmesh/templates/recruiting-ops/agency/recruiting_ops_agent.py +250 -0
  437. create_leafmesh-2.4.0/create_leafmesh/templates/recruiting-ops/configs/config.yaml +721 -0
  438. create_leafmesh-2.4.0/create_leafmesh/templates/recruiting-ops/examples/02_candidate_rejection_letter.json +14 -0
  439. create_leafmesh-2.4.0/create_leafmesh/templates/recruiting-ops/examples/03_offer_drafting.json +15 -0
  440. create_leafmesh-2.4.0/create_leafmesh/templates/recruiting-ops/examples/README.md +23 -0
  441. create_leafmesh-2.4.0/create_leafmesh/templates/recruiting-ops/logs/leafmesh_2026-06-11.log +22 -0
  442. create_leafmesh-2.4.0/create_leafmesh/templates/recruiting-ops/main.py +49 -0
  443. create_leafmesh-2.4.0/create_leafmesh/templates/recruiting-ops/requirements.txt +6 -0
  444. create_leafmesh-2.4.0/create_leafmesh/templates/recruiting-ops/tests/__pycache__/test_agent_logic.cpython-314-pytest-9.0.2.pyc +0 -0
  445. create_leafmesh-2.4.0/create_leafmesh/templates/recruiting-ops/tests/__pycache__/test_config_shape.cpython-314-pytest-9.0.2.pyc +0 -0
  446. create_leafmesh-2.4.0/create_leafmesh/templates/recruiting-ops/tests/test_agent_logic.py +276 -0
  447. create_leafmesh-2.4.0/create_leafmesh/templates/recruiting-ops/tests/test_config_shape.py +43 -0
  448. create_leafmesh-2.4.0/create_leafmesh/templates/sales-orchestration/README.md +16 -0
  449. create_leafmesh-2.4.0/create_leafmesh/templates/sales-orchestration/__pycache__/main.cpython-314.pyc +0 -0
  450. create_leafmesh-2.4.0/create_leafmesh/templates/sales-orchestration/agency/__pycache__/__init__.cpython-314.pyc +0 -0
  451. create_leafmesh-2.4.0/create_leafmesh/templates/sales-orchestration/agency/__pycache__/abm_orchestrator_agent.cpython-314.pyc +0 -0
  452. create_leafmesh-2.4.0/create_leafmesh/templates/sales-orchestration/agency/__pycache__/deal_nurturer_agent.cpython-314.pyc +0 -0
  453. create_leafmesh-2.4.0/create_leafmesh/templates/sales-orchestration/agency/__pycache__/lead_intake_agent.cpython-314.pyc +0 -0
  454. create_leafmesh-2.4.0/create_leafmesh/templates/sales-orchestration/agency/__pycache__/lead_qualification_agent.cpython-314.pyc +0 -0
  455. create_leafmesh-2.4.0/create_leafmesh/templates/sales-orchestration/agency/__pycache__/lead_revival_agent.cpython-314.pyc +0 -0
  456. create_leafmesh-2.4.0/create_leafmesh/templates/sales-orchestration/agency/__pycache__/pipeline_health_agent.cpython-314.pyc +0 -0
  457. create_leafmesh-2.4.0/create_leafmesh/templates/sales-orchestration/agency/__pycache__/sales_research_agent.cpython-314.pyc +0 -0
  458. create_leafmesh-2.4.0/create_leafmesh/templates/sales-orchestration/agency/__pycache__/sequence_orchestrator_agent.cpython-314.pyc +0 -0
  459. create_leafmesh-2.4.0/create_leafmesh/templates/sales-orchestration/agency/_shared/__pycache__/__init__.cpython-314.pyc +0 -0
  460. create_leafmesh-2.4.0/create_leafmesh/templates/sales-orchestration/agency/_shared/__pycache__/audit_logger.cpython-314.pyc +0 -0
  461. create_leafmesh-2.4.0/create_leafmesh/templates/sales-orchestration/agency/_shared/audit_logger.py +149 -0
  462. create_leafmesh-2.4.0/create_leafmesh/templates/sales-orchestration/agency/lead_intake_agent.py +219 -0
  463. create_leafmesh-2.4.0/create_leafmesh/templates/sales-orchestration/agency/lead_qualification_agent.py +105 -0
  464. create_leafmesh-2.4.0/create_leafmesh/templates/sales-orchestration/agency/pipeline_health_agent.py +258 -0
  465. create_leafmesh-2.4.0/create_leafmesh/templates/sales-orchestration/agency/sales_research_agent.py +352 -0
  466. create_leafmesh-2.4.0/create_leafmesh/templates/sales-orchestration/agency/sequence_orchestrator_agent.py +84 -0
  467. create_leafmesh-2.4.0/create_leafmesh/templates/sales-orchestration/configs/config.yaml +805 -0
  468. create_leafmesh-2.4.0/create_leafmesh/templates/sales-orchestration/examples/01_inbound_demo_request.json +23 -0
  469. create_leafmesh-2.4.0/create_leafmesh/templates/sales-orchestration/examples/03_competitor_steal_signal.json +15 -0
  470. create_leafmesh-2.4.0/create_leafmesh/templates/sales-orchestration/examples/05_enriched_inbound_lead.json +22 -0
  471. create_leafmesh-2.4.0/create_leafmesh/templates/sales-orchestration/examples/08_competitive_intel_pull.json +21 -0
  472. create_leafmesh-2.4.0/create_leafmesh/templates/sales-orchestration/examples/README.md +23 -0
  473. create_leafmesh-2.4.0/create_leafmesh/templates/sales-orchestration/main.py +49 -0
  474. create_leafmesh-2.4.0/create_leafmesh/templates/sales-orchestration/requirements.txt +6 -0
  475. create_leafmesh-2.4.0/create_leafmesh/templates/sales-orchestration/tests/__pycache__/conftest.cpython-314-pytest-9.0.2.pyc +0 -0
  476. create_leafmesh-2.4.0/create_leafmesh/templates/sales-orchestration/tests/__pycache__/test_agent_logic.cpython-314-pytest-9.0.2.pyc +0 -0
  477. create_leafmesh-2.4.0/create_leafmesh/templates/sales-orchestration/tests/conftest.py +27 -0
  478. create_leafmesh-2.4.0/create_leafmesh/templates/sales-orchestration/tests/test_agent_logic.py +317 -0
  479. create_leafmesh-2.4.0/create_leafmesh/templates/services-delivery/README.md +59 -0
  480. create_leafmesh-2.4.0/create_leafmesh/templates/services-delivery/__pycache__/main.cpython-314.pyc +0 -0
  481. create_leafmesh-2.4.0/create_leafmesh/templates/services-delivery/agency/__pycache__/__init__.cpython-314.pyc +0 -0
  482. create_leafmesh-2.4.0/create_leafmesh/templates/services-delivery/agency/__pycache__/brief_intake_agent.cpython-314.pyc +0 -0
  483. create_leafmesh-2.4.0/create_leafmesh/templates/services-delivery/agency/__pycache__/citation_agent.cpython-314.pyc +0 -0
  484. create_leafmesh-2.4.0/create_leafmesh/templates/services-delivery/agency/__pycache__/consultant_agent.cpython-314.pyc +0 -0
  485. create_leafmesh-2.4.0/create_leafmesh/templates/services-delivery/agency/__pycache__/context_agent.cpython-314.pyc +0 -0
  486. create_leafmesh-2.4.0/create_leafmesh/templates/services-delivery/agency/__pycache__/delivery_router_agent.cpython-314.pyc +0 -0
  487. create_leafmesh-2.4.0/create_leafmesh/templates/services-delivery/agency/__pycache__/doc_extraction_agent.cpython-314.pyc +0 -0
  488. create_leafmesh-2.4.0/create_leafmesh/templates/services-delivery/agency/__pycache__/engagement_controller_agent.cpython-314.pyc +0 -0
  489. create_leafmesh-2.4.0/create_leafmesh/templates/services-delivery/agency/__pycache__/engagement_status_drafter_agent.cpython-314.pyc +0 -0
  490. create_leafmesh-2.4.0/create_leafmesh/templates/services-delivery/agency/__pycache__/performance_review_agent.cpython-314.pyc +0 -0
  491. create_leafmesh-2.4.0/create_leafmesh/templates/services-delivery/agency/__pycache__/qa_agent.cpython-314.pyc +0 -0
  492. create_leafmesh-2.4.0/create_leafmesh/templates/services-delivery/agency/__pycache__/research_agent.cpython-314.pyc +0 -0
  493. create_leafmesh-2.4.0/create_leafmesh/templates/services-delivery/agency/__pycache__/status_sweep_orchestrator_agent.cpython-314.pyc +0 -0
  494. create_leafmesh-2.4.0/create_leafmesh/templates/services-delivery/agency/_shared/__pycache__/__init__.cpython-314.pyc +0 -0
  495. create_leafmesh-2.4.0/create_leafmesh/templates/services-delivery/agency/_shared/__pycache__/audit_logger.cpython-314.pyc +0 -0
  496. create_leafmesh-2.4.0/create_leafmesh/templates/services-delivery/agency/_shared/__pycache__/session_stash.cpython-314.pyc +0 -0
  497. create_leafmesh-2.4.0/create_leafmesh/templates/services-delivery/agency/_shared/audit_logger.py +149 -0
  498. create_leafmesh-2.4.0/create_leafmesh/templates/services-delivery/agency/_shared/session_stash.py +53 -0
  499. create_leafmesh-2.4.0/create_leafmesh/templates/services-delivery/agency/brief_intake_agent.py +52 -0
  500. create_leafmesh-2.4.0/create_leafmesh/templates/services-delivery/agency/consultant_agent.py +129 -0
  501. create_leafmesh-2.4.0/create_leafmesh/templates/services-delivery/agency/delivery_router_agent.py +100 -0
  502. create_leafmesh-2.4.0/create_leafmesh/templates/services-delivery/agency/doc_extraction_agent.py +186 -0
  503. create_leafmesh-2.4.0/create_leafmesh/templates/services-delivery/agency/engagement_controller_agent.py +258 -0
  504. create_leafmesh-2.4.0/create_leafmesh/templates/services-delivery/agency/performance_review_agent.py +207 -0
  505. create_leafmesh-2.4.0/create_leafmesh/templates/services-delivery/agency/qa_agent.py +97 -0
  506. create_leafmesh-2.4.0/create_leafmesh/templates/services-delivery/agency/research_agent.py +116 -0
  507. create_leafmesh-2.4.0/create_leafmesh/templates/services-delivery/configs/config.yaml +1295 -0
  508. create_leafmesh-2.4.0/create_leafmesh/templates/services-delivery/data/time_ledger.db +0 -0
  509. create_leafmesh-2.4.0/create_leafmesh/templates/services-delivery/examples/01_new_engagement_memo.json +14 -0
  510. create_leafmesh-2.4.0/create_leafmesh/templates/services-delivery/examples/README.md +23 -0
  511. create_leafmesh-2.4.0/create_leafmesh/templates/services-delivery/logs/leafmesh_2026-06-11.log +86 -0
  512. create_leafmesh-2.4.0/create_leafmesh/templates/services-delivery/main.py +71 -0
  513. create_leafmesh-2.4.0/create_leafmesh/templates/services-delivery/requirements.txt +6 -0
  514. create_leafmesh-2.4.0/create_leafmesh/templates/services-delivery/tests/__pycache__/test_agent_logic.cpython-314-pytest-9.0.2.pyc +0 -0
  515. create_leafmesh-2.4.0/create_leafmesh/templates/services-delivery/tests/__pycache__/test_config_shape.cpython-314-pytest-9.0.2.pyc +0 -0
  516. create_leafmesh-2.4.0/create_leafmesh/templates/services-delivery/tests/test_agent_logic.py +262 -0
  517. create_leafmesh-2.4.0/create_leafmesh/templates/services-delivery/tests/test_config_shape.py +200 -0
  518. create_leafmesh-2.4.0/create_leafmesh/templates/warehouse-supply-chain/README.md +41 -0
  519. create_leafmesh-2.4.0/create_leafmesh/templates/warehouse-supply-chain/__pycache__/main.cpython-314.pyc +0 -0
  520. create_leafmesh-2.4.0/create_leafmesh/templates/warehouse-supply-chain/agency/__pycache__/__init__.cpython-314.pyc +0 -0
  521. create_leafmesh-2.4.0/create_leafmesh/templates/warehouse-supply-chain/agency/__pycache__/allocation_agent.cpython-314.pyc +0 -0
  522. create_leafmesh-2.4.0/create_leafmesh/templates/warehouse-supply-chain/agency/__pycache__/carrier_selector_agent.cpython-314.pyc +0 -0
  523. create_leafmesh-2.4.0/create_leafmesh/templates/warehouse-supply-chain/agency/__pycache__/exception_agent.cpython-314.pyc +0 -0
  524. create_leafmesh-2.4.0/create_leafmesh/templates/warehouse-supply-chain/agency/__pycache__/humanoid_status_agent.cpython-314.pyc +0 -0
  525. create_leafmesh-2.4.0/create_leafmesh/templates/warehouse-supply-chain/agency/__pycache__/inspection_humanoid.cpython-314.pyc +0 -0
  526. create_leafmesh-2.4.0/create_leafmesh/templates/warehouse-supply-chain/agency/__pycache__/inventory_agent.cpython-314.pyc +0 -0
  527. create_leafmesh-2.4.0/create_leafmesh/templates/warehouse-supply-chain/agency/__pycache__/inventory_control_agent.cpython-314.pyc +0 -0
  528. create_leafmesh-2.4.0/create_leafmesh/templates/warehouse-supply-chain/agency/__pycache__/loader_humanoid.cpython-314.pyc +0 -0
  529. create_leafmesh-2.4.0/create_leafmesh/templates/warehouse-supply-chain/agency/__pycache__/packer_humanoid.cpython-314.pyc +0 -0
  530. create_leafmesh-2.4.0/create_leafmesh/templates/warehouse-supply-chain/agency/__pycache__/picker_humanoid.cpython-314.pyc +0 -0
  531. create_leafmesh-2.4.0/create_leafmesh/templates/warehouse-supply-chain/agency/__pycache__/replenishment_planner_agent.cpython-314.pyc +0 -0
  532. create_leafmesh-2.4.0/create_leafmesh/templates/warehouse-supply-chain/agency/__pycache__/returns_handler_agent.cpython-314.pyc +0 -0
  533. create_leafmesh-2.4.0/create_leafmesh/templates/warehouse-supply-chain/agency/__pycache__/supplier_relations_agent.cpython-314.pyc +0 -0
  534. create_leafmesh-2.4.0/create_leafmesh/templates/warehouse-supply-chain/agency/_shared/__pycache__/__init__.cpython-314.pyc +0 -0
  535. create_leafmesh-2.4.0/create_leafmesh/templates/warehouse-supply-chain/agency/_shared/__pycache__/audit_logger.cpython-314.pyc +0 -0
  536. create_leafmesh-2.4.0/create_leafmesh/templates/warehouse-supply-chain/agency/_shared/audit_logger.py +149 -0
  537. create_leafmesh-2.4.0/create_leafmesh/templates/warehouse-supply-chain/agency/allocation_agent.py +100 -0
  538. create_leafmesh-2.4.0/create_leafmesh/templates/warehouse-supply-chain/agency/exception_agent.py +96 -0
  539. create_leafmesh-2.4.0/create_leafmesh/templates/warehouse-supply-chain/agency/inventory_control_agent.py +230 -0
  540. create_leafmesh-2.4.0/create_leafmesh/templates/warehouse-supply-chain/agency/supplier_relations_agent.py +565 -0
  541. create_leafmesh-2.4.0/create_leafmesh/templates/warehouse-supply-chain/configs/config.yaml +791 -0
  542. create_leafmesh-2.4.0/create_leafmesh/templates/warehouse-supply-chain/examples/01_routine_order.json +24 -0
  543. create_leafmesh-2.4.0/create_leafmesh/templates/warehouse-supply-chain/examples/README.md +23 -0
  544. create_leafmesh-2.4.0/create_leafmesh/templates/warehouse-supply-chain/logs/leafmesh_2026-06-11.log +9 -0
  545. create_leafmesh-2.4.0/create_leafmesh/templates/warehouse-supply-chain/main.py +61 -0
  546. create_leafmesh-2.4.0/create_leafmesh/templates/warehouse-supply-chain/requirements.txt +6 -0
  547. create_leafmesh-2.4.0/create_leafmesh/templates/warehouse-supply-chain/tests/__pycache__/test_agent_logic.cpython-314-pytest-9.0.2.pyc +0 -0
  548. create_leafmesh-2.4.0/create_leafmesh/templates/warehouse-supply-chain/tests/__pycache__/test_config_shape.cpython-314-pytest-9.0.2.pyc +0 -0
  549. create_leafmesh-2.4.0/create_leafmesh/templates/warehouse-supply-chain/tests/test_agent_logic.py +338 -0
  550. create_leafmesh-2.4.0/create_leafmesh/templates/warehouse-supply-chain/tests/test_config_shape.py +132 -0
  551. create_leafmesh-2.4.0/create_leafmesh.egg-info/PKG-INFO +94 -0
  552. create_leafmesh-2.4.0/create_leafmesh.egg-info/SOURCES.txt +973 -0
  553. create_leafmesh-2.4.0/pyproject.toml +26 -0
  554. create_leafmesh-2.3.2/PKG-INFO +0 -94
  555. create_leafmesh-2.3.2/create_leafmesh/__init__.py +0 -3
  556. create_leafmesh-2.3.2/create_leafmesh/templates/_inspire/agency/__pycache__/advisor_agent.cpython-314.pyc +0 -0
  557. create_leafmesh-2.3.2/create_leafmesh/templates/_inspire/agency/__pycache__/fallback_researcher_agent.cpython-314.pyc +0 -0
  558. create_leafmesh-2.3.2/create_leafmesh/templates/_inspire/agency/__pycache__/greeter_agent.cpython-314.pyc +0 -0
  559. create_leafmesh-2.3.2/create_leafmesh/templates/_inspire/agency/__pycache__/processor_agent.cpython-314.pyc +0 -0
  560. create_leafmesh-2.3.2/create_leafmesh/templates/_inspire/agency/__pycache__/researcher_agent.cpython-314.pyc +0 -0
  561. create_leafmesh-2.3.2/create_leafmesh/templates/_inspire/agency/__pycache__/risk_scorer_agent.cpython-314.pyc +0 -0
  562. create_leafmesh-2.3.2/create_leafmesh/templates/_inspire/agency/advisor_agent.py +0 -151
  563. create_leafmesh-2.3.2/create_leafmesh/templates/_inspire/agency/fallback_researcher_agent.py +0 -80
  564. create_leafmesh-2.3.2/create_leafmesh/templates/_inspire/agency/greeter_agent.py +0 -91
  565. create_leafmesh-2.3.2/create_leafmesh/templates/_inspire/agency/processor_agent.py +0 -120
  566. create_leafmesh-2.3.2/create_leafmesh/templates/_inspire/agency/researcher_agent.py +0 -114
  567. create_leafmesh-2.3.2/create_leafmesh/templates/_inspire/agency/risk_scorer_agent.py +0 -174
  568. create_leafmesh-2.3.2/create_leafmesh/templates/_inspire/configs/config.yaml +0 -1257
  569. create_leafmesh-2.3.2/create_leafmesh/templates/_inspire/requirements.txt +0 -10
  570. create_leafmesh-2.3.2/create_leafmesh/templates/_registry.yaml +0 -415
  571. create_leafmesh-2.3.2/create_leafmesh/templates/bd-proposals/README.md +0 -11
  572. create_leafmesh-2.3.2/create_leafmesh/templates/bd-proposals/agency/__pycache__/__init__.cpython-314.pyc +0 -0
  573. create_leafmesh-2.3.2/create_leafmesh/templates/bd-proposals/agency/__pycache__/compliance_reviewer_agent.cpython-314.pyc +0 -0
  574. create_leafmesh-2.3.2/create_leafmesh/templates/bd-proposals/agency/__pycache__/contract_review_agent.cpython-314.pyc +0 -0
  575. create_leafmesh-2.3.2/create_leafmesh/templates/bd-proposals/agency/__pycache__/contract_search_agent.cpython-314.pyc +0 -0
  576. create_leafmesh-2.3.2/create_leafmesh/templates/bd-proposals/agency/__pycache__/doc_extraction_agent.cpython-314.pyc +0 -0
  577. create_leafmesh-2.3.2/create_leafmesh/templates/bd-proposals/agency/__pycache__/past_proposal_retriever_agent.cpython-314.pyc +0 -0
  578. create_leafmesh-2.3.2/create_leafmesh/templates/bd-proposals/agency/__pycache__/pricing_configurator_agent.cpython-314.pyc +0 -0
  579. create_leafmesh-2.3.2/create_leafmesh/templates/bd-proposals/agency/__pycache__/rfp_scout_agent.cpython-314.pyc +0 -0
  580. create_leafmesh-2.3.2/create_leafmesh/templates/bd-proposals/agency/_shared/audit_logger.py +0 -47
  581. create_leafmesh-2.3.2/create_leafmesh/templates/bd-proposals/agency/bid_no_bid_decisioner_agent.py +0 -87
  582. create_leafmesh-2.3.2/create_leafmesh/templates/bd-proposals/agency/competitor_intel_archive_agent.py +0 -136
  583. create_leafmesh-2.3.2/create_leafmesh/templates/bd-proposals/agency/compliance_reviewer_agent.py +0 -48
  584. create_leafmesh-2.3.2/create_leafmesh/templates/bd-proposals/agency/contract_review_agent.py +0 -162
  585. create_leafmesh-2.3.2/create_leafmesh/templates/bd-proposals/agency/contract_search_agent.py +0 -148
  586. create_leafmesh-2.3.2/create_leafmesh/templates/bd-proposals/agency/doc_extraction_agent.py +0 -115
  587. create_leafmesh-2.3.2/create_leafmesh/templates/bd-proposals/agency/past_proposal_retriever_agent.py +0 -30
  588. create_leafmesh-2.3.2/create_leafmesh/templates/bd-proposals/agency/rfp_ingester_agent.py +0 -31
  589. create_leafmesh-2.3.2/create_leafmesh/templates/bd-proposals/agency/rfp_scout_agent.py +0 -166
  590. create_leafmesh-2.3.2/create_leafmesh/templates/bd-proposals/agency/win_loss_analyzer_agent.py +0 -39
  591. create_leafmesh-2.3.2/create_leafmesh/templates/bd-proposals/configs/config.yaml +0 -819
  592. create_leafmesh-2.3.2/create_leafmesh/templates/bd-proposals/examples/01_new_rfp_received.json +0 -13
  593. create_leafmesh-2.3.2/create_leafmesh/templates/bd-proposals/examples/02_win_post_mortem.json +0 -23
  594. create_leafmesh-2.3.2/create_leafmesh/templates/bd-proposals/examples/README.md +0 -23
  595. create_leafmesh-2.3.2/create_leafmesh/templates/bd-proposals/logs/leafmesh_2026-06-09.log +0 -24
  596. create_leafmesh-2.3.2/create_leafmesh/templates/bd-proposals/logs/leafmesh_2026-06-10.log +0 -6
  597. create_leafmesh-2.3.2/create_leafmesh/templates/bd-proposals/main.py +0 -45
  598. create_leafmesh-2.3.2/create_leafmesh/templates/bd-proposals/requirements.txt +0 -3
  599. create_leafmesh-2.3.2/create_leafmesh/templates/bd-proposals/tests/__pycache__/test_agent_logic.cpython-314-pytest-9.0.2.pyc +0 -0
  600. create_leafmesh-2.3.2/create_leafmesh/templates/bd-proposals/tests/test_agent_logic.py +0 -62
  601. create_leafmesh-2.3.2/create_leafmesh/templates/bench-management/README.md +0 -12
  602. create_leafmesh-2.3.2/create_leafmesh/templates/bench-management/agency/__pycache__/__init__.cpython-314.pyc +0 -0
  603. create_leafmesh-2.3.2/create_leafmesh/templates/bench-management/agency/__pycache__/allocation_planner_agent.cpython-314.pyc +0 -0
  604. create_leafmesh-2.3.2/create_leafmesh/templates/bench-management/agency/_shared/audit_logger.py +0 -47
  605. create_leafmesh-2.3.2/create_leafmesh/templates/bench-management/agency/allocation_planner_agent.py +0 -32
  606. create_leafmesh-2.3.2/create_leafmesh/templates/bench-management/agency/capacity_forecaster_agent.py +0 -27
  607. create_leafmesh-2.3.2/create_leafmesh/templates/bench-management/agency/career_path_recommender_agent.py +0 -54
  608. create_leafmesh-2.3.2/create_leafmesh/templates/bench-management/agency/esat_survey_agent.py +0 -205
  609. create_leafmesh-2.3.2/create_leafmesh/templates/bench-management/agency/idle_detector_agent.py +0 -19
  610. create_leafmesh-2.3.2/create_leafmesh/templates/bench-management/agency/performance_review_agent.py +0 -153
  611. create_leafmesh-2.3.2/create_leafmesh/templates/bench-management/agency/reskilling_recommender_agent.py +0 -20
  612. create_leafmesh-2.3.2/create_leafmesh/templates/bench-management/agency/skills_inventory_agent.py +0 -138
  613. create_leafmesh-2.3.2/create_leafmesh/templates/bench-management/agency/skills_matcher_agent.py +0 -44
  614. create_leafmesh-2.3.2/create_leafmesh/templates/bench-management/agency/utilisation_calculator_agent.py +0 -145
  615. create_leafmesh-2.3.2/create_leafmesh/templates/bench-management/configs/config.yaml +0 -669
  616. create_leafmesh-2.3.2/create_leafmesh/templates/bench-management/examples/01_new_project_kickoff.json +0 -19
  617. create_leafmesh-2.3.2/create_leafmesh/templates/bench-management/examples/02_weekly_bench_review.json +0 -10
  618. create_leafmesh-2.3.2/create_leafmesh/templates/bench-management/examples/03_promotion_readiness.json +0 -14
  619. create_leafmesh-2.3.2/create_leafmesh/templates/bench-management/examples/README.md +0 -23
  620. create_leafmesh-2.3.2/create_leafmesh/templates/bench-management/logs/leafmesh_2026-06-09.log +0 -6
  621. create_leafmesh-2.3.2/create_leafmesh/templates/bench-management/logs/leafmesh_2026-06-10.log +0 -2
  622. create_leafmesh-2.3.2/create_leafmesh/templates/bench-management/main.py +0 -45
  623. create_leafmesh-2.3.2/create_leafmesh/templates/bench-management/requirements.txt +0 -3
  624. create_leafmesh-2.3.2/create_leafmesh/templates/bench-management/tests/__pycache__/conftest.cpython-314-pytest-9.0.2.pyc +0 -0
  625. create_leafmesh-2.3.2/create_leafmesh/templates/bench-management/tests/__pycache__/test_agent_logic.cpython-314-pytest-9.0.2.pyc +0 -0
  626. create_leafmesh-2.3.2/create_leafmesh/templates/bench-management/tests/conftest.py +0 -20
  627. create_leafmesh-2.3.2/create_leafmesh/templates/bench-management/tests/test_agent_logic.py +0 -31
  628. create_leafmesh-2.3.2/create_leafmesh/templates/claude_skills/leafmesh/SKILL.md +0 -2554
  629. create_leafmesh-2.3.2/create_leafmesh/templates/customer-success/agency/__init__.py +0 -6
  630. create_leafmesh-2.3.2/create_leafmesh/templates/customer-success/agency/__pycache__/__init__.cpython-314.pyc +0 -0
  631. create_leafmesh-2.3.2/create_leafmesh/templates/customer-success/agency/__pycache__/competitor_intel_agent.cpython-314.pyc +0 -0
  632. create_leafmesh-2.3.2/create_leafmesh/templates/customer-success/agency/__pycache__/customer_onboarding_agent.cpython-314.pyc +0 -0
  633. create_leafmesh-2.3.2/create_leafmesh/templates/customer-success/agency/__pycache__/exec_alignment_agent.cpython-314.pyc +0 -0
  634. create_leafmesh-2.3.2/create_leafmesh/templates/customer-success/agency/__pycache__/health_score_agent.cpython-314.pyc +0 -0
  635. create_leafmesh-2.3.2/create_leafmesh/templates/customer-success/agency/__pycache__/playbook_trigger_agent.cpython-314.pyc +0 -0
  636. create_leafmesh-2.3.2/create_leafmesh/templates/customer-success/agency/__pycache__/renewal_forecaster_agent.cpython-314.pyc +0 -0
  637. create_leafmesh-2.3.2/create_leafmesh/templates/customer-success/agency/__pycache__/risk_detector_agent.cpython-314.pyc +0 -0
  638. create_leafmesh-2.3.2/create_leafmesh/templates/customer-success/agency/__pycache__/save_play_agent.cpython-314.pyc +0 -0
  639. create_leafmesh-2.3.2/create_leafmesh/templates/customer-success/agency/_shared/audit_logger.py +0 -72
  640. create_leafmesh-2.3.2/create_leafmesh/templates/customer-success/agency/competitor_intel_agent.py +0 -215
  641. create_leafmesh-2.3.2/create_leafmesh/templates/customer-success/agency/customer_onboarding_agent.py +0 -278
  642. create_leafmesh-2.3.2/create_leafmesh/templates/customer-success/agency/exec_alignment_agent.py +0 -69
  643. create_leafmesh-2.3.2/create_leafmesh/templates/customer-success/agency/expansion_signal_agent.py +0 -111
  644. create_leafmesh-2.3.2/create_leafmesh/templates/customer-success/agency/health_score_agent.py +0 -85
  645. create_leafmesh-2.3.2/create_leafmesh/templates/customer-success/agency/health_score_explainer_agent.py +0 -50
  646. create_leafmesh-2.3.2/create_leafmesh/templates/customer-success/agency/health_sweep_orchestrator_agent.py +0 -38
  647. create_leafmesh-2.3.2/create_leafmesh/templates/customer-success/agency/renewal_forecaster_agent.py +0 -79
  648. create_leafmesh-2.3.2/create_leafmesh/templates/customer-success/agency/renewal_window_monitor_agent.py +0 -44
  649. create_leafmesh-2.3.2/create_leafmesh/templates/customer-success/agency/risk_detector_agent.py +0 -123
  650. create_leafmesh-2.3.2/create_leafmesh/templates/customer-success/agency/save_play_agent.py +0 -94
  651. create_leafmesh-2.3.2/create_leafmesh/templates/customer-success/agency/usage_analytics_agent.py +0 -164
  652. create_leafmesh-2.3.2/create_leafmesh/templates/customer-success/configs/config.yaml +0 -1349
  653. create_leafmesh-2.3.2/create_leafmesh/templates/customer-success/examples/02_billing_failed_payment.json +0 -19
  654. create_leafmesh-2.3.2/create_leafmesh/templates/customer-success/examples/03_renewal_window_60d.json +0 -21
  655. create_leafmesh-2.3.2/create_leafmesh/templates/customer-success/examples/04_executive_change.json +0 -26
  656. create_leafmesh-2.3.2/create_leafmesh/templates/customer-success/examples/README.md +0 -23
  657. create_leafmesh-2.3.2/create_leafmesh/templates/customer-success/logs/leafmesh_2026-06-09.log +0 -108
  658. create_leafmesh-2.3.2/create_leafmesh/templates/customer-success/logs/leafmesh_2026-06-10.log +0 -108
  659. create_leafmesh-2.3.2/create_leafmesh/templates/customer-success/main.py +0 -116
  660. create_leafmesh-2.3.2/create_leafmesh/templates/customer-success/requirements.txt +0 -4
  661. create_leafmesh-2.3.2/create_leafmesh/templates/customer-success/tests/__pycache__/test_agent_logic.cpython-314-pytest-9.0.2.pyc +0 -0
  662. create_leafmesh-2.3.2/create_leafmesh/templates/customer-success/tests/__pycache__/test_config_shape.cpython-314-pytest-9.0.2.pyc +0 -0
  663. create_leafmesh-2.3.2/create_leafmesh/templates/customer-success/tests/test_agent_logic.py +0 -220
  664. create_leafmesh-2.3.2/create_leafmesh/templates/customer-success/tests/test_config_shape.py +0 -160
  665. create_leafmesh-2.3.2/create_leafmesh/templates/customer-support/README.md +0 -52
  666. create_leafmesh-2.3.2/create_leafmesh/templates/customer-support/agency/__pycache__/__init__.cpython-314.pyc +0 -0
  667. create_leafmesh-2.3.2/create_leafmesh/templates/customer-support/agency/__pycache__/crm_case_generator_agent.cpython-314.pyc +0 -0
  668. create_leafmesh-2.3.2/create_leafmesh/templates/customer-support/agency/__pycache__/cross_channel_agent.cpython-314.pyc +0 -0
  669. create_leafmesh-2.3.2/create_leafmesh/templates/customer-support/agency/__pycache__/knowledge_agent.cpython-314.pyc +0 -0
  670. create_leafmesh-2.3.2/create_leafmesh/templates/customer-support/agency/__pycache__/phone_support_agent.cpython-314.pyc +0 -0
  671. create_leafmesh-2.3.2/create_leafmesh/templates/customer-support/agency/__pycache__/qa_agent.cpython-314.pyc +0 -0
  672. create_leafmesh-2.3.2/create_leafmesh/templates/customer-support/agency/__pycache__/sentiment_agent.cpython-314.pyc +0 -0
  673. create_leafmesh-2.3.2/create_leafmesh/templates/customer-support/agency/__pycache__/ticket_intake_agent.cpython-314.pyc +0 -0
  674. create_leafmesh-2.3.2/create_leafmesh/templates/customer-support/agency/__pycache__/triage_agent.cpython-314.pyc +0 -0
  675. create_leafmesh-2.3.2/create_leafmesh/templates/customer-support/agency/_shared/audit_logger.py +0 -53
  676. create_leafmesh-2.3.2/create_leafmesh/templates/customer-support/agency/crm_case_generator_agent.py +0 -206
  677. create_leafmesh-2.3.2/create_leafmesh/templates/customer-support/agency/cross_channel_agent.py +0 -171
  678. create_leafmesh-2.3.2/create_leafmesh/templates/customer-support/agency/csat_collector_agent.py +0 -150
  679. create_leafmesh-2.3.2/create_leafmesh/templates/customer-support/agency/kb_gap_filler_agent.py +0 -46
  680. create_leafmesh-2.3.2/create_leafmesh/templates/customer-support/agency/knowledge_agent.py +0 -47
  681. create_leafmesh-2.3.2/create_leafmesh/templates/customer-support/agency/phone_support_agent.py +0 -176
  682. create_leafmesh-2.3.2/create_leafmesh/templates/customer-support/agency/qa_agent.py +0 -74
  683. create_leafmesh-2.3.2/create_leafmesh/templates/customer-support/agency/response_agent.py +0 -41
  684. create_leafmesh-2.3.2/create_leafmesh/templates/customer-support/agency/ticket_clustering_agent.py +0 -151
  685. create_leafmesh-2.3.2/create_leafmesh/templates/customer-support/agency/ticket_intake_agent.py +0 -49
  686. create_leafmesh-2.3.2/create_leafmesh/templates/customer-support/agency/triage_agent.py +0 -82
  687. create_leafmesh-2.3.2/create_leafmesh/templates/customer-support/configs/config.yaml +0 -1018
  688. create_leafmesh-2.3.2/create_leafmesh/templates/customer-support/logs/leafmesh_2026-06-09.log +0 -76
  689. create_leafmesh-2.3.2/create_leafmesh/templates/customer-support/logs/leafmesh_2026-06-10.log +0 -38
  690. create_leafmesh-2.3.2/create_leafmesh/templates/customer-support/main.py +0 -58
  691. create_leafmesh-2.3.2/create_leafmesh/templates/customer-support/requirements.txt +0 -3
  692. create_leafmesh-2.3.2/create_leafmesh/templates/customer-support/tests/__pycache__/test_agent_logic.cpython-314-pytest-9.0.2.pyc +0 -0
  693. create_leafmesh-2.3.2/create_leafmesh/templates/customer-support/tests/__pycache__/test_config_shape.cpython-314-pytest-9.0.2.pyc +0 -0
  694. create_leafmesh-2.3.2/create_leafmesh/templates/customer-support/tests/test_agent_logic.py +0 -124
  695. create_leafmesh-2.3.2/create_leafmesh/templates/customer-support/tests/test_config_shape.py +0 -96
  696. create_leafmesh-2.3.2/create_leafmesh/templates/engineering-sdlc/agency/__pycache__/__init__.cpython-314.pyc +0 -0
  697. create_leafmesh-2.3.2/create_leafmesh/templates/engineering-sdlc/agency/__pycache__/code_reviewer_agent.cpython-314.pyc +0 -0
  698. create_leafmesh-2.3.2/create_leafmesh/templates/engineering-sdlc/agency/__pycache__/junior_engineer_agent.cpython-314.pyc +0 -0
  699. create_leafmesh-2.3.2/create_leafmesh/templates/engineering-sdlc/agency/__pycache__/regulatory_monitor_agent.cpython-314.pyc +0 -0
  700. create_leafmesh-2.3.2/create_leafmesh/templates/engineering-sdlc/agency/__pycache__/spec_agent.cpython-314.pyc +0 -0
  701. create_leafmesh-2.3.2/create_leafmesh/templates/engineering-sdlc/agency/_shared/audit_logger.py +0 -53
  702. create_leafmesh-2.3.2/create_leafmesh/templates/engineering-sdlc/agency/code_reviewer_agent.py +0 -71
  703. create_leafmesh-2.3.2/create_leafmesh/templates/engineering-sdlc/agency/junior_engineer_agent.py +0 -50
  704. create_leafmesh-2.3.2/create_leafmesh/templates/engineering-sdlc/agency/spec_agent.py +0 -59
  705. create_leafmesh-2.3.2/create_leafmesh/templates/engineering-sdlc/configs/config.yaml +0 -820
  706. create_leafmesh-2.3.2/create_leafmesh/templates/engineering-sdlc/main.py +0 -58
  707. create_leafmesh-2.3.2/create_leafmesh/templates/engineering-sdlc/requirements.txt +0 -3
  708. create_leafmesh-2.3.2/create_leafmesh/templates/finance-ops/README.md +0 -188
  709. create_leafmesh-2.3.2/create_leafmesh/templates/finance-ops/agency/__pycache__/__init__.cpython-314.pyc +0 -0
  710. create_leafmesh-2.3.2/create_leafmesh/templates/finance-ops/agency/__pycache__/approval_router_agent.cpython-314.pyc +0 -0
  711. create_leafmesh-2.3.2/create_leafmesh/templates/finance-ops/agency/__pycache__/fraud_check_agent.cpython-314.pyc +0 -0
  712. create_leafmesh-2.3.2/create_leafmesh/templates/finance-ops/agency/__pycache__/invoice_intake_agent.cpython-314.pyc +0 -0
  713. create_leafmesh-2.3.2/create_leafmesh/templates/finance-ops/agency/__pycache__/kyc_processing_agent.cpython-314.pyc +0 -0
  714. create_leafmesh-2.3.2/create_leafmesh/templates/finance-ops/agency/__pycache__/loan_origination_agent.cpython-314.pyc +0 -0
  715. create_leafmesh-2.3.2/create_leafmesh/templates/finance-ops/agency/__pycache__/loan_servicing_agent.cpython-314.pyc +0 -0
  716. create_leafmesh-2.3.2/create_leafmesh/templates/finance-ops/agency/__pycache__/po_match_agent.cpython-314.pyc +0 -0
  717. create_leafmesh-2.3.2/create_leafmesh/templates/finance-ops/agency/__pycache__/reconciliation_agent.cpython-314.pyc +0 -0
  718. create_leafmesh-2.3.2/create_leafmesh/templates/finance-ops/agency/__pycache__/regulatory_monitor_agent.cpython-314.pyc +0 -0
  719. create_leafmesh-2.3.2/create_leafmesh/templates/finance-ops/agency/_shared/audit_logger.py +0 -91
  720. create_leafmesh-2.3.2/create_leafmesh/templates/finance-ops/agency/_shared/erp_poster.py +0 -135
  721. create_leafmesh-2.3.2/create_leafmesh/templates/finance-ops/agency/approval_router_agent.py +0 -83
  722. create_leafmesh-2.3.2/create_leafmesh/templates/finance-ops/agency/duplicate_detector_agent.py +0 -160
  723. create_leafmesh-2.3.2/create_leafmesh/templates/finance-ops/agency/erp_poster_agent.py +0 -36
  724. create_leafmesh-2.3.2/create_leafmesh/templates/finance-ops/agency/exception_drafter_agent.py +0 -56
  725. create_leafmesh-2.3.2/create_leafmesh/templates/finance-ops/agency/extraction_agent.py +0 -80
  726. create_leafmesh-2.3.2/create_leafmesh/templates/finance-ops/agency/fraud_check_agent.py +0 -81
  727. create_leafmesh-2.3.2/create_leafmesh/templates/finance-ops/agency/gl_coding_agent.py +0 -53
  728. create_leafmesh-2.3.2/create_leafmesh/templates/finance-ops/agency/invoice_intake_agent.py +0 -75
  729. create_leafmesh-2.3.2/create_leafmesh/templates/finance-ops/agency/kyc_processing_agent.py +0 -159
  730. create_leafmesh-2.3.2/create_leafmesh/templates/finance-ops/agency/loan_origination_agent.py +0 -192
  731. create_leafmesh-2.3.2/create_leafmesh/templates/finance-ops/agency/payment_scheduler_agent.py +0 -151
  732. create_leafmesh-2.3.2/create_leafmesh/templates/finance-ops/agency/po_match_agent.py +0 -73
  733. create_leafmesh-2.3.2/create_leafmesh/templates/finance-ops/agency/reconciliation_agent.py +0 -59
  734. create_leafmesh-2.3.2/create_leafmesh/templates/finance-ops/agency/vendor_onboarding_agent.py +0 -183
  735. create_leafmesh-2.3.2/create_leafmesh/templates/finance-ops/agency/vendor_query_handler_agent.py +0 -77
  736. create_leafmesh-2.3.2/create_leafmesh/templates/finance-ops/configs/config.yaml +0 -1452
  737. create_leafmesh-2.3.2/create_leafmesh/templates/finance-ops/examples/02_fraud_signal_round_number.json +0 -26
  738. create_leafmesh-2.3.2/create_leafmesh/templates/finance-ops/examples/03_po_mismatch_exception.json +0 -26
  739. create_leafmesh-2.3.2/create_leafmesh/templates/finance-ops/examples/05_vendor_inquiry.json +0 -14
  740. create_leafmesh-2.3.2/create_leafmesh/templates/finance-ops/examples/README.md +0 -62
  741. create_leafmesh-2.3.2/create_leafmesh/templates/finance-ops/logs/leafmesh_2026-06-09.log +0 -57
  742. create_leafmesh-2.3.2/create_leafmesh/templates/finance-ops/logs/leafmesh_2026-06-10.log +0 -38
  743. create_leafmesh-2.3.2/create_leafmesh/templates/finance-ops/main.py +0 -152
  744. create_leafmesh-2.3.2/create_leafmesh/templates/finance-ops/requirements.txt +0 -7
  745. create_leafmesh-2.3.2/create_leafmesh/templates/finance-ops/tests/__pycache__/conftest.cpython-314-pytest-9.0.2.pyc +0 -0
  746. create_leafmesh-2.3.2/create_leafmesh/templates/finance-ops/tests/__pycache__/test_agent_logic.cpython-314-pytest-9.0.2.pyc +0 -0
  747. create_leafmesh-2.3.2/create_leafmesh/templates/finance-ops/tests/__pycache__/test_config_shape.cpython-314-pytest-9.0.2.pyc +0 -0
  748. create_leafmesh-2.3.2/create_leafmesh/templates/finance-ops/tests/conftest.py +0 -31
  749. create_leafmesh-2.3.2/create_leafmesh/templates/finance-ops/tests/test_agent_logic.py +0 -171
  750. create_leafmesh-2.3.2/create_leafmesh/templates/finance-ops/tests/test_config_shape.py +0 -192
  751. create_leafmesh-2.3.2/create_leafmesh/templates/infra-cost-ops/README.md +0 -11
  752. create_leafmesh-2.3.2/create_leafmesh/templates/infra-cost-ops/agency/__pycache__/__init__.cpython-314.pyc +0 -0
  753. create_leafmesh-2.3.2/create_leafmesh/templates/infra-cost-ops/agency/__pycache__/iac_drift_agent.cpython-314.pyc +0 -0
  754. create_leafmesh-2.3.2/create_leafmesh/templates/infra-cost-ops/agency/__pycache__/right_sizer_agent.cpython-314.pyc +0 -0
  755. create_leafmesh-2.3.2/create_leafmesh/templates/infra-cost-ops/agency/_shared/audit_logger.py +0 -47
  756. create_leafmesh-2.3.2/create_leafmesh/templates/infra-cost-ops/agency/budget_alert_agent.py +0 -167
  757. create_leafmesh-2.3.2/create_leafmesh/templates/infra-cost-ops/agency/commitment_utilisation_agent.py +0 -35
  758. create_leafmesh-2.3.2/create_leafmesh/templates/infra-cost-ops/agency/cost_anomaly_agent.py +0 -46
  759. create_leafmesh-2.3.2/create_leafmesh/templates/infra-cost-ops/agency/cost_tuner_agent.py +0 -20
  760. create_leafmesh-2.3.2/create_leafmesh/templates/infra-cost-ops/agency/regulatory_monitor_agent.py +0 -184
  761. create_leafmesh-2.3.2/create_leafmesh/templates/infra-cost-ops/agency/reserved_capacity_planner_agent.py +0 -18
  762. create_leafmesh-2.3.2/create_leafmesh/templates/infra-cost-ops/agency/right_sizer_agent.py +0 -33
  763. create_leafmesh-2.3.2/create_leafmesh/templates/infra-cost-ops/agency/tag_compliance_agent.py +0 -136
  764. create_leafmesh-2.3.2/create_leafmesh/templates/infra-cost-ops/configs/config.yaml +0 -527
  765. create_leafmesh-2.3.2/create_leafmesh/templates/infra-cost-ops/examples/02_savings_plan_under_utilised.json +0 -13
  766. create_leafmesh-2.3.2/create_leafmesh/templates/infra-cost-ops/examples/03_ri_expiry_30d.json +0 -14
  767. create_leafmesh-2.3.2/create_leafmesh/templates/infra-cost-ops/examples/README.md +0 -23
  768. create_leafmesh-2.3.2/create_leafmesh/templates/infra-cost-ops/logs/leafmesh_2026-06-09.log +0 -12
  769. create_leafmesh-2.3.2/create_leafmesh/templates/infra-cost-ops/logs/leafmesh_2026-06-10.log +0 -4
  770. create_leafmesh-2.3.2/create_leafmesh/templates/infra-cost-ops/main.py +0 -45
  771. create_leafmesh-2.3.2/create_leafmesh/templates/infra-cost-ops/requirements.txt +0 -3
  772. create_leafmesh-2.3.2/create_leafmesh/templates/infra-cost-ops/tests/__pycache__/test_agent_logic.cpython-314-pytest-9.0.2.pyc +0 -0
  773. create_leafmesh-2.3.2/create_leafmesh/templates/infra-cost-ops/tests/__pycache__/test_config_shape.cpython-314-pytest-9.0.2.pyc +0 -0
  774. create_leafmesh-2.3.2/create_leafmesh/templates/infra-cost-ops/tests/test_agent_logic.py +0 -51
  775. create_leafmesh-2.3.2/create_leafmesh/templates/infra-cost-ops/tests/test_config_shape.py +0 -40
  776. create_leafmesh-2.3.2/create_leafmesh/templates/marketing-ops/README.md +0 -188
  777. create_leafmesh-2.3.2/create_leafmesh/templates/marketing-ops/agency/__pycache__/__init__.cpython-314.pyc +0 -0
  778. create_leafmesh-2.3.2/create_leafmesh/templates/marketing-ops/agency/__pycache__/attribution_agent.cpython-314.pyc +0 -0
  779. create_leafmesh-2.3.2/create_leafmesh/templates/marketing-ops/agency/__pycache__/audience_intelligence_agent.cpython-314.pyc +0 -0
  780. create_leafmesh-2.3.2/create_leafmesh/templates/marketing-ops/agency/__pycache__/brief_intake_agent.cpython-314.pyc +0 -0
  781. create_leafmesh-2.3.2/create_leafmesh/templates/marketing-ops/agency/__pycache__/campaign_orchestrator_agent.cpython-314.pyc +0 -0
  782. create_leafmesh-2.3.2/create_leafmesh/templates/marketing-ops/agency/__pycache__/campaign_strategist_agent.cpython-314.pyc +0 -0
  783. create_leafmesh-2.3.2/create_leafmesh/templates/marketing-ops/agency/__pycache__/competitor_intel_agent.cpython-314.pyc +0 -0
  784. create_leafmesh-2.3.2/create_leafmesh/templates/marketing-ops/agency/__pycache__/compliance_reviewer_agent.cpython-314.pyc +0 -0
  785. create_leafmesh-2.3.2/create_leafmesh/templates/marketing-ops/agency/__pycache__/copywriter_agent.cpython-314.pyc +0 -0
  786. create_leafmesh-2.3.2/create_leafmesh/templates/marketing-ops/agency/__pycache__/crisis_responder_agent.cpython-314.pyc +0 -0
  787. create_leafmesh-2.3.2/create_leafmesh/templates/marketing-ops/agency/__pycache__/performance_analyzer_agent.cpython-314.pyc +0 -0
  788. create_leafmesh-2.3.2/create_leafmesh/templates/marketing-ops/agency/__pycache__/publisher_agent.cpython-314.pyc +0 -0
  789. create_leafmesh-2.3.2/create_leafmesh/templates/marketing-ops/agency/__pycache__/visual_briefer_agent.cpython-314.pyc +0 -0
  790. create_leafmesh-2.3.2/create_leafmesh/templates/marketing-ops/agency/_shared/audit_logger.py +0 -72
  791. create_leafmesh-2.3.2/create_leafmesh/templates/marketing-ops/agency/aeo_geo_optimiser_agent.py +0 -237
  792. create_leafmesh-2.3.2/create_leafmesh/templates/marketing-ops/agency/attribution_agent.py +0 -55
  793. create_leafmesh-2.3.2/create_leafmesh/templates/marketing-ops/agency/audience_intelligence_agent.py +0 -48
  794. create_leafmesh-2.3.2/create_leafmesh/templates/marketing-ops/agency/brand_sentiment_tracker_agent.py +0 -140
  795. create_leafmesh-2.3.2/create_leafmesh/templates/marketing-ops/agency/brief_intake_agent.py +0 -42
  796. create_leafmesh-2.3.2/create_leafmesh/templates/marketing-ops/agency/campaign_strategist_agent.py +0 -62
  797. create_leafmesh-2.3.2/create_leafmesh/templates/marketing-ops/agency/competitor_intel_agent.py +0 -54
  798. create_leafmesh-2.3.2/create_leafmesh/templates/marketing-ops/agency/compliance_reviewer_agent.py +0 -73
  799. create_leafmesh-2.3.2/create_leafmesh/templates/marketing-ops/agency/copywriter_agent.py +0 -52
  800. create_leafmesh-2.3.2/create_leafmesh/templates/marketing-ops/agency/crisis_responder_agent.py +0 -76
  801. create_leafmesh-2.3.2/create_leafmesh/templates/marketing-ops/agency/email_engagement_analyzer_agent.py +0 -163
  802. create_leafmesh-2.3.2/create_leafmesh/templates/marketing-ops/agency/marketing_audit_logger_agent.py +0 -71
  803. create_leafmesh-2.3.2/create_leafmesh/templates/marketing-ops/agency/performance_analyzer_agent.py +0 -52
  804. create_leafmesh-2.3.2/create_leafmesh/templates/marketing-ops/agency/publisher_agent.py +0 -57
  805. create_leafmesh-2.3.2/create_leafmesh/templates/marketing-ops/agency/social_media_agent.py +0 -222
  806. create_leafmesh-2.3.2/create_leafmesh/templates/marketing-ops/configs/config.yaml +0 -878
  807. create_leafmesh-2.3.2/create_leafmesh/templates/marketing-ops/examples/01_new_campaign_brief.json +0 -18
  808. create_leafmesh-2.3.2/create_leafmesh/templates/marketing-ops/examples/02_product_launch_kickoff.json +0 -17
  809. create_leafmesh-2.3.2/create_leafmesh/templates/marketing-ops/examples/03_brand_crisis.json +0 -17
  810. create_leafmesh-2.3.2/create_leafmesh/templates/marketing-ops/examples/04_competitor_pricing_move.json +0 -17
  811. create_leafmesh-2.3.2/create_leafmesh/templates/marketing-ops/examples/README.md +0 -23
  812. create_leafmesh-2.3.2/create_leafmesh/templates/marketing-ops/logs/leafmesh_2026-06-09.log +0 -64
  813. create_leafmesh-2.3.2/create_leafmesh/templates/marketing-ops/logs/leafmesh_2026-06-10.log +0 -16
  814. create_leafmesh-2.3.2/create_leafmesh/templates/marketing-ops/main.py +0 -116
  815. create_leafmesh-2.3.2/create_leafmesh/templates/marketing-ops/requirements.txt +0 -4
  816. create_leafmesh-2.3.2/create_leafmesh/templates/marketing-ops/tests/__pycache__/conftest.cpython-314-pytest-9.0.2.pyc +0 -0
  817. create_leafmesh-2.3.2/create_leafmesh/templates/marketing-ops/tests/__pycache__/test_agent_logic.cpython-314-pytest-9.0.2.pyc +0 -0
  818. create_leafmesh-2.3.2/create_leafmesh/templates/marketing-ops/tests/__pycache__/test_config_shape.cpython-314-pytest-9.0.2.pyc +0 -0
  819. create_leafmesh-2.3.2/create_leafmesh/templates/marketing-ops/tests/conftest.py +0 -29
  820. create_leafmesh-2.3.2/create_leafmesh/templates/marketing-ops/tests/test_agent_logic.py +0 -173
  821. create_leafmesh-2.3.2/create_leafmesh/templates/marketing-ops/tests/test_config_shape.py +0 -150
  822. create_leafmesh-2.3.2/create_leafmesh/templates/predictive-maintenance/README.md +0 -17
  823. create_leafmesh-2.3.2/create_leafmesh/templates/predictive-maintenance/agency/__pycache__/__init__.cpython-314.pyc +0 -0
  824. create_leafmesh-2.3.2/create_leafmesh/templates/predictive-maintenance/agency/__pycache__/failure_predictor_agent.cpython-314.pyc +0 -0
  825. create_leafmesh-2.3.2/create_leafmesh/templates/predictive-maintenance/agency/__pycache__/work_order_scheduler_agent.cpython-314.pyc +0 -0
  826. create_leafmesh-2.3.2/create_leafmesh/templates/predictive-maintenance/agency/_shared/audit_logger.py +0 -53
  827. create_leafmesh-2.3.2/create_leafmesh/templates/predictive-maintenance/agency/dispatcher_agent.py +0 -20
  828. create_leafmesh-2.3.2/create_leafmesh/templates/predictive-maintenance/agency/equipment_lifecycle_agent.py +0 -142
  829. create_leafmesh-2.3.2/create_leafmesh/templates/predictive-maintenance/agency/maintenance_history_agent.py +0 -158
  830. create_leafmesh-2.3.2/create_leafmesh/templates/predictive-maintenance/agency/parts_requestor_agent.py +0 -22
  831. create_leafmesh-2.3.2/create_leafmesh/templates/predictive-maintenance/agency/pm_compliance_tracker_agent.py +0 -105
  832. create_leafmesh-2.3.2/create_leafmesh/templates/predictive-maintenance/agency/recurrence_watchdog_agent.py +0 -15
  833. create_leafmesh-2.3.2/create_leafmesh/templates/predictive-maintenance/agency/safety_incident_reporter_agent.py +0 -135
  834. create_leafmesh-2.3.2/create_leafmesh/templates/predictive-maintenance/agency/work_order_scheduler_agent.py +0 -42
  835. create_leafmesh-2.3.2/create_leafmesh/templates/predictive-maintenance/configs/config.yaml +0 -642
  836. create_leafmesh-2.3.2/create_leafmesh/templates/predictive-maintenance/main.py +0 -57
  837. create_leafmesh-2.3.2/create_leafmesh/templates/predictive-maintenance/requirements.txt +0 -3
  838. create_leafmesh-2.3.2/create_leafmesh/templates/predictive-maintenance/tests/__pycache__/test_agent_logic.cpython-314-pytest-9.0.2.pyc +0 -0
  839. create_leafmesh-2.3.2/create_leafmesh/templates/predictive-maintenance/tests/__pycache__/test_config_shape.cpython-314-pytest-9.0.2.pyc +0 -0
  840. create_leafmesh-2.3.2/create_leafmesh/templates/predictive-maintenance/tests/test_agent_logic.py +0 -41
  841. create_leafmesh-2.3.2/create_leafmesh/templates/predictive-maintenance/tests/test_config_shape.py +0 -41
  842. create_leafmesh-2.3.2/create_leafmesh/templates/procurement-ops/agency/__pycache__/inventory_agent.cpython-314.pyc +0 -0
  843. create_leafmesh-2.3.2/create_leafmesh/templates/procurement-ops/agency/__pycache__/logistics_agent.cpython-314.pyc +0 -0
  844. create_leafmesh-2.3.2/create_leafmesh/templates/procurement-ops/agency/__pycache__/order_intake_agent.cpython-314.pyc +0 -0
  845. create_leafmesh-2.3.2/create_leafmesh/templates/procurement-ops/agency/__pycache__/purchase_order_agent.cpython-314.pyc +0 -0
  846. create_leafmesh-2.3.2/create_leafmesh/templates/procurement-ops/agency/__pycache__/supplier_agent.cpython-314.pyc +0 -0
  847. create_leafmesh-2.3.2/create_leafmesh/templates/procurement-ops/agency/__pycache__/trade_compliance_agent.cpython-314.pyc +0 -0
  848. create_leafmesh-2.3.2/create_leafmesh/templates/procurement-ops/agency/inventory_agent.py +0 -331
  849. create_leafmesh-2.3.2/create_leafmesh/templates/procurement-ops/agency/logistics_agent.py +0 -415
  850. create_leafmesh-2.3.2/create_leafmesh/templates/procurement-ops/agency/order_intake_agent.py +0 -253
  851. create_leafmesh-2.3.2/create_leafmesh/templates/procurement-ops/agency/purchase_order_agent.py +0 -429
  852. create_leafmesh-2.3.2/create_leafmesh/templates/procurement-ops/agency/supplier_agent.py +0 -207
  853. create_leafmesh-2.3.2/create_leafmesh/templates/procurement-ops/agency/trade_compliance_agent.py +0 -205
  854. create_leafmesh-2.3.2/create_leafmesh/templates/procurement-ops/configs/config.yaml +0 -510
  855. create_leafmesh-2.3.2/create_leafmesh/templates/procurement-ops/requirements.txt +0 -14
  856. create_leafmesh-2.3.2/create_leafmesh/templates/production-planning/agency/__pycache__/__init__.cpython-314.pyc +0 -0
  857. create_leafmesh-2.3.2/create_leafmesh/templates/production-planning/agency/__pycache__/constraint_flagger_agent.cpython-314.pyc +0 -0
  858. create_leafmesh-2.3.2/create_leafmesh/templates/production-planning/agency/_shared/audit_logger.py +0 -53
  859. create_leafmesh-2.3.2/create_leafmesh/templates/production-planning/agency/capacity_model_agent.py +0 -36
  860. create_leafmesh-2.3.2/create_leafmesh/templates/production-planning/agency/capacity_what_if_agent.py +0 -139
  861. create_leafmesh-2.3.2/create_leafmesh/templates/production-planning/agency/constraint_flagger_agent.py +0 -54
  862. create_leafmesh-2.3.2/create_leafmesh/templates/production-planning/agency/demand_forecast_eval_agent.py +0 -166
  863. create_leafmesh-2.3.2/create_leafmesh/templates/production-planning/agency/production_kpi_tracker_agent.py +0 -155
  864. create_leafmesh-2.3.2/create_leafmesh/templates/production-planning/agency/release_agent.py +0 -22
  865. create_leafmesh-2.3.2/create_leafmesh/templates/production-planning/agency/scheduler_agent.py +0 -56
  866. create_leafmesh-2.3.2/create_leafmesh/templates/production-planning/configs/config.yaml +0 -692
  867. create_leafmesh-2.3.2/create_leafmesh/templates/production-planning/main.py +0 -57
  868. create_leafmesh-2.3.2/create_leafmesh/templates/production-planning/requirements.txt +0 -3
  869. create_leafmesh-2.3.2/create_leafmesh/templates/production-planning/tests/__pycache__/conftest.cpython-314-pytest-9.0.2.pyc +0 -0
  870. create_leafmesh-2.3.2/create_leafmesh/templates/production-planning/tests/__pycache__/test_agent_logic.cpython-314-pytest-9.0.2.pyc +0 -0
  871. create_leafmesh-2.3.2/create_leafmesh/templates/production-planning/tests/__pycache__/test_config_shape.cpython-314-pytest-9.0.2.pyc +0 -0
  872. create_leafmesh-2.3.2/create_leafmesh/templates/production-planning/tests/conftest.py +0 -28
  873. create_leafmesh-2.3.2/create_leafmesh/templates/production-planning/tests/test_agent_logic.py +0 -45
  874. create_leafmesh-2.3.2/create_leafmesh/templates/production-planning/tests/test_config_shape.py +0 -57
  875. create_leafmesh-2.3.2/create_leafmesh/templates/quality-yield/README.md +0 -10
  876. create_leafmesh-2.3.2/create_leafmesh/templates/quality-yield/agency/__pycache__/__init__.cpython-314.pyc +0 -0
  877. create_leafmesh-2.3.2/create_leafmesh/templates/quality-yield/agency/__pycache__/defect_detector_agent.cpython-314.pyc +0 -0
  878. create_leafmesh-2.3.2/create_leafmesh/templates/quality-yield/agency/__pycache__/root_cause_analyzer_agent.cpython-314.pyc +0 -0
  879. create_leafmesh-2.3.2/create_leafmesh/templates/quality-yield/agency/_shared/audit_logger.py +0 -52
  880. create_leafmesh-2.3.2/create_leafmesh/templates/quality-yield/agency/batch_traceability_agent.py +0 -54
  881. create_leafmesh-2.3.2/create_leafmesh/templates/quality-yield/agency/corrective_action_drafter_agent.py +0 -32
  882. create_leafmesh-2.3.2/create_leafmesh/templates/quality-yield/agency/defect_detector_agent.py +0 -61
  883. create_leafmesh-2.3.2/create_leafmesh/templates/quality-yield/agency/inspection_intake_agent.py +0 -32
  884. create_leafmesh-2.3.2/create_leafmesh/templates/quality-yield/agency/recall_orchestrator_agent.py +0 -153
  885. create_leafmesh-2.3.2/create_leafmesh/templates/quality-yield/agency/regulatory_compliance_agent.py +0 -133
  886. create_leafmesh-2.3.2/create_leafmesh/templates/quality-yield/agency/root_cause_analyzer_agent.py +0 -48
  887. create_leafmesh-2.3.2/create_leafmesh/templates/quality-yield/agency/spc_chart_agent.py +0 -159
  888. create_leafmesh-2.3.2/create_leafmesh/templates/quality-yield/agency/spc_monitor_agent.py +0 -16
  889. create_leafmesh-2.3.2/create_leafmesh/templates/quality-yield/configs/config.yaml +0 -676
  890. create_leafmesh-2.3.2/create_leafmesh/templates/quality-yield/examples/01_routine_inspection.json +0 -11
  891. create_leafmesh-2.3.2/create_leafmesh/templates/quality-yield/examples/02_defect_cluster.json +0 -19
  892. create_leafmesh-2.3.2/create_leafmesh/templates/quality-yield/examples/03_field_complaint_recall.json +0 -12
  893. create_leafmesh-2.3.2/create_leafmesh/templates/quality-yield/examples/README.md +0 -23
  894. create_leafmesh-2.3.2/create_leafmesh/templates/quality-yield/logs/leafmesh_2026-06-09.log +0 -18
  895. create_leafmesh-2.3.2/create_leafmesh/templates/quality-yield/logs/leafmesh_2026-06-10.log +0 -6
  896. create_leafmesh-2.3.2/create_leafmesh/templates/quality-yield/main.py +0 -45
  897. create_leafmesh-2.3.2/create_leafmesh/templates/quality-yield/requirements.txt +0 -3
  898. create_leafmesh-2.3.2/create_leafmesh/templates/quality-yield/tests/__pycache__/test_agent_logic.cpython-314-pytest-9.0.2.pyc +0 -0
  899. create_leafmesh-2.3.2/create_leafmesh/templates/quality-yield/tests/__pycache__/test_config_shape.cpython-314-pytest-9.0.2.pyc +0 -0
  900. create_leafmesh-2.3.2/create_leafmesh/templates/quality-yield/tests/test_agent_logic.py +0 -56
  901. create_leafmesh-2.3.2/create_leafmesh/templates/quality-yield/tests/test_config_shape.py +0 -46
  902. create_leafmesh-2.3.2/create_leafmesh/templates/quote-to-cash/README.md +0 -11
  903. create_leafmesh-2.3.2/create_leafmesh/templates/quote-to-cash/agency/__pycache__/__init__.cpython-314.pyc +0 -0
  904. create_leafmesh-2.3.2/create_leafmesh/templates/quote-to-cash/agency/__pycache__/approval_router_agent.cpython-314.pyc +0 -0
  905. create_leafmesh-2.3.2/create_leafmesh/templates/quote-to-cash/agency/__pycache__/discount_policy_agent.cpython-314.pyc +0 -0
  906. create_leafmesh-2.3.2/create_leafmesh/templates/quote-to-cash/agency/_shared/audit_logger.py +0 -47
  907. create_leafmesh-2.3.2/create_leafmesh/templates/quote-to-cash/agency/approval_router_agent.py +0 -39
  908. create_leafmesh-2.3.2/create_leafmesh/templates/quote-to-cash/agency/contract_review_agent.py +0 -149
  909. create_leafmesh-2.3.2/create_leafmesh/templates/quote-to-cash/agency/quote_drafter_agent.py +0 -24
  910. create_leafmesh-2.3.2/create_leafmesh/templates/quote-to-cash/agency/revenue_recognition_classifier_agent.py +0 -83
  911. create_leafmesh-2.3.2/create_leafmesh/templates/quote-to-cash/configs/config.yaml +0 -668
  912. create_leafmesh-2.3.2/create_leafmesh/templates/quote-to-cash/main.py +0 -45
  913. create_leafmesh-2.3.2/create_leafmesh/templates/quote-to-cash/requirements.txt +0 -3
  914. create_leafmesh-2.3.2/create_leafmesh/templates/quote-to-cash/tests/__pycache__/test_agent_logic.cpython-314-pytest-9.0.2.pyc +0 -0
  915. create_leafmesh-2.3.2/create_leafmesh/templates/quote-to-cash/tests/test_agent_logic.py +0 -42
  916. create_leafmesh-2.3.2/create_leafmesh/templates/recruiting-ops/README.md +0 -11
  917. create_leafmesh-2.3.2/create_leafmesh/templates/recruiting-ops/agency/__pycache__/__init__.cpython-314.pyc +0 -0
  918. create_leafmesh-2.3.2/create_leafmesh/templates/recruiting-ops/agency/__pycache__/offer_drafter_agent.cpython-314.pyc +0 -0
  919. create_leafmesh-2.3.2/create_leafmesh/templates/recruiting-ops/agency/_shared/audit_logger.py +0 -47
  920. create_leafmesh-2.3.2/create_leafmesh/templates/recruiting-ops/agency/hiring_assistant_agent.py +0 -164
  921. create_leafmesh-2.3.2/create_leafmesh/templates/recruiting-ops/agency/interview_loop_designer_agent.py +0 -100
  922. create_leafmesh-2.3.2/create_leafmesh/templates/recruiting-ops/agency/offer_drafter_agent.py +0 -32
  923. create_leafmesh-2.3.2/create_leafmesh/templates/recruiting-ops/agency/outreach_drafter_agent.py +0 -24
  924. create_leafmesh-2.3.2/create_leafmesh/templates/recruiting-ops/agency/pipeline_health_agent.py +0 -14
  925. create_leafmesh-2.3.2/create_leafmesh/templates/recruiting-ops/agency/rejection_letter_drafter_agent.py +0 -55
  926. create_leafmesh-2.3.2/create_leafmesh/templates/recruiting-ops/agency/scheduling_agent.py +0 -14
  927. create_leafmesh-2.3.2/create_leafmesh/templates/recruiting-ops/agency/time_to_hire_tracker_agent.py +0 -153
  928. create_leafmesh-2.3.2/create_leafmesh/templates/recruiting-ops/configs/config.yaml +0 -723
  929. create_leafmesh-2.3.2/create_leafmesh/templates/recruiting-ops/examples/02_candidate_rejection_letter.json +0 -13
  930. create_leafmesh-2.3.2/create_leafmesh/templates/recruiting-ops/examples/03_offer_drafting.json +0 -15
  931. create_leafmesh-2.3.2/create_leafmesh/templates/recruiting-ops/examples/README.md +0 -23
  932. create_leafmesh-2.3.2/create_leafmesh/templates/recruiting-ops/logs/leafmesh_2026-06-09.log +0 -6
  933. create_leafmesh-2.3.2/create_leafmesh/templates/recruiting-ops/logs/leafmesh_2026-06-10.log +0 -4
  934. create_leafmesh-2.3.2/create_leafmesh/templates/recruiting-ops/main.py +0 -45
  935. create_leafmesh-2.3.2/create_leafmesh/templates/recruiting-ops/requirements.txt +0 -3
  936. create_leafmesh-2.3.2/create_leafmesh/templates/recruiting-ops/tests/__pycache__/test_agent_logic.cpython-314-pytest-9.0.2.pyc +0 -0
  937. create_leafmesh-2.3.2/create_leafmesh/templates/recruiting-ops/tests/__pycache__/test_config_shape.cpython-314-pytest-9.0.2.pyc +0 -0
  938. create_leafmesh-2.3.2/create_leafmesh/templates/recruiting-ops/tests/test_agent_logic.py +0 -21
  939. create_leafmesh-2.3.2/create_leafmesh/templates/recruiting-ops/tests/test_config_shape.py +0 -41
  940. create_leafmesh-2.3.2/create_leafmesh/templates/sales-orchestration/README.md +0 -12
  941. create_leafmesh-2.3.2/create_leafmesh/templates/sales-orchestration/agency/__pycache__/__init__.cpython-314.pyc +0 -0
  942. create_leafmesh-2.3.2/create_leafmesh/templates/sales-orchestration/agency/__pycache__/abm_orchestrator_agent.cpython-314.pyc +0 -0
  943. create_leafmesh-2.3.2/create_leafmesh/templates/sales-orchestration/agency/__pycache__/competitor_intel_agent.cpython-314.pyc +0 -0
  944. create_leafmesh-2.3.2/create_leafmesh/templates/sales-orchestration/agency/__pycache__/deal_nurturer_agent.cpython-314.pyc +0 -0
  945. create_leafmesh-2.3.2/create_leafmesh/templates/sales-orchestration/agency/__pycache__/lead_enrichment_agent.cpython-314.pyc +0 -0
  946. create_leafmesh-2.3.2/create_leafmesh/templates/sales-orchestration/agency/__pycache__/lead_intake_agent.cpython-314.pyc +0 -0
  947. create_leafmesh-2.3.2/create_leafmesh/templates/sales-orchestration/agency/__pycache__/personalisation_agent.cpython-314.pyc +0 -0
  948. create_leafmesh-2.3.2/create_leafmesh/templates/sales-orchestration/agency/__pycache__/sequence_orchestrator_agent.cpython-314.pyc +0 -0
  949. create_leafmesh-2.3.2/create_leafmesh/templates/sales-orchestration/agency/_shared/audit_logger.py +0 -52
  950. create_leafmesh-2.3.2/create_leafmesh/templates/sales-orchestration/agency/account_research_agent.py +0 -82
  951. create_leafmesh-2.3.2/create_leafmesh/templates/sales-orchestration/agency/competitor_intel_agent.py +0 -193
  952. create_leafmesh-2.3.2/create_leafmesh/templates/sales-orchestration/agency/lead_enrichment_agent.py +0 -185
  953. create_leafmesh-2.3.2/create_leafmesh/templates/sales-orchestration/agency/lead_intake_agent.py +0 -45
  954. create_leafmesh-2.3.2/create_leafmesh/templates/sales-orchestration/agency/lead_scorer_agent.py +0 -65
  955. create_leafmesh-2.3.2/create_leafmesh/templates/sales-orchestration/agency/personalisation_agent.py +0 -36
  956. create_leafmesh-2.3.2/create_leafmesh/templates/sales-orchestration/agency/pipeline_health_agent.py +0 -18
  957. create_leafmesh-2.3.2/create_leafmesh/templates/sales-orchestration/agency/pipeline_health_monitor_agent.py +0 -175
  958. create_leafmesh-2.3.2/create_leafmesh/templates/sales-orchestration/agency/sequence_orchestrator_agent.py +0 -54
  959. create_leafmesh-2.3.2/create_leafmesh/templates/sales-orchestration/configs/config.yaml +0 -846
  960. create_leafmesh-2.3.2/create_leafmesh/templates/sales-orchestration/examples/01_inbound_demo_request.json +0 -23
  961. create_leafmesh-2.3.2/create_leafmesh/templates/sales-orchestration/examples/03_competitor_steal_signal.json +0 -15
  962. create_leafmesh-2.3.2/create_leafmesh/templates/sales-orchestration/examples/05_enriched_inbound_lead.json +0 -24
  963. create_leafmesh-2.3.2/create_leafmesh/templates/sales-orchestration/examples/08_competitor_intel_pull.json +0 -21
  964. create_leafmesh-2.3.2/create_leafmesh/templates/sales-orchestration/examples/README.md +0 -23
  965. create_leafmesh-2.3.2/create_leafmesh/templates/sales-orchestration/logs/leafmesh_2026-06-09.log +0 -30
  966. create_leafmesh-2.3.2/create_leafmesh/templates/sales-orchestration/logs/leafmesh_2026-06-10.log +0 -20
  967. create_leafmesh-2.3.2/create_leafmesh/templates/sales-orchestration/main.py +0 -45
  968. create_leafmesh-2.3.2/create_leafmesh/templates/sales-orchestration/requirements.txt +0 -3
  969. create_leafmesh-2.3.2/create_leafmesh/templates/sales-orchestration/tests/__pycache__/conftest.cpython-314-pytest-9.0.2.pyc +0 -0
  970. create_leafmesh-2.3.2/create_leafmesh/templates/sales-orchestration/tests/__pycache__/test_agent_logic.cpython-314-pytest-9.0.2.pyc +0 -0
  971. create_leafmesh-2.3.2/create_leafmesh/templates/sales-orchestration/tests/conftest.py +0 -20
  972. create_leafmesh-2.3.2/create_leafmesh/templates/sales-orchestration/tests/test_agent_logic.py +0 -58
  973. create_leafmesh-2.3.2/create_leafmesh/templates/services-delivery/README.md +0 -59
  974. create_leafmesh-2.3.2/create_leafmesh/templates/services-delivery/agency/__pycache__/__init__.cpython-314.pyc +0 -0
  975. create_leafmesh-2.3.2/create_leafmesh/templates/services-delivery/agency/__pycache__/analysis_agent.cpython-314.pyc +0 -0
  976. create_leafmesh-2.3.2/create_leafmesh/templates/services-delivery/agency/__pycache__/brief_intake_agent.cpython-314.pyc +0 -0
  977. create_leafmesh-2.3.2/create_leafmesh/templates/services-delivery/agency/__pycache__/citation_agent.cpython-314.pyc +0 -0
  978. create_leafmesh-2.3.2/create_leafmesh/templates/services-delivery/agency/__pycache__/delivery_router_agent.cpython-314.pyc +0 -0
  979. create_leafmesh-2.3.2/create_leafmesh/templates/services-delivery/agency/__pycache__/qa_agent.cpython-314.pyc +0 -0
  980. create_leafmesh-2.3.2/create_leafmesh/templates/services-delivery/agency/__pycache__/research_agent.cpython-314.pyc +0 -0
  981. create_leafmesh-2.3.2/create_leafmesh/templates/services-delivery/agency/_shared/audit_logger.py +0 -53
  982. create_leafmesh-2.3.2/create_leafmesh/templates/services-delivery/agency/analysis_agent.py +0 -70
  983. create_leafmesh-2.3.2/create_leafmesh/templates/services-delivery/agency/brief_intake_agent.py +0 -49
  984. create_leafmesh-2.3.2/create_leafmesh/templates/services-delivery/agency/delivery_router_agent.py +0 -42
  985. create_leafmesh-2.3.2/create_leafmesh/templates/services-delivery/agency/doc_extraction_agent.py +0 -150
  986. create_leafmesh-2.3.2/create_leafmesh/templates/services-delivery/agency/draft_agent.py +0 -60
  987. create_leafmesh-2.3.2/create_leafmesh/templates/services-delivery/agency/performance_review_agent.py +0 -149
  988. create_leafmesh-2.3.2/create_leafmesh/templates/services-delivery/agency/qa_agent.py +0 -67
  989. create_leafmesh-2.3.2/create_leafmesh/templates/services-delivery/agency/research_agent.py +0 -54
  990. create_leafmesh-2.3.2/create_leafmesh/templates/services-delivery/agency/scope_creep_detector_agent.py +0 -88
  991. create_leafmesh-2.3.2/create_leafmesh/templates/services-delivery/agency/time_tracker_agent.py +0 -143
  992. create_leafmesh-2.3.2/create_leafmesh/templates/services-delivery/configs/config.yaml +0 -1312
  993. create_leafmesh-2.3.2/create_leafmesh/templates/services-delivery/examples/01_new_engagement_memo.json +0 -14
  994. create_leafmesh-2.3.2/create_leafmesh/templates/services-delivery/examples/README.md +0 -23
  995. create_leafmesh-2.3.2/create_leafmesh/templates/services-delivery/logs/leafmesh_2026-06-09.log +0 -69
  996. create_leafmesh-2.3.2/create_leafmesh/templates/services-delivery/logs/leafmesh_2026-06-10.log +0 -23
  997. create_leafmesh-2.3.2/create_leafmesh/templates/services-delivery/main.py +0 -67
  998. create_leafmesh-2.3.2/create_leafmesh/templates/services-delivery/requirements.txt +0 -3
  999. create_leafmesh-2.3.2/create_leafmesh/templates/services-delivery/tests/__pycache__/test_agent_logic.cpython-314-pytest-9.0.2.pyc +0 -0
  1000. create_leafmesh-2.3.2/create_leafmesh/templates/services-delivery/tests/__pycache__/test_config_shape.cpython-314-pytest-9.0.2.pyc +0 -0
  1001. create_leafmesh-2.3.2/create_leafmesh/templates/services-delivery/tests/test_agent_logic.py +0 -152
  1002. create_leafmesh-2.3.2/create_leafmesh/templates/services-delivery/tests/test_config_shape.py +0 -137
  1003. create_leafmesh-2.3.2/create_leafmesh/templates/warehouse-supply-chain/README.md +0 -37
  1004. create_leafmesh-2.3.2/create_leafmesh/templates/warehouse-supply-chain/agency/__pycache__/__init__.cpython-314.pyc +0 -0
  1005. create_leafmesh-2.3.2/create_leafmesh/templates/warehouse-supply-chain/agency/__pycache__/exception_agent.cpython-314.pyc +0 -0
  1006. create_leafmesh-2.3.2/create_leafmesh/templates/warehouse-supply-chain/agency/_shared/audit_logger.py +0 -53
  1007. create_leafmesh-2.3.2/create_leafmesh/templates/warehouse-supply-chain/agency/allocation_agent.py +0 -40
  1008. create_leafmesh-2.3.2/create_leafmesh/templates/warehouse-supply-chain/agency/cycle_count_orchestrator_agent.py +0 -22
  1009. create_leafmesh-2.3.2/create_leafmesh/templates/warehouse-supply-chain/agency/exception_agent.py +0 -62
  1010. create_leafmesh-2.3.2/create_leafmesh/templates/warehouse-supply-chain/agency/inventory_reconciler_agent.py +0 -135
  1011. create_leafmesh-2.3.2/create_leafmesh/templates/warehouse-supply-chain/agency/routing_agent.py +0 -24
  1012. create_leafmesh-2.3.2/create_leafmesh/templates/warehouse-supply-chain/agency/supplier_onboarding_agent.py +0 -161
  1013. create_leafmesh-2.3.2/create_leafmesh/templates/warehouse-supply-chain/agency/supplier_performance_agent.py +0 -194
  1014. create_leafmesh-2.3.2/create_leafmesh/templates/warehouse-supply-chain/agency/supplier_sourcing_agent.py +0 -155
  1015. create_leafmesh-2.3.2/create_leafmesh/templates/warehouse-supply-chain/configs/config.yaml +0 -803
  1016. create_leafmesh-2.3.2/create_leafmesh/templates/warehouse-supply-chain/examples/01_routine_order.json +0 -24
  1017. create_leafmesh-2.3.2/create_leafmesh/templates/warehouse-supply-chain/examples/README.md +0 -23
  1018. create_leafmesh-2.3.2/create_leafmesh/templates/warehouse-supply-chain/logs/leafmesh_2026-06-09.log +0 -12
  1019. create_leafmesh-2.3.2/create_leafmesh/templates/warehouse-supply-chain/logs/leafmesh_2026-06-10.log +0 -8
  1020. create_leafmesh-2.3.2/create_leafmesh/templates/warehouse-supply-chain/main.py +0 -57
  1021. create_leafmesh-2.3.2/create_leafmesh/templates/warehouse-supply-chain/requirements.txt +0 -3
  1022. create_leafmesh-2.3.2/create_leafmesh/templates/warehouse-supply-chain/tests/__pycache__/test_agent_logic.cpython-314-pytest-9.0.2.pyc +0 -0
  1023. create_leafmesh-2.3.2/create_leafmesh/templates/warehouse-supply-chain/tests/__pycache__/test_config_shape.cpython-314-pytest-9.0.2.pyc +0 -0
  1024. create_leafmesh-2.3.2/create_leafmesh/templates/warehouse-supply-chain/tests/test_agent_logic.py +0 -32
  1025. create_leafmesh-2.3.2/create_leafmesh/templates/warehouse-supply-chain/tests/test_config_shape.py +0 -53
  1026. create_leafmesh-2.3.2/create_leafmesh.egg-info/PKG-INFO +0 -94
  1027. create_leafmesh-2.3.2/create_leafmesh.egg-info/SOURCES.txt +0 -895
  1028. create_leafmesh-2.3.2/pyproject.toml +0 -26
  1029. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/README.md +0 -0
  1030. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/cli.py +0 -0
  1031. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/create.py +0 -0
  1032. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/deploy.py +0 -0
  1033. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/deploy_providers/__init__.py +0 -0
  1034. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/deploy_providers/_shared.py +0 -0
  1035. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/deploy_providers/aws.py +0 -0
  1036. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/deploy_providers/azure.py +0 -0
  1037. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/deploy_providers/gcp.py +0 -0
  1038. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/_inspire/Dockerfile +0 -0
  1039. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/_inspire/README.md +0 -0
  1040. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/_inspire/_REFERENCE_ONLY.md +0 -0
  1041. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/_inspire/agency/__init__.py +0 -0
  1042. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/_inspire/agency/__pycache__/__init__.cpython-314.pyc +0 -0
  1043. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/_inspire/agency/__pycache__/external_agents.cpython-314.pyc +0 -0
  1044. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/_inspire/agency/__pycache__/scheduler_agent.cpython-314.pyc +0 -0
  1045. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/_inspire/agency/__pycache__/tools.cpython-314.pyc +0 -0
  1046. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/_inspire/agency/external_agents.py +0 -0
  1047. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/_inspire/agency/scheduler_agent.py +0 -0
  1048. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/_inspire/agency/tools.py +0 -0
  1049. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/_inspire/docker-compose.yml +0 -0
  1050. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/_inspire/dockerignore +0 -0
  1051. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/_inspire/env +0 -0
  1052. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/_inspire/gitignore +0 -0
  1053. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/_inspire/hitl_stub_receiver.py +0 -0
  1054. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/_inspire/main.py +0 -0
  1055. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/_inspire/skills/data-handling/SKILL.md +0 -0
  1056. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/_inspire/skills/data-handling/examples.json +0 -0
  1057. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/_inspire/skills/tone-rules.md +0 -0
  1058. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/_inspire/tests/__init__.py +0 -0
  1059. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/_inspire/tests/__pycache__/__init__.cpython-314.pyc +0 -0
  1060. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/_inspire/tests/__pycache__/test_config_shape.cpython-314-pytest-9.0.2.pyc +0 -0
  1061. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/_inspire/tests/test_config_shape.py +0 -0
  1062. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/bd-proposals/Dockerfile +0 -0
  1063. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/bd-proposals/_prompts.json +0 -0
  1064. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/bd-proposals/agency/__init__.py +0 -0
  1065. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/bd-proposals/agency/_shared/__init__.py +0 -0
  1066. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/bd-proposals/agency/pricing_configurator_agent.py +0 -0
  1067. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/bd-proposals/agency/section_drafter_agent.py +0 -0
  1068. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/bd-proposals/docker-compose.yml +0 -0
  1069. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/bd-proposals/dockerignore +0 -0
  1070. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/bd-proposals/env +0 -0
  1071. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/bd-proposals/examples/03_loss_with_competitor.json +0 -0
  1072. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/bd-proposals/examples/04_quarterly_win_rate.json +0 -0
  1073. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/bd-proposals/examples/run_examples.py +0 -0
  1074. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/bd-proposals/gitignore +0 -0
  1075. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/bd-proposals/pytest.ini +0 -0
  1076. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/bd-proposals/requirements-dev.txt +0 -0
  1077. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/bd-proposals/tests/__init__.py +0 -0
  1078. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/bd-proposals/tests/__pycache__/__init__.cpython-314.pyc +0 -0
  1079. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/bd-proposals/tests/__pycache__/conftest.cpython-314-pytest-9.0.2.pyc +0 -0
  1080. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/bd-proposals/tests/__pycache__/test_config_shape.cpython-314-pytest-9.0.2.pyc +0 -0
  1081. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/bd-proposals/tests/conftest.py +0 -0
  1082. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/bd-proposals/tests/test_config_shape.py +0 -0
  1083. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/bench-management/Dockerfile +0 -0
  1084. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/bench-management/_prompts.json +0 -0
  1085. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/bench-management/agency/__init__.py +0 -0
  1086. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/bench-management/agency/_shared/__init__.py +0 -0
  1087. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/bench-management/agency/weekly_bench_sweep_agent.py +0 -0
  1088. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/bench-management/docker-compose.yml +0 -0
  1089. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/bench-management/dockerignore +0 -0
  1090. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/bench-management/env +0 -0
  1091. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/bench-management/examples/04_person_rolling_off.json +0 -0
  1092. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/bench-management/examples/run_examples.py +0 -0
  1093. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/bench-management/gitignore +0 -0
  1094. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/bench-management/pytest.ini +0 -0
  1095. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/bench-management/requirements-dev.txt +0 -0
  1096. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/bench-management/tests/__init__.py +0 -0
  1097. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/bench-management/tests/__pycache__/__init__.cpython-314.pyc +0 -0
  1098. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/bench-management/tests/__pycache__/test_config_shape.cpython-314-pytest-9.0.2.pyc +0 -0
  1099. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/bench-management/tests/test_config_shape.py +0 -0
  1100. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/claude_skills/leafmesh/agent-config-fields.md +0 -0
  1101. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/claude_skills/leafmesh/examples.md +0 -0
  1102. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/claude_skills/leafmesh/reference.md +0 -0
  1103. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/customer-success/Dockerfile +0 -0
  1104. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/customer-success/_prompts.json +0 -0
  1105. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/customer-success/agency/_shared/__init__.py +0 -0
  1106. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/customer-success/agency/playbook_trigger_agent.py +0 -0
  1107. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/customer-success/agency/qbr_drafter_agent.py +0 -0
  1108. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/customer-success/docker-compose.yml +0 -0
  1109. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/customer-success/dockerignore +0 -0
  1110. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/customer-success/env +0 -0
  1111. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/customer-success/examples/01_telemetry_dau_drop.json +0 -0
  1112. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/customer-success/examples/run_examples.py +0 -0
  1113. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/customer-success/gitignore +0 -0
  1114. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/customer-success/pytest.ini +0 -0
  1115. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/customer-success/requirements-dev.txt +0 -0
  1116. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/customer-success/tests/__init__.py +0 -0
  1117. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/customer-success/tests/__pycache__/__init__.cpython-314.pyc +0 -0
  1118. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/customer-success/tests/__pycache__/conftest.cpython-314-pytest-9.0.2.pyc +0 -0
  1119. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/customer-success/tests/conftest.py +0 -0
  1120. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/customer-support/Dockerfile +0 -0
  1121. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/customer-support/_prompts.json +0 -0
  1122. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/customer-support/agency/__init__.py +0 -0
  1123. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/customer-support/agency/_shared/__init__.py +0 -0
  1124. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/customer-support/agency/sentiment_agent.py +0 -0
  1125. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/customer-support/agency/sla_watchdog_agent.py +0 -0
  1126. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/customer-support/docker-compose.yml +0 -0
  1127. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/customer-support/dockerignore +0 -0
  1128. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/customer-support/env +0 -0
  1129. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/customer-support/examples/01_password_reset_routine.json +0 -0
  1130. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/customer-support/examples/02_billing_dispute_escalation.json +0 -0
  1131. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/customer-support/examples/03_security_incident.json +0 -0
  1132. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/customer-support/examples/04_kb_gap_signal.json +0 -0
  1133. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/customer-support/examples/README.md +0 -0
  1134. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/customer-support/examples/run_examples.py +0 -0
  1135. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/customer-support/gitignore +0 -0
  1136. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/customer-support/pytest.ini +0 -0
  1137. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/customer-support/requirements-dev.txt +0 -0
  1138. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/customer-support/tests/__init__.py +0 -0
  1139. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/customer-support/tests/__pycache__/__init__.cpython-314.pyc +0 -0
  1140. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/customer-support/tests/__pycache__/conftest.cpython-314-pytest-9.0.2.pyc +0 -0
  1141. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/customer-support/tests/conftest.py +0 -0
  1142. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/engineering-sdlc/Dockerfile +0 -0
  1143. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/engineering-sdlc/README.md +0 -0
  1144. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/engineering-sdlc/_prompts.json +0 -0
  1145. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/engineering-sdlc/agency/__init__.py +0 -0
  1146. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/engineering-sdlc/agency/__pycache__/test_engineer_agent.cpython-314-pytest-9.0.2.pyc +0 -0
  1147. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/engineering-sdlc/agency/_shared/__init__.py +0 -0
  1148. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/engineering-sdlc/agency/oncall_alert_triager_agent.py +0 -0
  1149. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/engineering-sdlc/agency/refactor_agent.py +0 -0
  1150. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/engineering-sdlc/agency/regression_detector_agent.py +0 -0
  1151. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/engineering-sdlc/agency/regulatory_monitor_agent.py +0 -0
  1152. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/engineering-sdlc/agency/release_notes_drafter_agent.py +0 -0
  1153. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/engineering-sdlc/agency/security_scanner_agent.py +0 -0
  1154. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/engineering-sdlc/agency/test_engineer_agent.py +0 -0
  1155. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/engineering-sdlc/docker-compose.yml +0 -0
  1156. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/engineering-sdlc/dockerignore +0 -0
  1157. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/engineering-sdlc/env +0 -0
  1158. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/engineering-sdlc/examples/01_simple_feature_ticket.json +0 -0
  1159. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/engineering-sdlc/examples/02_security_sensitive_change.json +0 -0
  1160. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/engineering-sdlc/examples/03_oncall_pager_alert.json +0 -0
  1161. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/engineering-sdlc/examples/04_refactor_proposal.json +0 -0
  1162. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/engineering-sdlc/examples/README.md +0 -0
  1163. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/engineering-sdlc/examples/run_examples.py +0 -0
  1164. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/engineering-sdlc/gitignore +0 -0
  1165. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/engineering-sdlc/logs/leafmesh_2026-06-09.log +0 -0
  1166. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/engineering-sdlc/logs/leafmesh_2026-06-10.log +0 -0
  1167. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/engineering-sdlc/pytest.ini +0 -0
  1168. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/engineering-sdlc/requirements-dev.txt +0 -0
  1169. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/engineering-sdlc/tests/__init__.py +0 -0
  1170. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/engineering-sdlc/tests/__pycache__/__init__.cpython-314.pyc +0 -0
  1171. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/engineering-sdlc/tests/__pycache__/conftest.cpython-314-pytest-9.0.2.pyc +0 -0
  1172. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/engineering-sdlc/tests/__pycache__/test_agent_logic.cpython-314-pytest-9.0.2.pyc +0 -0
  1173. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/engineering-sdlc/tests/__pycache__/test_config_shape.cpython-314-pytest-9.0.2.pyc +0 -0
  1174. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/engineering-sdlc/tests/conftest.py +0 -0
  1175. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/engineering-sdlc/tests/test_agent_logic.py +0 -0
  1176. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/engineering-sdlc/tests/test_config_shape.py +0 -0
  1177. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/finance-ops/Dockerfile +0 -0
  1178. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/finance-ops/_prompts.json +0 -0
  1179. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/finance-ops/agency/__init__.py +0 -0
  1180. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/finance-ops/agency/_shared/__init__.py +0 -0
  1181. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/finance-ops/agency/close_cycle_orchestrator_agent.py +0 -0
  1182. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/finance-ops/agency/loan_servicing_agent.py +0 -0
  1183. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/finance-ops/agency/regulatory_monitor_agent.py +0 -0
  1184. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/finance-ops/docker-compose.yml +0 -0
  1185. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/finance-ops/dockerignore +0 -0
  1186. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/finance-ops/env +0 -0
  1187. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/finance-ops/examples/01_happy_path_subscription.json +0 -0
  1188. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/finance-ops/examples/04_high_value_cfo_signoff.json +0 -0
  1189. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/finance-ops/examples/run_examples.py +0 -0
  1190. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/finance-ops/gitignore +0 -0
  1191. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/finance-ops/pytest.ini +0 -0
  1192. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/finance-ops/requirements-dev.txt +0 -0
  1193. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/finance-ops/tests/__init__.py +0 -0
  1194. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/finance-ops/tests/__pycache__/__init__.cpython-314.pyc +0 -0
  1195. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/infra-cost-ops/Dockerfile +0 -0
  1196. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/infra-cost-ops/_prompts.json +0 -0
  1197. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/infra-cost-ops/agency/__init__.py +0 -0
  1198. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/infra-cost-ops/agency/_shared/__init__.py +0 -0
  1199. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/infra-cost-ops/agency/iac_drift_agent.py +0 -0
  1200. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/infra-cost-ops/docker-compose.yml +0 -0
  1201. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/infra-cost-ops/dockerignore +0 -0
  1202. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/infra-cost-ops/env +0 -0
  1203. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/infra-cost-ops/examples/01_ec2_idle_anomaly.json +0 -0
  1204. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/infra-cost-ops/examples/04_iac_drift_detected.json +0 -0
  1205. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/infra-cost-ops/examples/run_examples.py +0 -0
  1206. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/infra-cost-ops/gitignore +0 -0
  1207. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/infra-cost-ops/pytest.ini +0 -0
  1208. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/infra-cost-ops/requirements-dev.txt +0 -0
  1209. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/infra-cost-ops/tests/__init__.py +0 -0
  1210. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/infra-cost-ops/tests/__pycache__/__init__.cpython-314.pyc +0 -0
  1211. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/infra-cost-ops/tests/__pycache__/conftest.cpython-314-pytest-9.0.2.pyc +0 -0
  1212. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/infra-cost-ops/tests/conftest.py +0 -0
  1213. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/marketing-ops/Dockerfile +0 -0
  1214. {create_leafmesh-2.3.2/create_leafmesh/templates/customer-success → create_leafmesh-2.4.0/create_leafmesh/templates/marketing-ops}/README.md +0 -0
  1215. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/marketing-ops/_prompts.json +0 -0
  1216. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/marketing-ops/agency/__init__.py +0 -0
  1217. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/marketing-ops/agency/_shared/__init__.py +0 -0
  1218. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/marketing-ops/agency/campaign_orchestrator_agent.py +0 -0
  1219. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/marketing-ops/agency/visual_briefer_agent.py +0 -0
  1220. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/marketing-ops/docker-compose.yml +0 -0
  1221. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/marketing-ops/dockerignore +0 -0
  1222. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/marketing-ops/env +0 -0
  1223. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/marketing-ops/examples/run_examples.py +0 -0
  1224. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/marketing-ops/gitignore +0 -0
  1225. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/marketing-ops/pytest.ini +0 -0
  1226. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/marketing-ops/requirements-dev.txt +0 -0
  1227. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/marketing-ops/tests/__init__.py +0 -0
  1228. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/marketing-ops/tests/__pycache__/__init__.cpython-314.pyc +0 -0
  1229. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/predictive-maintenance/Dockerfile +0 -0
  1230. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/predictive-maintenance/_prompts.json +0 -0
  1231. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/predictive-maintenance/agency/__init__.py +0 -0
  1232. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/predictive-maintenance/agency/_shared/__init__.py +0 -0
  1233. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/predictive-maintenance/agency/condition_sensor_agent.py +0 -0
  1234. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/predictive-maintenance/agency/failure_predictor_agent.py +0 -0
  1235. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/predictive-maintenance/agency/spare_parts_forecaster_agent.py +0 -0
  1236. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/predictive-maintenance/docker-compose.yml +0 -0
  1237. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/predictive-maintenance/dockerignore +0 -0
  1238. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/predictive-maintenance/env +0 -0
  1239. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/predictive-maintenance/examples/01_routine_sensor_reading.json +0 -0
  1240. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/predictive-maintenance/examples/02_anomaly_failure_predicted.json +0 -0
  1241. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/predictive-maintenance/examples/03_safety_critical_shutdown.json +0 -0
  1242. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/predictive-maintenance/examples/04_weekly_parts_forecast.json +0 -0
  1243. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/predictive-maintenance/examples/README.md +0 -0
  1244. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/predictive-maintenance/examples/run_examples.py +0 -0
  1245. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/predictive-maintenance/gitignore +0 -0
  1246. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/predictive-maintenance/logs/leafmesh_2026-06-09.log +0 -0
  1247. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/predictive-maintenance/logs/leafmesh_2026-06-10.log +0 -0
  1248. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/predictive-maintenance/pytest.ini +0 -0
  1249. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/predictive-maintenance/requirements-dev.txt +0 -0
  1250. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/predictive-maintenance/tests/__init__.py +0 -0
  1251. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/predictive-maintenance/tests/__pycache__/__init__.cpython-314.pyc +0 -0
  1252. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/predictive-maintenance/tests/__pycache__/conftest.cpython-314-pytest-9.0.2.pyc +0 -0
  1253. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/predictive-maintenance/tests/conftest.py +0 -0
  1254. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/procurement-ops/Dockerfile +0 -0
  1255. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/procurement-ops/README.md +0 -0
  1256. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/procurement-ops/TESTING_GUIDE.md +0 -0
  1257. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/procurement-ops/WORKFLOW_GUIDE.md +0 -0
  1258. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/procurement-ops/agency/__init__.py +0 -0
  1259. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/procurement-ops/agency/__pycache__/__init__.cpython-314.pyc +0 -0
  1260. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/procurement-ops/agency/__pycache__/data_loader.cpython-314.pyc +0 -0
  1261. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/procurement-ops/agency/__pycache__/grn_agent.cpython-314.pyc +0 -0
  1262. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/procurement-ops/agency/__pycache__/supply_report_agent.cpython-314.pyc +0 -0
  1263. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/procurement-ops/agency/__pycache__/tariff_classifier_agent.cpython-314.pyc +0 -0
  1264. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/procurement-ops/agency/__pycache__/tools.cpython-314.pyc +0 -0
  1265. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/procurement-ops/agency/data_loader.py +0 -0
  1266. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/procurement-ops/agency/grn_agent.py +0 -0
  1267. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/procurement-ops/agency/supply_report_agent.py +0 -0
  1268. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/procurement-ops/agency/tariff_classifier_agent.py +0 -0
  1269. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/procurement-ops/agency/tools.py +0 -0
  1270. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/procurement-ops/configs/inventory.yaml +0 -0
  1271. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/procurement-ops/configs/open_pos.yaml +0 -0
  1272. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/procurement-ops/configs/suppliers.yaml +0 -0
  1273. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/procurement-ops/docker-compose.yml +0 -0
  1274. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/procurement-ops/dockerignore +0 -0
  1275. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/procurement-ops/env +0 -0
  1276. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/procurement-ops/gitignore +0 -0
  1277. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/procurement-ops/main.py +0 -0
  1278. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/procurement-ops/tests/__init__.py +0 -0
  1279. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/procurement-ops/tests/__pycache__/__init__.cpython-314.pyc +0 -0
  1280. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/procurement-ops/tests/__pycache__/test_config_shape.cpython-314-pytest-9.0.2.pyc +0 -0
  1281. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/procurement-ops/tests/test_config_shape.py +0 -0
  1282. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/production-planning/Dockerfile +0 -0
  1283. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/production-planning/README.md +0 -0
  1284. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/production-planning/_prompts.json +0 -0
  1285. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/production-planning/agency/__init__.py +0 -0
  1286. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/production-planning/agency/_shared/__init__.py +0 -0
  1287. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/production-planning/agency/demand_sensor_agent.py +0 -0
  1288. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/production-planning/agency/material_requirements_agent.py +0 -0
  1289. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/production-planning/agency/rolling_reopt_orchestrator_agent.py +0 -0
  1290. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/production-planning/agency/supplier_signal_agent.py +0 -0
  1291. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/production-planning/docker-compose.yml +0 -0
  1292. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/production-planning/dockerignore +0 -0
  1293. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/production-planning/env +0 -0
  1294. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/production-planning/examples/01_demand_signal_normal.json +0 -0
  1295. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/production-planning/examples/02_supplier_delay.json +0 -0
  1296. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/production-planning/examples/03_emergency_constraint_alert.json +0 -0
  1297. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/production-planning/examples/04_supplier_capacity_change.json +0 -0
  1298. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/production-planning/examples/README.md +0 -0
  1299. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/production-planning/examples/run_examples.py +0 -0
  1300. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/production-planning/gitignore +0 -0
  1301. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/production-planning/logs/leafmesh_2026-06-09.log +0 -0
  1302. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/production-planning/logs/leafmesh_2026-06-10.log +0 -0
  1303. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/production-planning/pytest.ini +0 -0
  1304. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/production-planning/requirements-dev.txt +0 -0
  1305. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/production-planning/tests/__init__.py +0 -0
  1306. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/production-planning/tests/__pycache__/__init__.cpython-314.pyc +0 -0
  1307. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/quality-yield/Dockerfile +0 -0
  1308. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/quality-yield/_prompts.json +0 -0
  1309. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/quality-yield/agency/__init__.py +0 -0
  1310. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/quality-yield/agency/_shared/__init__.py +0 -0
  1311. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/quality-yield/agency/corrective_action_tracker_agent.py +0 -0
  1312. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/quality-yield/docker-compose.yml +0 -0
  1313. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/quality-yield/dockerignore +0 -0
  1314. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/quality-yield/env +0 -0
  1315. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/quality-yield/examples/04_regulatory_audit_pull.json +0 -0
  1316. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/quality-yield/examples/run_examples.py +0 -0
  1317. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/quality-yield/gitignore +0 -0
  1318. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/quality-yield/pytest.ini +0 -0
  1319. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/quality-yield/requirements-dev.txt +0 -0
  1320. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/quality-yield/tests/__init__.py +0 -0
  1321. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/quality-yield/tests/__pycache__/__init__.cpython-314.pyc +0 -0
  1322. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/quality-yield/tests/__pycache__/conftest.cpython-314-pytest-9.0.2.pyc +0 -0
  1323. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/quality-yield/tests/conftest.py +0 -0
  1324. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/quote-to-cash/Dockerfile +0 -0
  1325. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/quote-to-cash/_prompts.json +0 -0
  1326. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/quote-to-cash/agency/__init__.py +0 -0
  1327. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/quote-to-cash/agency/_shared/__init__.py +0 -0
  1328. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/quote-to-cash/agency/bundle_recommender_agent.py +0 -0
  1329. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/quote-to-cash/agency/competitor_watch_agent.py +0 -0
  1330. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/quote-to-cash/agency/contract_redline_tracker_agent.py +0 -0
  1331. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/quote-to-cash/agency/cost_calculator_agent.py +0 -0
  1332. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/quote-to-cash/agency/discount_policy_agent.py +0 -0
  1333. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/quote-to-cash/agency/rfq_ingester_agent.py +0 -0
  1334. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/quote-to-cash/docker-compose.yml +0 -0
  1335. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/quote-to-cash/dockerignore +0 -0
  1336. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/quote-to-cash/env +0 -0
  1337. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/quote-to-cash/examples/01_rfq_standard.json +0 -0
  1338. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/quote-to-cash/examples/02_steep_discount_finance.json +0 -0
  1339. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/quote-to-cash/examples/03_competitor_price_change.json +0 -0
  1340. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/quote-to-cash/examples/04_renewal_uplift_bundle.json +0 -0
  1341. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/quote-to-cash/examples/README.md +0 -0
  1342. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/quote-to-cash/examples/run_examples.py +0 -0
  1343. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/quote-to-cash/gitignore +0 -0
  1344. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/quote-to-cash/logs/leafmesh_2026-06-09.log +0 -0
  1345. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/quote-to-cash/logs/leafmesh_2026-06-10.log +0 -0
  1346. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/quote-to-cash/pytest.ini +0 -0
  1347. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/quote-to-cash/requirements-dev.txt +0 -0
  1348. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/quote-to-cash/tests/__init__.py +0 -0
  1349. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/quote-to-cash/tests/__pycache__/__init__.cpython-314.pyc +0 -0
  1350. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/quote-to-cash/tests/__pycache__/conftest.cpython-314-pytest-9.0.2.pyc +0 -0
  1351. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/quote-to-cash/tests/__pycache__/test_config_shape.cpython-314-pytest-9.0.2.pyc +0 -0
  1352. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/quote-to-cash/tests/conftest.py +0 -0
  1353. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/quote-to-cash/tests/test_config_shape.py +0 -0
  1354. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/recruiting-ops/Dockerfile +0 -0
  1355. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/recruiting-ops/_prompts.json +0 -0
  1356. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/recruiting-ops/agency/__init__.py +0 -0
  1357. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/recruiting-ops/agency/_shared/__init__.py +0 -0
  1358. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/recruiting-ops/agency/bias_audit_agent.py +0 -0
  1359. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/recruiting-ops/agency/req_intake_agent.py +0 -0
  1360. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/recruiting-ops/agency/resume_screener_agent.py +0 -0
  1361. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/recruiting-ops/agency/sourcing_agent.py +0 -0
  1362. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/recruiting-ops/docker-compose.yml +0 -0
  1363. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/recruiting-ops/dockerignore +0 -0
  1364. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/recruiting-ops/env +0 -0
  1365. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/recruiting-ops/examples/01_new_req_filed.json +0 -0
  1366. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/recruiting-ops/examples/04_ghosted_candidate_close.json +0 -0
  1367. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/recruiting-ops/examples/run_examples.py +0 -0
  1368. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/recruiting-ops/gitignore +0 -0
  1369. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/recruiting-ops/pytest.ini +0 -0
  1370. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/recruiting-ops/requirements-dev.txt +0 -0
  1371. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/recruiting-ops/tests/__init__.py +0 -0
  1372. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/recruiting-ops/tests/__pycache__/__init__.cpython-314.pyc +0 -0
  1373. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/recruiting-ops/tests/__pycache__/conftest.cpython-314-pytest-9.0.2.pyc +0 -0
  1374. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/recruiting-ops/tests/conftest.py +0 -0
  1375. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/sales-orchestration/Dockerfile +0 -0
  1376. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/sales-orchestration/_prompts.json +0 -0
  1377. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/sales-orchestration/agency/__init__.py +0 -0
  1378. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/sales-orchestration/agency/_shared/__init__.py +0 -0
  1379. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/sales-orchestration/agency/abm_orchestrator_agent.py +0 -0
  1380. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/sales-orchestration/agency/deal_nurturer_agent.py +0 -0
  1381. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/sales-orchestration/agency/lead_revival_agent.py +0 -0
  1382. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/sales-orchestration/docker-compose.yml +0 -0
  1383. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/sales-orchestration/dockerignore +0 -0
  1384. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/sales-orchestration/env +0 -0
  1385. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/sales-orchestration/examples/02_cold_lead_revival.json +0 -0
  1386. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/sales-orchestration/examples/04_event_followup_burst.json +0 -0
  1387. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/sales-orchestration/examples/06_deal_nurture_sweep.json +0 -0
  1388. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/sales-orchestration/examples/07_abm_account_activation.json +0 -0
  1389. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/sales-orchestration/examples/run_examples.py +0 -0
  1390. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/sales-orchestration/gitignore +0 -0
  1391. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/sales-orchestration/pytest.ini +0 -0
  1392. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/sales-orchestration/requirements-dev.txt +0 -0
  1393. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/sales-orchestration/tests/__init__.py +0 -0
  1394. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/sales-orchestration/tests/__pycache__/__init__.cpython-314.pyc +0 -0
  1395. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/sales-orchestration/tests/__pycache__/test_config_shape.cpython-314-pytest-9.0.2.pyc +0 -0
  1396. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/sales-orchestration/tests/test_config_shape.py +0 -0
  1397. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/services-delivery/Dockerfile +0 -0
  1398. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/services-delivery/_prompts.json +0 -0
  1399. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/services-delivery/agency/__init__.py +0 -0
  1400. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/services-delivery/agency/_shared/__init__.py +0 -0
  1401. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/services-delivery/agency/citation_agent.py +0 -0
  1402. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/services-delivery/agency/context_agent.py +0 -0
  1403. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/services-delivery/agency/engagement_status_drafter_agent.py +0 -0
  1404. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/services-delivery/agency/status_sweep_orchestrator_agent.py +0 -0
  1405. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/services-delivery/docker-compose.yml +0 -0
  1406. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/services-delivery/dockerignore +0 -0
  1407. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/services-delivery/env +0 -0
  1408. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/services-delivery/examples/02_friday_status_pack.json +0 -0
  1409. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/services-delivery/examples/03_high_stakes_deliverable.json +0 -0
  1410. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/services-delivery/examples/04_monthly_steering_pack.json +0 -0
  1411. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/services-delivery/examples/run_examples.py +0 -0
  1412. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/services-delivery/gitignore +0 -0
  1413. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/services-delivery/pytest.ini +0 -0
  1414. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/services-delivery/requirements-dev.txt +0 -0
  1415. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/services-delivery/tests/__init__.py +0 -0
  1416. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/services-delivery/tests/__pycache__/__init__.cpython-314.pyc +0 -0
  1417. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/services-delivery/tests/__pycache__/conftest.cpython-314-pytest-9.0.2.pyc +0 -0
  1418. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/services-delivery/tests/conftest.py +0 -0
  1419. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/warehouse-supply-chain/Dockerfile +0 -0
  1420. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/warehouse-supply-chain/_prompts.json +0 -0
  1421. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/warehouse-supply-chain/agency/__init__.py +0 -0
  1422. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/warehouse-supply-chain/agency/_shared/__init__.py +0 -0
  1423. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/warehouse-supply-chain/agency/carrier_selector_agent.py +0 -0
  1424. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/warehouse-supply-chain/agency/humanoid_status_agent.py +0 -0
  1425. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/warehouse-supply-chain/agency/inspection_humanoid.py +0 -0
  1426. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/warehouse-supply-chain/agency/inventory_agent.py +0 -0
  1427. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/warehouse-supply-chain/agency/loader_humanoid.py +0 -0
  1428. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/warehouse-supply-chain/agency/packer_humanoid.py +0 -0
  1429. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/warehouse-supply-chain/agency/picker_humanoid.py +0 -0
  1430. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/warehouse-supply-chain/agency/replenishment_planner_agent.py +0 -0
  1431. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/warehouse-supply-chain/agency/returns_handler_agent.py +0 -0
  1432. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/warehouse-supply-chain/docker-compose.yml +0 -0
  1433. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/warehouse-supply-chain/dockerignore +0 -0
  1434. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/warehouse-supply-chain/env +0 -0
  1435. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/warehouse-supply-chain/examples/02_short_pick_exception.json +0 -0
  1436. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/warehouse-supply-chain/examples/03_returns_inspection.json +0 -0
  1437. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/warehouse-supply-chain/examples/04_carrier_outage_failover.json +0 -0
  1438. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/warehouse-supply-chain/examples/run_examples.py +0 -0
  1439. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/warehouse-supply-chain/gitignore +0 -0
  1440. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/warehouse-supply-chain/pytest.ini +0 -0
  1441. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/warehouse-supply-chain/requirements-dev.txt +0 -0
  1442. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/warehouse-supply-chain/tests/__init__.py +0 -0
  1443. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/warehouse-supply-chain/tests/__pycache__/__init__.cpython-314.pyc +0 -0
  1444. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/warehouse-supply-chain/tests/__pycache__/conftest.cpython-314-pytest-9.0.2.pyc +0 -0
  1445. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh/templates/warehouse-supply-chain/tests/conftest.py +0 -0
  1446. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh.egg-info/dependency_links.txt +0 -0
  1447. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh.egg-info/entry_points.txt +0 -0
  1448. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh.egg-info/requires.txt +0 -0
  1449. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/create_leafmesh.egg-info/top_level.txt +0 -0
  1450. {create_leafmesh-2.3.2 → create_leafmesh-2.4.0}/setup.cfg +0 -0
@@ -0,0 +1,94 @@
1
+ Metadata-Version: 2.4
2
+ Name: create-leafmesh
3
+ Version: 2.4.0
4
+ Summary: Project scaffolding + cloud-deploy tool for LeafMesh
5
+ License-Expression: MIT
6
+ Requires-Python: >=3.10
7
+ Description-Content-Type: text/markdown
8
+ Requires-Dist: questionary<3,>=2.0
9
+ Requires-Dist: PyYAML>=6.0
10
+ Requires-Dist: boto3<2,>=1.34
11
+
12
+ # create-leafmesh
13
+
14
+ Project scaffolding tool for [LeafMesh](https://pypi.org/project/leafmesh/) — the YAML-native multi-agent orchestration platform.
15
+
16
+ ## Install
17
+
18
+ ```bash
19
+ pip install create-leafmesh
20
+ ```
21
+
22
+ ## Create a Project
23
+
24
+ ```bash
25
+ create-leafmesh create my-project
26
+ cd my-project
27
+ python -m venv .venv && source .venv/bin/activate
28
+ pip install -r requirements.txt
29
+ python main.py
30
+ ```
31
+
32
+ ## CLI Options
33
+
34
+ ```bash
35
+ # Create in a specific directory
36
+ create-leafmesh create my-project -o /path/to/dir
37
+
38
+ # Skip git initialization
39
+ create-leafmesh create my-project --no-git
40
+
41
+ # Interactive mode (prompts for project name)
42
+ create-leafmesh create
43
+ ```
44
+
45
+ ## Generated Project Structure
46
+
47
+ ```
48
+ my-project/
49
+ configs/
50
+ config.yaml # Agent definitions, mesh wiring, HITL config
51
+ agency/
52
+ greeter_agent.py # LLM agent with @pre_compose
53
+ processor_agent.py # Programmatic agent with @conditional_chain
54
+ researcher_agent.py # LLM agent with @chain_with_results + smart memory
55
+ fallback_researcher_agent.py # Fast fallback (race pattern)
56
+ advisor_agent.py # LLM fan-in with @chain + @compose
57
+ scheduler_agent.py # Cron-scheduled agent
58
+ tools.py # Custom tools (@global_tool, @tool)
59
+ external_agents.py # Integration reference (CrewAI, LangGraph, etc.)
60
+ main.py # Entry point
61
+ hitl_stub_receiver.py # Webhook stub for testing HITL locally
62
+ requirements.txt
63
+ .env # API keys
64
+ Dockerfile
65
+ docker-compose.yml # Redis + app
66
+ ```
67
+
68
+ ## What's Included
69
+
70
+ - **8 agents** showcasing all 4 agent types (human, llm, programmatic, external)
71
+ - **Human-in-the-Loop (HITL)** with dual webhook mode and `from_agent` routing
72
+ - **Fan-in/fan-out** with OR expressions (`processor AND (researcher OR fallback)`)
73
+ - **Smart memory** with hybrid recency/relevance scoring
74
+ - **Scheduled agents** with cron expressions
75
+ - **Custom tools** with access control and categories
76
+ - **All 5 decorators**: `@pre_compose`, `@chain`, `@chain_with_results`, `@conditional_chain`, `@compose`
77
+ - **HITL test stub** (`hitl_stub_receiver.py`) for local webhook testing
78
+ - **Docker-ready** with Redis included
79
+ - **Full README** with HITL walkthrough (2 scenarios, step-by-step)
80
+
81
+ ## Requirements
82
+
83
+ - Python 3.10+
84
+ - Redis server running (default: localhost:6379)
85
+ - At least one LLM API key (e.g. `OPENAI_API_KEY` in `.env`)
86
+
87
+ ## Links
88
+
89
+ - [LeafMesh SDK](https://pypi.org/project/leafmesh/)
90
+ - [LeafCraft Studios](https://leafcraft.ai)
91
+
92
+ ## License
93
+
94
+ MIT
@@ -0,0 +1,3 @@
1
+ """create-leafmesh — Project scaffolding + cloud-deploy tool for LeafMesh."""
2
+
3
+ __version__ = "2.4.0"
@@ -0,0 +1,195 @@
1
+ """LLM Agent — Auto-discovered with @chain + @compose (OR fan-in advisor).
2
+
3
+ auto_discover matches function name 'advisor_agent' to YAML agent config.
4
+
5
+ Features showcased:
6
+ - @chain: sequential post-processing pipeline (validate_inputs -> score_priorities)
7
+ - @compose: inject helper functions into context (report shaping, alert shaping)
8
+ - wait_for: "processor_agent AND (researcher_agent OR fallback_researcher_agent)"
9
+ - OR fan-in: whichever research agent finishes first satisfies the expression
10
+ - optimization_strategy: "performance" — prioritizes quality over cost
11
+
12
+ Execution flow:
13
+ 1. Fan-in: SDK waits for processor_agent AND (researcher OR fallback_researcher)
14
+ 2. fallback_researcher_agent is instant → OR resolves immediately
15
+ 3. LLM analyzes combined upstream results
16
+ 4. This function post-processes, picking the best research source
17
+ 5. @compose injects shape_report and shape_alerts into context
18
+ 6. @chain runs: validate_inputs -> score_priorities (sequential pipeline)
19
+
20
+ Fan-in patterns (all supported by the SDK):
21
+ wait_for: "A AND B" — waits for both A and B
22
+ wait_for: "A OR B" — waits for either A or B (first wins)
23
+ wait_for: "A AND B?" — A required, B optional
24
+ wait_for: "A AND (B OR C)" — A required + first of B or C (used here)
25
+ wait_for: "A AND (B OR C) AND D?" — A required + first of B/C + D optional
26
+ """
27
+ from typing import Any
28
+
29
+ from leafmesh import chain, compose, LeafMeshLogger
30
+
31
+ logger = LeafMeshLogger(__name__)
32
+
33
+
34
+ def _up(input_data: dict[str, Any], context: dict[str, Any],
35
+ key: str, default: Any = None) -> Any:
36
+ """Shape-tolerant upstream read: flat input_data → upstream_yields
37
+ (flat or keyed by agent name) → context['upstream']."""
38
+ if key in input_data and input_data[key] not in (None, ""):
39
+ return input_data[key]
40
+ uy = input_data.get("upstream_yields")
41
+ if isinstance(uy, dict):
42
+ if key in uy and uy[key] not in (None, ""):
43
+ return uy[key]
44
+ for v in uy.values():
45
+ if isinstance(v, dict) and v.get(key) not in (None, ""):
46
+ return v[key]
47
+ for container_key in ("upstream_results",):
48
+ ur = input_data.get(container_key)
49
+ if isinstance(ur, dict):
50
+ for v in ur.values():
51
+ if isinstance(v, dict) and v.get(key) not in (None, ""):
52
+ return v[key]
53
+ cu = context.get("upstream") if isinstance(context, dict) else None
54
+ if isinstance(cu, dict) and cu.get(key) not in (None, ""):
55
+ return cu[key]
56
+ return default
57
+
58
+
59
+ def _up_agent(input_data: dict[str, Any], context: dict[str, Any],
60
+ agent: str) -> dict[str, Any]:
61
+ """Shape-tolerant per-agent yields read — checks every container the
62
+ SDK may deliver agent-keyed yields in."""
63
+ containers = (
64
+ input_data.get("upstream_yields"),
65
+ input_data.get("upstream_results"),
66
+ context.get("upstream") if isinstance(context, dict) else None,
67
+ )
68
+ for c in containers:
69
+ if isinstance(c, dict) and isinstance(c.get(agent), dict):
70
+ return c[agent]
71
+ return {}
72
+
73
+
74
+ def validate_inputs(result, context):
75
+ """Chain step 1: Validate that upstream data is present and well-formed."""
76
+ if not result.get("recommendations"):
77
+ result["recommendations"] = ["No specific recommendations available"]
78
+ if not result.get("risk_assessment"):
79
+ result["risk_assessment"] = "Unable to assess — insufficient data"
80
+ result["validated"] = True
81
+ return result
82
+
83
+
84
+ def score_priorities(result, context):
85
+ """Chain step 2: Score and rank recommendations by priority."""
86
+ recs = result.get("recommendations", [])
87
+ result["priority_score"] = min(1.0, len(recs) * 0.2) if recs else 0.0
88
+ result["next_steps"] = recs[:3] if recs else ["Gather more data"]
89
+ result["scored"] = True
90
+ return result
91
+
92
+
93
+ def shape_report(data, context):
94
+ """Compose helper: Shape output for report consumption."""
95
+ return {
96
+ "title": "Advisory Report",
97
+ "recommendations": data.get("recommendations", []),
98
+ "risk_assessment": data.get("risk_assessment", ""),
99
+ "priority_score": data.get("priority_score", 0),
100
+ "project": "{{project_name}}",
101
+ }
102
+
103
+
104
+ def shape_alerts(data, context):
105
+ """Compose helper: Shape output for alerting systems."""
106
+ score = data.get("priority_score", 0)
107
+ return {
108
+ "alert_level": "high" if score > 0.7 else "medium" if score > 0.4 else "low",
109
+ "summary": data.get("risk_assessment", ""),
110
+ "action_required": score > 0.5,
111
+ }
112
+
113
+
114
+ @chain(validate_inputs, score_priorities)
115
+ @compose(report=shape_report, alerts=shape_alerts)
116
+ async def advisor_agent(llm_response, input_data, context):
117
+ """Analyze upstream results and produce actionable recommendations.
118
+
119
+ At this point:
120
+ - Fan-in complete: processor_agent AND (researcher OR fallback) finished
121
+ - input_data["upstream_yields"] has yields from all contributing agents
122
+ - context["report"] and context["alerts"] are injected by @compose
123
+ - After this function, @chain runs validate_inputs -> score_priorities
124
+ """
125
+ # ─── Fan-in upstream yields (shape-tolerant) ───
126
+ # For OR fan-in, the SDK includes yields from whichever agents completed.
127
+ # Check both research agents — prefer LLM researcher (higher confidence).
128
+ processor_yields = _up_agent(input_data, context, "processor_agent")
129
+ researcher_yields = _up_agent(input_data, context, "researcher_agent")
130
+ fallback_yields = _up_agent(input_data, context, "fallback_researcher_agent")
131
+
132
+ # ─── Pick the best research source ───
133
+ # LLM researcher has confidence 0.85, fallback has 0.6
134
+ skipped_agents = []
135
+ if researcher_yields and researcher_yields.get("status") == "researched":
136
+ research_data = researcher_yields
137
+ research_source = "researcher_agent"
138
+ research_confidence = 0.85
139
+ elif fallback_yields and fallback_yields.get("status") == "researched":
140
+ research_data = fallback_yields
141
+ research_source = "fallback_researcher_agent"
142
+ research_confidence = 0.6
143
+ skipped_agents.append("researcher_agent")
144
+ else:
145
+ research_data = {}
146
+ research_source = "none"
147
+ research_confidence = 0.0
148
+ skipped_agents.extend(["researcher_agent", "fallback_researcher_agent"])
149
+
150
+ # ─── Build recommendations from upstream data ───
151
+ # _up fallbacks recover the data when yields arrive flat (un-keyed).
152
+ processed_items = processor_yields.get("processed_items") \
153
+ or _up(input_data, context, "processed_items", []) or []
154
+ findings = research_data.get("findings") \
155
+ or _up(input_data, context, "findings", []) or []
156
+
157
+ recommendations = []
158
+ if processed_items:
159
+ urgent = [i for i in processed_items if i.get("category") == "urgent"]
160
+ if urgent:
161
+ recommendations.append(f"Address {len(urgent)} urgent item(s) immediately")
162
+ recommendations.append(f"Review {len(processed_items)} processed items")
163
+
164
+ if findings:
165
+ recommendations.append(f"Incorporate {len(findings)} research finding(s)")
166
+
167
+ risk = "low"
168
+ if any(i.get("category") == "urgent" for i in processed_items):
169
+ risk = "elevated — urgent items detected"
170
+
171
+ logger.info(f"Advisory complete — {len(recommendations)} recommendations, risk={risk}, source={research_source}")
172
+
173
+ return {
174
+ "recommendations": recommendations,
175
+ "risk_assessment": risk,
176
+ "research_source": research_source,
177
+ "research_confidence": research_confidence,
178
+ "skipped_agents": skipped_agents,
179
+ "source_data": {
180
+ "processed_count": len(processed_items),
181
+ "finding_count": len(findings),
182
+ },
183
+ "status": "advised",
184
+ }
185
+
186
+ # ─── Alternative: @chain_with_results ───
187
+ # If you want to accumulate results from each chain step:
188
+ #
189
+ # from leafmesh import chain_with_results
190
+ #
191
+ # @chain_with_results(validate_inputs, score_priorities)
192
+ # async def advisor_agent(llm_response, input_data, context):
193
+ # # After execution, context["chain_results"] has a list of
194
+ # # each step's return value: [validate_result, score_result]
195
+ # ...
@@ -0,0 +1,110 @@
1
+ """Programmatic Agent — Fast template-based research fallback (no LLM).
2
+
3
+ auto_discover matches function name 'fallback_researcher_agent' to YAML agent config.
4
+
5
+ Features showcased:
6
+ - Programmatic agent: pure Python, no LLM call, instant response
7
+ - OR fan-in: advisor_agent uses wait_for: "processor_agent AND (researcher_agent OR fallback_researcher_agent)"
8
+ - Race pattern: this agent completes instantly while researcher_agent waits for LLM
9
+ - Mirrors researcher_agent's output schema so advisor_agent can consume either
10
+
11
+ Execution flow:
12
+ 1. processor_agent fans out to researcher_agent AND fallback_researcher_agent
13
+ 2. This agent returns immediately with template-based findings
14
+ 3. researcher_agent is still waiting for LLM response
15
+ 4. advisor_agent's OR expression resolves — it proceeds with fallback data
16
+ 5. researcher_agent result arrives later (already resolved, ignored by fan-in)
17
+ """
18
+ from typing import Any
19
+
20
+ from leafmesh import chain, LeafMeshLogger
21
+
22
+ logger = LeafMeshLogger(__name__)
23
+
24
+
25
+ def _up(input_data: dict[str, Any], context: dict[str, Any],
26
+ key: str, default: Any = None) -> Any:
27
+ """Shape-tolerant upstream read: flat input_data → upstream_yields
28
+ (flat or keyed by agent name) → context['upstream']."""
29
+ if key in input_data and input_data[key] not in (None, ""):
30
+ return input_data[key]
31
+ uy = input_data.get("upstream_yields")
32
+ if isinstance(uy, dict):
33
+ if key in uy and uy[key] not in (None, ""):
34
+ return uy[key]
35
+ for v in uy.values():
36
+ if isinstance(v, dict) and v.get(key) not in (None, ""):
37
+ return v[key]
38
+ for container_key in ("upstream_results",):
39
+ ur = input_data.get(container_key)
40
+ if isinstance(ur, dict):
41
+ for v in ur.values():
42
+ if isinstance(v, dict) and v.get(key) not in (None, ""):
43
+ return v[key]
44
+ cu = context.get("upstream") if isinstance(context, dict) else None
45
+ if isinstance(cu, dict) and cu.get(key) not in (None, ""):
46
+ return cu[key]
47
+ return default
48
+
49
+
50
+ def enrich_findings(result, context):
51
+ """Chain step: Add analysis metadata to template findings."""
52
+ findings = result.get("findings", [])
53
+ result["analysis"] = {
54
+ "total_findings": len(findings),
55
+ "confidence_score": 0.6,
56
+ "data_quality": "template",
57
+ "source_type": "fallback_template",
58
+ }
59
+ result["report"] = {
60
+ "title": "Fallback Research Findings",
61
+ "confidence": 0.6,
62
+ "quality": "template",
63
+ "finding_count": len(findings),
64
+ "formatted": True,
65
+ }
66
+ return result
67
+
68
+
69
+ @chain(enrich_findings)
70
+ async def fallback_researcher_agent(llm_response, input_data, context):
71
+ """Instant template-based research — no LLM needed.
72
+
73
+ Provides a fast fallback so the advisor_agent can proceed immediately
74
+ via OR fan-in without waiting for the slower LLM-based researcher_agent.
75
+ """
76
+ # Shape-tolerant upstream reads via _up — processor yields may arrive
77
+ # flat, keyed under upstream_yields/upstream_results, or in context.
78
+ upstream_item_count = _up(input_data, context, "item_count", 0)
79
+
80
+ calling_data = input_data.get("calling_agent_response", {})
81
+ processed_items = calling_data.get("processed_items") \
82
+ or _up(input_data, context, "processed_items", []) or []
83
+
84
+ # Build template-based findings from upstream data
85
+ findings = []
86
+ for item in processed_items:
87
+ findings.append({
88
+ "source": "template",
89
+ "content": item.get("item", ""),
90
+ "recommendation": f"Review and address: {item.get('item', 'unknown')}",
91
+ })
92
+
93
+ if not findings:
94
+ findings.append({
95
+ "source": "template",
96
+ "content": "No specific items to research",
97
+ "recommendation": "Gather more information from the user",
98
+ })
99
+
100
+ logger.info(f"Fallback research — {len(findings)} template findings")
101
+
102
+ return {
103
+ "findings": findings,
104
+ "query": str(_up(input_data, context, "message", "")
105
+ or _up(input_data, context, "research_topic", "") or ""),
106
+ "upstream_item_count": upstream_item_count,
107
+ "source_agent": "fallback_researcher_agent",
108
+ "source_type": "fallback_template",
109
+ "status": "researched",
110
+ }
@@ -0,0 +1,129 @@
1
+ """LLM Agent — Auto-discovered with @pre_compose (all 3 processor types).
2
+
3
+ auto_discover matches function name 'greeter_agent' to YAML agent config.
4
+
5
+ Execution flow:
6
+ 1. Processors run BEFORE the LLM call (data preparation)
7
+ 2. context_parts (care, sentiment, guardrails) shape the LLM's tone
8
+ 3. LLM generates response using YAML prompt + prepared data
9
+ 4. This function post-processes the LLM response
10
+
11
+ Processor results in context["prepared_data"]:
12
+ - context_processor → context["prepared_data"]["business_context"]
13
+ - input_processor → context["prepared_data"]["clean_user_input"]
14
+ - others_processor → context["prepared_data"]["others"]
15
+ """
16
+ from typing import Any
17
+
18
+ from leafmesh import pre_compose, LeafMeshLogger
19
+
20
+ logger = LeafMeshLogger(__name__)
21
+
22
+
23
+ def _up(input_data: dict[str, Any], context: dict[str, Any],
24
+ key: str, default: Any = None) -> Any:
25
+ """Shape-tolerant upstream read: flat input_data → upstream_yields
26
+ (flat or keyed by agent name) → context['upstream']."""
27
+ if key in input_data and input_data[key] not in (None, ""):
28
+ return input_data[key]
29
+ uy = input_data.get("upstream_yields")
30
+ if isinstance(uy, dict):
31
+ if key in uy and uy[key] not in (None, ""):
32
+ return uy[key]
33
+ for v in uy.values():
34
+ if isinstance(v, dict) and v.get(key) not in (None, ""):
35
+ return v[key]
36
+ for container_key in ("upstream_results",):
37
+ ur = input_data.get(container_key)
38
+ if isinstance(ur, dict):
39
+ for v in ur.values():
40
+ if isinstance(v, dict) and v.get(key) not in (None, ""):
41
+ return v[key]
42
+ cu = context.get("upstream") if isinstance(context, dict) else None
43
+ if isinstance(cu, dict) and cu.get(key) not in (None, ""):
44
+ return cu[key]
45
+ return default
46
+
47
+
48
+ def process_context(input_data, context):
49
+ """context_processor: Prepare business context for the LLM prompt.
50
+ Runs before LLM — enriches the prompt with relevant domain info."""
51
+ return {
52
+ "domain": "task_management",
53
+ "session_id": context.get("session_id", "unknown"),
54
+ }
55
+
56
+
57
+ def clean_input(input_data, context):
58
+ """input_processor: Extract and clean the user's message.
59
+ Runs before LLM — normalizes input for consistent processing.
60
+ When the human client calls back, the SDK delivers only meta fields
61
+ (human_message etc.) — treat human_message as the user utterance."""
62
+ raw = input_data.get("message", "") or input_data.get("human_message", "")
63
+ return {"user_message": str(raw or "").strip()}
64
+
65
+
66
+ def load_extras(input_data, context):
67
+ """others_processor: Load auxiliary data (feature flags, config, etc.).
68
+ Runs before LLM — provides supplementary data."""
69
+ return {"timestamp_requested": "message" in input_data}
70
+
71
+
72
+ @pre_compose(
73
+ context_processor=process_context,
74
+ input_processor=clean_input,
75
+ others_processor=load_extras,
76
+ )
77
+ async def greeter_agent(llm_response, input_data, context):
78
+ """Post-process the LLM's response.
79
+
80
+ At this point:
81
+ - Processors already ran (before LLM call)
82
+ - context_parts (care, sentiment, guardrails) already shaped the LLM's tone
83
+ - llm_response has the LLM's output
84
+ - context["prepared_data"] has processor results
85
+ """
86
+ prepared = context.get("prepared_data", {})
87
+
88
+ # ─── Memory access (add memory: true to this agent's YAML to enable) ───
89
+ # memory_posts = context.get("memory_posts", [])
90
+ # Each post has "role" (user/assistant) and "content" (text).
91
+ # See researcher_agent.py for a working memory example.
92
+
93
+ # ─── Upstream yields access ───
94
+ # If this agent is called by another agent (e.g., client → greeter_agent),
95
+ # the SDK injects upstream yields as input_data["upstream_yields"].
96
+ # upstream_yields = input_data.get("upstream_yields", {})
97
+ # client_yields = upstream_yields.get("client", {})
98
+
99
+ # Shape-tolerant read — message may arrive flat, under upstream
100
+ # containers, or (conversational HITL) as human_message meta only.
101
+ user_input = str(
102
+ _up(input_data, context, "message", "")
103
+ or input_data.get("human_message", "")
104
+ or ""
105
+ )
106
+ logger.info(f"Greeting user — input: {user_input[:80]}")
107
+
108
+ # llm_response is a parsed dict (the LLM's structured JSON output).
109
+ # Extract the SPECIFIC fields we want — don't assign the whole dict
110
+ # to a single key, that produces "greeting: type mismatch (got dict)".
111
+ if isinstance(llm_response, dict):
112
+ greeting = llm_response.get("greeting") or "Hello!"
113
+ # If the LLM also produced a sentiment, prefer it over our default
114
+ sentiment = llm_response.get("detected_sentiment") or "neutral"
115
+ else:
116
+ # Fallback if LLM returned a plain string
117
+ greeting = str(llm_response) if llm_response else "Hello!"
118
+ sentiment = "neutral"
119
+
120
+ return {
121
+ "greeting": greeting,
122
+ "user_input": user_input,
123
+ "detected_sentiment": sentiment,
124
+ "domain": prepared.get("business_context", {}).get("domain", "general"),
125
+ "status": "greeted",
126
+ # Identity passthrough — the client (human) inbox declares these inputs
127
+ "user_message": str(_up(input_data, context, "user_message", "") or "") or user_input,
128
+ "request_type": str(_up(input_data, context, "request_type", "") or ""),
129
+ }