touchstone-platform 1.0.2__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (388) hide show
  1. touchstone_platform-1.0.2/.gitignore +45 -0
  2. touchstone_platform-1.0.2/LICENSE.md +242 -0
  3. touchstone_platform-1.0.2/PKG-INFO +512 -0
  4. touchstone_platform-1.0.2/README.md +193 -0
  5. touchstone_platform-1.0.2/ROADMAP.md +477 -0
  6. touchstone_platform-1.0.2/alembic/README +1 -0
  7. touchstone_platform-1.0.2/alembic/env.py +50 -0
  8. touchstone_platform-1.0.2/alembic/script.py.mako +28 -0
  9. touchstone_platform-1.0.2/alembic/versions/0001_initial_schema.py +109 -0
  10. touchstone_platform-1.0.2/alembic/versions/0002_add_eval_core_tables.py +69 -0
  11. touchstone_platform-1.0.2/alembic/versions/0003_add_leaderboard_snapshots.py +36 -0
  12. touchstone_platform-1.0.2/alembic/versions/0004_request_cache_telemetry.py +47 -0
  13. touchstone_platform-1.0.2/alembic/versions/0005_add_catalog_tables.py +79 -0
  14. touchstone_platform-1.0.2/alembic/versions/0006_add_lifecycle_tables.py +120 -0
  15. touchstone_platform-1.0.2/alembic/versions/0007_add_outcomes_and_pipeline.py +116 -0
  16. touchstone_platform-1.0.2/alembic/versions/0008_add_prism_tables.py +115 -0
  17. touchstone_platform-1.0.2/app/__init__.py +1 -0
  18. touchstone_platform-1.0.2/app/agent_tasks.py +34 -0
  19. touchstone_platform-1.0.2/app/audit/__init__.py +4 -0
  20. touchstone_platform-1.0.2/app/audit/ledger.py +186 -0
  21. touchstone_platform-1.0.2/app/audit/normalizer.py +62 -0
  22. touchstone_platform-1.0.2/app/audit/orchestrator.py +117 -0
  23. touchstone_platform-1.0.2/app/audit/task_matcher.py +85 -0
  24. touchstone_platform-1.0.2/app/auth.py +437 -0
  25. touchstone_platform-1.0.2/app/billing.py +337 -0
  26. touchstone_platform-1.0.2/app/catalog/__init__.py +1 -0
  27. touchstone_platform-1.0.2/app/catalog/certify.py +109 -0
  28. touchstone_platform-1.0.2/app/catalog/certify_store.py +175 -0
  29. touchstone_platform-1.0.2/app/catalog/custom.py +198 -0
  30. touchstone_platform-1.0.2/app/catalog/custom_scenario.py +92 -0
  31. touchstone_platform-1.0.2/app/catalog/custom_store.py +101 -0
  32. touchstone_platform-1.0.2/app/catalog/discover.py +375 -0
  33. touchstone_platform-1.0.2/app/catalog/govern.py +175 -0
  34. touchstone_platform-1.0.2/app/catalog/llm.py +166 -0
  35. touchstone_platform-1.0.2/app/catalog/monitor.py +119 -0
  36. touchstone_platform-1.0.2/app/catalog/monitor_store.py +132 -0
  37. touchstone_platform-1.0.2/app/catalog/outcomes.py +169 -0
  38. touchstone_platform-1.0.2/app/catalog/outcomes_store.py +141 -0
  39. touchstone_platform-1.0.2/app/catalog/pipeline.py +362 -0
  40. touchstone_platform-1.0.2/app/catalog/pipeline_store.py +206 -0
  41. touchstone_platform-1.0.2/app/catalog/plan.py +391 -0
  42. touchstone_platform-1.0.2/app/catalog/plan_store.py +117 -0
  43. touchstone_platform-1.0.2/app/catalog/portfolio.py +360 -0
  44. touchstone_platform-1.0.2/app/catalog/prism.py +202 -0
  45. touchstone_platform-1.0.2/app/catalog/prism_classifier.py +241 -0
  46. touchstone_platform-1.0.2/app/catalog/prism_store.py +254 -0
  47. touchstone_platform-1.0.2/app/catalog/ranking.py +250 -0
  48. touchstone_platform-1.0.2/app/catalog/registry_link.py +37 -0
  49. touchstone_platform-1.0.2/app/catalog/router_catalog.py +44 -0
  50. touchstone_platform-1.0.2/app/catalog/router_certify.py +161 -0
  51. touchstone_platform-1.0.2/app/catalog/router_custom.py +89 -0
  52. touchstone_platform-1.0.2/app/catalog/router_discover.py +298 -0
  53. touchstone_platform-1.0.2/app/catalog/router_govern.py +42 -0
  54. touchstone_platform-1.0.2/app/catalog/router_monitor.py +53 -0
  55. touchstone_platform-1.0.2/app/catalog/router_outcomes.py +174 -0
  56. touchstone_platform-1.0.2/app/catalog/router_pipeline.py +127 -0
  57. touchstone_platform-1.0.2/app/catalog/router_plan.py +117 -0
  58. touchstone_platform-1.0.2/app/catalog/router_portfolio.py +30 -0
  59. touchstone_platform-1.0.2/app/catalog/router_prism.py +298 -0
  60. touchstone_platform-1.0.2/app/catalog/router_select.py +99 -0
  61. touchstone_platform-1.0.2/app/catalog/schema.py +146 -0
  62. touchstone_platform-1.0.2/app/catalog/select.py +261 -0
  63. touchstone_platform-1.0.2/app/catalog/store.py +271 -0
  64. touchstone_platform-1.0.2/app/certification.py +189 -0
  65. touchstone_platform-1.0.2/app/connectors/base.py +36 -0
  66. touchstone_platform-1.0.2/app/connectors/billing_aws.py +169 -0
  67. touchstone_platform-1.0.2/app/connectors/billing_azure.py +162 -0
  68. touchstone_platform-1.0.2/app/connectors/cloud.py +382 -0
  69. touchstone_platform-1.0.2/app/connectors/factory.py +33 -0
  70. touchstone_platform-1.0.2/app/connectors/git.py +156 -0
  71. touchstone_platform-1.0.2/app/connectors/local.py +70 -0
  72. touchstone_platform-1.0.2/app/connectors/log_cloudwatch.py +183 -0
  73. touchstone_platform-1.0.2/app/connectors/manager.py +78 -0
  74. touchstone_platform-1.0.2/app/database.py +409 -0
  75. touchstone_platform-1.0.2/app/deepeval_integration.py +108 -0
  76. touchstone_platform-1.0.2/app/engine.py +312 -0
  77. touchstone_platform-1.0.2/app/env_compat.py +40 -0
  78. touchstone_platform-1.0.2/app/eval/__init__.py +19 -0
  79. touchstone_platform-1.0.2/app/eval/adapter.py +35 -0
  80. touchstone_platform-1.0.2/app/eval/agentic_runner.py +100 -0
  81. touchstone_platform-1.0.2/app/eval/aggregation.py +57 -0
  82. touchstone_platform-1.0.2/app/eval/atr/__init__.py +9 -0
  83. touchstone_platform-1.0.2/app/eval/atr/loader.py +171 -0
  84. touchstone_platform-1.0.2/app/eval/attestation.py +217 -0
  85. touchstone_platform-1.0.2/app/eval/attestation_pdf.py +190 -0
  86. touchstone_platform-1.0.2/app/eval/attestation_revocation.py +180 -0
  87. touchstone_platform-1.0.2/app/eval/config.py +28 -0
  88. touchstone_platform-1.0.2/app/eval/cost.py +66 -0
  89. touchstone_platform-1.0.2/app/eval/drift.py +158 -0
  90. touchstone_platform-1.0.2/app/eval/drift_alerts.py +129 -0
  91. touchstone_platform-1.0.2/app/eval/evidence_bundle.py +284 -0
  92. touchstone_platform-1.0.2/app/eval/horizontal/__init__.py +12 -0
  93. touchstone_platform-1.0.2/app/eval/horizontal/loader.py +406 -0
  94. touchstone_platform-1.0.2/app/eval/inspect_export.py +278 -0
  95. touchstone_platform-1.0.2/app/eval/leaderboard.py +44 -0
  96. touchstone_platform-1.0.2/app/eval/leaderboards/__init__.py +0 -0
  97. touchstone_platform-1.0.2/app/eval/leaderboards/agent_threat_safety.py +46 -0
  98. touchstone_platform-1.0.2/app/eval/leaderboards/compliance_boards.py +205 -0
  99. touchstone_platform-1.0.2/app/eval/leaderboards/genai_red_team.py +50 -0
  100. touchstone_platform-1.0.2/app/eval/leaderboards/horizontal_boards.py +49 -0
  101. touchstone_platform-1.0.2/app/eval/leaderboards/medhelm.py +89 -0
  102. touchstone_platform-1.0.2/app/eval/leaderboards/medical_safety.py +45 -0
  103. touchstone_platform-1.0.2/app/eval/leaderboards/modernization_agentic.py +79 -0
  104. touchstone_platform-1.0.2/app/eval/leaderboards/modernization_classic.py +44 -0
  105. touchstone_platform-1.0.2/app/eval/leaderboards/modernization_evidence.py +71 -0
  106. touchstone_platform-1.0.2/app/eval/leaderboards/modernization_robustness.py +53 -0
  107. touchstone_platform-1.0.2/app/eval/leaderboards/modernization_safety.py +53 -0
  108. touchstone_platform-1.0.2/app/eval/leaderboards/schemas/agent_threat_safety.yaml +10 -0
  109. touchstone_platform-1.0.2/app/eval/leaderboards/schemas/compliance_ca_ai_laws.yaml +46 -0
  110. touchstone_platform-1.0.2/app/eval/leaderboards/schemas/compliance_cms_interop.yaml +22 -0
  111. touchstone_platform-1.0.2/app/eval/leaderboards/schemas/compliance_gdpr.yaml +89 -0
  112. touchstone_platform-1.0.2/app/eval/leaderboards/schemas/compliance_hipaa.yaml +33 -0
  113. touchstone_platform-1.0.2/app/eval/leaderboards/schemas/compliance_hti_1.yaml +30 -0
  114. touchstone_platform-1.0.2/app/eval/leaderboards/schemas/compliance_il_ai_laws.yaml +26 -0
  115. touchstone_platform-1.0.2/app/eval/leaderboards/schemas/compliance_mitre_atlas.yaml +90 -0
  116. touchstone_platform-1.0.2/app/eval/leaderboards/schemas/compliance_nyc_ll144.yaml +26 -0
  117. touchstone_platform-1.0.2/app/eval/leaderboards/schemas/compliance_owasp_agentic.yaml +42 -0
  118. touchstone_platform-1.0.2/app/eval/leaderboards/schemas/compliance_owasp_llm_top10.yaml +90 -0
  119. touchstone_platform-1.0.2/app/eval/leaderboards/schemas/compliance_pci_dss.yaml +37 -0
  120. touchstone_platform-1.0.2/app/eval/leaderboards/schemas/compliance_sox.yaml +61 -0
  121. touchstone_platform-1.0.2/app/eval/leaderboards/schemas/genai_red_team.yaml +11 -0
  122. touchstone_platform-1.0.2/app/eval/leaderboards/schemas/horizontal_customer_support.yaml +10 -0
  123. touchstone_platform-1.0.2/app/eval/leaderboards/schemas/horizontal_finance_ap.yaml +10 -0
  124. touchstone_platform-1.0.2/app/eval/leaderboards/schemas/horizontal_hr_assist.yaml +10 -0
  125. touchstone_platform-1.0.2/app/eval/leaderboards/schemas/horizontal_it_servicedesk.yaml +10 -0
  126. touchstone_platform-1.0.2/app/eval/leaderboards/schemas/horizontal_procurement.yaml +10 -0
  127. touchstone_platform-1.0.2/app/eval/leaderboards/schemas/horizontal_sales_ops.yaml +10 -0
  128. touchstone_platform-1.0.2/app/eval/leaderboards/schemas/medhelm_modernization.yaml +46 -0
  129. touchstone_platform-1.0.2/app/eval/leaderboards/schemas/medical_safety.yaml +10 -0
  130. touchstone_platform-1.0.2/app/eval/leaderboards/schemas/modernization_agentic.yaml +31 -0
  131. touchstone_platform-1.0.2/app/eval/leaderboards/schemas/modernization_classic.yaml +42 -0
  132. touchstone_platform-1.0.2/app/eval/leaderboards/schemas/modernization_evidence.yaml +48 -0
  133. touchstone_platform-1.0.2/app/eval/leaderboards/schemas/modernization_robustness.yaml +45 -0
  134. touchstone_platform-1.0.2/app/eval/leaderboards/schemas/modernization_safety.yaml +30 -0
  135. touchstone_platform-1.0.2/app/eval/leaderboards/schemas/swe_bench_verified.yaml +10 -0
  136. touchstone_platform-1.0.2/app/eval/leaderboards/schemas/vertical_edu_k12.yaml +8 -0
  137. touchstone_platform-1.0.2/app/eval/leaderboards/schemas/vertical_fs_insurance_pc.yaml +9 -0
  138. touchstone_platform-1.0.2/app/eval/leaderboards/schemas/vertical_fs_payments.yaml +8 -0
  139. touchstone_platform-1.0.2/app/eval/leaderboards/schemas/vertical_fs_retail_banking.yaml +9 -0
  140. touchstone_platform-1.0.2/app/eval/leaderboards/schemas/vertical_hcls_ambulatory.yaml +9 -0
  141. touchstone_platform-1.0.2/app/eval/leaderboards/schemas/vertical_hcls_lab.yaml +9 -0
  142. touchstone_platform-1.0.2/app/eval/leaderboards/schemas/vertical_hcls_medtech.yaml +9 -0
  143. touchstone_platform-1.0.2/app/eval/leaderboards/schemas/vertical_hcls_payer.yaml +8 -0
  144. touchstone_platform-1.0.2/app/eval/leaderboards/schemas/vertical_hcls_pbm.yaml +9 -0
  145. touchstone_platform-1.0.2/app/eval/leaderboards/schemas/vertical_hcls_pharma.yaml +9 -0
  146. touchstone_platform-1.0.2/app/eval/leaderboards/schemas/vertical_hitech_semi.yaml +8 -0
  147. touchstone_platform-1.0.2/app/eval/leaderboards/schemas/vertical_hitech_software.yaml +9 -0
  148. touchstone_platform-1.0.2/app/eval/leaderboards/schemas/vertical_industry_energy.yaml +9 -0
  149. touchstone_platform-1.0.2/app/eval/leaderboards/schemas/vertical_industry_pubsec.yaml +9 -0
  150. touchstone_platform-1.0.2/app/eval/leaderboards/schemas/vertical_retail_apparel.yaml +9 -0
  151. touchstone_platform-1.0.2/app/eval/leaderboards/schemas/vertical_retail_bigbox.yaml +9 -0
  152. touchstone_platform-1.0.2/app/eval/leaderboards/schemas/vertical_retail_cpg_brands.yaml +8 -0
  153. touchstone_platform-1.0.2/app/eval/leaderboards/schemas/vertical_retail_cstore.yaml +9 -0
  154. touchstone_platform-1.0.2/app/eval/leaderboards/schemas/vertical_retail_grocery.yaml +9 -0
  155. touchstone_platform-1.0.2/app/eval/leaderboards/swe_bench.py +58 -0
  156. touchstone_platform-1.0.2/app/eval/leaderboards/vertical_boards.py +71 -0
  157. touchstone_platform-1.0.2/app/eval/metric.py +51 -0
  158. touchstone_platform-1.0.2/app/eval/metrics/__init__.py +0 -0
  159. touchstone_platform-1.0.2/app/eval/metrics/agentic/__init__.py +1 -0
  160. touchstone_platform-1.0.2/app/eval/metrics/agentic/action_sequence.py +103 -0
  161. touchstone_platform-1.0.2/app/eval/metrics/agentic/replan_count.py +36 -0
  162. touchstone_platform-1.0.2/app/eval/metrics/agentic/step_success_rate.py +37 -0
  163. touchstone_platform-1.0.2/app/eval/metrics/agentic/task_completion.py +90 -0
  164. touchstone_platform-1.0.2/app/eval/metrics/agentic/trajectory_length.py +27 -0
  165. touchstone_platform-1.0.2/app/eval/metrics/code/__init__.py +1 -0
  166. touchstone_platform-1.0.2/app/eval/metrics/code/patch_execution.py +111 -0
  167. touchstone_platform-1.0.2/app/eval/metrics/code/patch_validity.py +142 -0
  168. touchstone_platform-1.0.2/app/eval/metrics/compliance/__init__.py +7 -0
  169. touchstone_platform-1.0.2/app/eval/metrics/compliance/control_match.py +231 -0
  170. touchstone_platform-1.0.2/app/eval/metrics/evidence/__init__.py +6 -0
  171. touchstone_platform-1.0.2/app/eval/metrics/evidence/audit_ledger_integrity.py +63 -0
  172. touchstone_platform-1.0.2/app/eval/metrics/evidence/citation_f1.py +58 -0
  173. touchstone_platform-1.0.2/app/eval/metrics/evidence/hallucination_rate.py +35 -0
  174. touchstone_platform-1.0.2/app/eval/metrics/evidence/kg_groundedness.py +57 -0
  175. touchstone_platform-1.0.2/app/eval/metrics/evidence/lineage_f1.py +47 -0
  176. touchstone_platform-1.0.2/app/eval/metrics/exact_match.py +12 -0
  177. touchstone_platform-1.0.2/app/eval/metrics/hcls/__init__.py +1 -0
  178. touchstone_platform-1.0.2/app/eval/metrics/hcls/bertscore.py +139 -0
  179. touchstone_platform-1.0.2/app/eval/metrics/hcls/jury_score.py +111 -0
  180. touchstone_platform-1.0.2/app/eval/metrics/hcls/phi_leak.py +101 -0
  181. touchstone_platform-1.0.2/app/eval/metrics/judge_rubric.py +89 -0
  182. touchstone_platform-1.0.2/app/eval/metrics/robustness_delta.py +25 -0
  183. touchstone_platform-1.0.2/app/eval/metrics/rouge.py +114 -0
  184. touchstone_platform-1.0.2/app/eval/metrics/safety/__init__.py +1 -0
  185. touchstone_platform-1.0.2/app/eval/metrics/safety/atr_detection.py +57 -0
  186. touchstone_platform-1.0.2/app/eval/metrics/safety/bias.py +181 -0
  187. touchstone_platform-1.0.2/app/eval/metrics/safety/bias_extended.py +185 -0
  188. touchstone_platform-1.0.2/app/eval/metrics/safety/medical_red_team.py +77 -0
  189. touchstone_platform-1.0.2/app/eval/metrics/safety/redteam_detection.py +83 -0
  190. touchstone_platform-1.0.2/app/eval/metrics/safety/wmdp_score.py +67 -0
  191. touchstone_platform-1.0.2/app/eval/perturbations/__init__.py +7 -0
  192. touchstone_platform-1.0.2/app/eval/perturbations/base.py +31 -0
  193. touchstone_platform-1.0.2/app/eval/perturbations/comment_noise.py +23 -0
  194. touchstone_platform-1.0.2/app/eval/perturbations/dead_code_injection.py +26 -0
  195. touchstone_platform-1.0.2/app/eval/perturbations/dialect_drift.py +23 -0
  196. touchstone_platform-1.0.2/app/eval/perturbations/identifier_mangling.py +36 -0
  197. touchstone_platform-1.0.2/app/eval/perturbations/partial_copybook.py +22 -0
  198. touchstone_platform-1.0.2/app/eval/perturbations/registry.py +19 -0
  199. touchstone_platform-1.0.2/app/eval/perturbed_scenario.py +35 -0
  200. touchstone_platform-1.0.2/app/eval/redteam/__init__.py +8 -0
  201. touchstone_platform-1.0.2/app/eval/redteam/loader.py +289 -0
  202. touchstone_platform-1.0.2/app/eval/request_cache.py +169 -0
  203. touchstone_platform-1.0.2/app/eval/risk_tier.py +134 -0
  204. touchstone_platform-1.0.2/app/eval/run_spec.py +29 -0
  205. touchstone_platform-1.0.2/app/eval/runner.py +107 -0
  206. touchstone_platform-1.0.2/app/eval/runners/__init__.py +5 -0
  207. touchstone_platform-1.0.2/app/eval/runners/swe_bench_docker.py +336 -0
  208. touchstone_platform-1.0.2/app/eval/runners/tau_bench/__init__.py +57 -0
  209. touchstone_platform-1.0.2/app/eval/runners/tau_bench/airline_state.py +154 -0
  210. touchstone_platform-1.0.2/app/eval/runners/tau_bench/airline_tools.py +205 -0
  211. touchstone_platform-1.0.2/app/eval/runners/tau_bench/golden.py +90 -0
  212. touchstone_platform-1.0.2/app/eval/runners/tau_bench/retail_state.py +208 -0
  213. touchstone_platform-1.0.2/app/eval/runners/tau_bench/runner.py +259 -0
  214. touchstone_platform-1.0.2/app/eval/runners/tau_bench/tools.py +241 -0
  215. touchstone_platform-1.0.2/app/eval/runspec_overrides.py +82 -0
  216. touchstone_platform-1.0.2/app/eval/scenario.py +54 -0
  217. touchstone_platform-1.0.2/app/eval/schema.py +28 -0
  218. touchstone_platform-1.0.2/app/eval/snapshot.py +85 -0
  219. touchstone_platform-1.0.2/app/eval/specs/__init__.py +0 -0
  220. touchstone_platform-1.0.2/app/eval/specs/agentic_cobol_modernization.py +31 -0
  221. touchstone_platform-1.0.2/app/eval/specs/atr_red_team.py +44 -0
  222. touchstone_platform-1.0.2/app/eval/specs/cobol_billing_scenario.py +11 -0
  223. touchstone_platform-1.0.2/app/eval/specs/cobol_lineage_scenario.py +10 -0
  224. touchstone_platform-1.0.2/app/eval/specs/edelweiss_investing_scenario.py +10 -0
  225. touchstone_platform-1.0.2/app/eval/specs/genai_red_team.py +51 -0
  226. touchstone_platform-1.0.2/app/eval/specs/healthcare_data_scenario.py +10 -0
  227. touchstone_platform-1.0.2/app/eval/specs/horizontal_agent_scenarios.py +99 -0
  228. touchstone_platform-1.0.2/app/eval/specs/huggingface_dataset_scenario.py +357 -0
  229. touchstone_platform-1.0.2/app/eval/specs/java_refactor_scenario.py +10 -0
  230. touchstone_platform-1.0.2/app/eval/specs/medical_red_team.py +128 -0
  231. touchstone_platform-1.0.2/app/eval/specs/sap_modernization_scenario.py +10 -0
  232. touchstone_platform-1.0.2/app/eval/specs/swe_bench_scenarios.py +92 -0
  233. touchstone_platform-1.0.2/app/eval/specs/tau_bench_scenarios.py +98 -0
  234. touchstone_platform-1.0.2/app/eval/specs/vertical_scenarios.py +317 -0
  235. touchstone_platform-1.0.2/app/eval/specs/wmdp_scenarios.py +106 -0
  236. touchstone_platform-1.0.2/app/eval/specs/yaml_spec_scenario.py +53 -0
  237. touchstone_platform-1.0.2/app/eval/trace.py +39 -0
  238. touchstone_platform-1.0.2/app/eval/trajectory.py +43 -0
  239. touchstone_platform-1.0.2/app/fitment.py +843 -0
  240. touchstone_platform-1.0.2/app/frameworks/__init__.py +40 -0
  241. touchstone_platform-1.0.2/app/frameworks/autogen_runner.py +40 -0
  242. touchstone_platform-1.0.2/app/frameworks/base.py +29 -0
  243. touchstone_platform-1.0.2/app/frameworks/crewai_runner.py +123 -0
  244. touchstone_platform-1.0.2/app/frameworks/datagol_runner.py +36 -0
  245. touchstone_platform-1.0.2/app/frameworks/direct_api.py +441 -0
  246. touchstone_platform-1.0.2/app/frameworks/galileo_runner.py +88 -0
  247. touchstone_platform-1.0.2/app/frameworks/langchain_runner.py +35 -0
  248. touchstone_platform-1.0.2/app/frameworks/langgraph_runner.py +38 -0
  249. touchstone_platform-1.0.2/app/frameworks/letta_runner.py +35 -0
  250. touchstone_platform-1.0.2/app/frameworks/llamaindex_runner.py +38 -0
  251. touchstone_platform-1.0.2/app/frameworks/mem0_runner.py +38 -0
  252. touchstone_platform-1.0.2/app/frameworks/n8n_runner.py +37 -0
  253. touchstone_platform-1.0.2/app/frameworks/openclawd_runner.py +84 -0
  254. touchstone_platform-1.0.2/app/frameworks/semantic_kernel_runner.py +35 -0
  255. touchstone_platform-1.0.2/app/frameworks/stackai_runner.py +35 -0
  256. touchstone_platform-1.0.2/app/frameworks/superagi_runner.py +35 -0
  257. touchstone_platform-1.0.2/app/frameworks/zep_runner.py +35 -0
  258. touchstone_platform-1.0.2/app/git_utils.py +53 -0
  259. touchstone_platform-1.0.2/app/health.py +132 -0
  260. touchstone_platform-1.0.2/app/knowledge.py +894 -0
  261. touchstone_platform-1.0.2/app/licensing.py +170 -0
  262. touchstone_platform-1.0.2/app/main.py +1765 -0
  263. touchstone_platform-1.0.2/app/models.py +151 -0
  264. touchstone_platform-1.0.2/app/onboarding.py +274 -0
  265. touchstone_platform-1.0.2/app/outputs.py +91 -0
  266. touchstone_platform-1.0.2/app/parsers/apex.py +45 -0
  267. touchstone_platform-1.0.2/app/parsers/asp.py +49 -0
  268. touchstone_platform-1.0.2/app/parsers/base.py +20 -0
  269. touchstone_platform-1.0.2/app/parsers/cobol.py +146 -0
  270. touchstone_platform-1.0.2/app/parsers/config.py +35 -0
  271. touchstone_platform-1.0.2/app/parsers/enterprise.py +101 -0
  272. touchstone_platform-1.0.2/app/parsers/factory.py +76 -0
  273. touchstone_platform-1.0.2/app/parsers/legacy_c.py +35 -0
  274. touchstone_platform-1.0.2/app/parsers/modern.py +53 -0
  275. touchstone_platform-1.0.2/app/parsers/sql.py +91 -0
  276. touchstone_platform-1.0.2/app/pricing.py +46 -0
  277. touchstone_platform-1.0.2/app/scoring.py +251 -0
  278. touchstone_platform-1.0.2/app/security.py +206 -0
  279. touchstone_platform-1.0.2/app/spec_loader.py +186 -0
  280. touchstone_platform-1.0.2/app/spec_v1.py +192 -0
  281. touchstone_platform-1.0.2/app/static/agent_catalog.json +1198 -0
  282. touchstone_platform-1.0.2/app/static/ai_inventory.html +111 -0
  283. touchstone_platform-1.0.2/app/static/app.js +2231 -0
  284. touchstone_platform-1.0.2/app/static/audit.js +89 -0
  285. touchstone_platform-1.0.2/app/static/auth.js +245 -0
  286. touchstone_platform-1.0.2/app/static/catalog.html +55 -0
  287. touchstone_platform-1.0.2/app/static/css/catalog.css +128 -0
  288. touchstone_platform-1.0.2/app/static/css/leaderboards.css +50 -0
  289. touchstone_platform-1.0.2/app/static/css/portfolio.css +218 -0
  290. touchstone_platform-1.0.2/app/static/css/prism.css +187 -0
  291. touchstone_platform-1.0.2/app/static/custom.html +137 -0
  292. touchstone_platform-1.0.2/app/static/discover.html +133 -0
  293. touchstone_platform-1.0.2/app/static/govern.html +183 -0
  294. touchstone_platform-1.0.2/app/static/index.html +698 -0
  295. touchstone_platform-1.0.2/app/static/instance_trace.html +18 -0
  296. touchstone_platform-1.0.2/app/static/js/catalog.js +267 -0
  297. touchstone_platform-1.0.2/app/static/js/custom.js +146 -0
  298. touchstone_platform-1.0.2/app/static/js/discover.js +112 -0
  299. touchstone_platform-1.0.2/app/static/js/govern.js +167 -0
  300. touchstone_platform-1.0.2/app/static/js/instance_trace.js +28 -0
  301. touchstone_platform-1.0.2/app/static/js/leaderboard_compare.js +31 -0
  302. touchstone_platform-1.0.2/app/static/js/leaderboard_detail.js +62 -0
  303. touchstone_platform-1.0.2/app/static/js/leaderboards.js +90 -0
  304. touchstone_platform-1.0.2/app/static/js/monitor.js +192 -0
  305. touchstone_platform-1.0.2/app/static/js/plan.js +180 -0
  306. touchstone_platform-1.0.2/app/static/js/portfolio.js +205 -0
  307. touchstone_platform-1.0.2/app/static/js/prism.js +399 -0
  308. touchstone_platform-1.0.2/app/static/leaderboard_compare.html +18 -0
  309. touchstone_platform-1.0.2/app/static/leaderboard_detail.html +22 -0
  310. touchstone_platform-1.0.2/app/static/leaderboards/.gitkeep +0 -0
  311. touchstone_platform-1.0.2/app/static/leaderboards/index.html +9 -0
  312. touchstone_platform-1.0.2/app/static/leaderboards/modernization_classic.html +29 -0
  313. touchstone_platform-1.0.2/app/static/leaderboards.html +17 -0
  314. touchstone_platform-1.0.2/app/static/login.html +266 -0
  315. touchstone_platform-1.0.2/app/static/logo_mark.png +0 -0
  316. touchstone_platform-1.0.2/app/static/monitor.html +147 -0
  317. touchstone_platform-1.0.2/app/static/onboarding.html +85 -0
  318. touchstone_platform-1.0.2/app/static/onboarding.js +96 -0
  319. touchstone_platform-1.0.2/app/static/plan.html +87 -0
  320. touchstone_platform-1.0.2/app/static/portfolio.html +107 -0
  321. touchstone_platform-1.0.2/app/static/prism.html +47 -0
  322. touchstone_platform-1.0.2/app/static/styles.css +2290 -0
  323. touchstone_platform-1.0.2/app/terraform.py +1028 -0
  324. touchstone_platform-1.0.2/app/vector_stores.py +303 -0
  325. touchstone_platform-1.0.2/architecture.md +400 -0
  326. touchstone_platform-1.0.2/docs/WAVE_LOG.md +163 -0
  327. touchstone_platform-1.0.2/docs/superpowers/plans/README.md +46 -0
  328. touchstone_platform-1.0.2/pyproject.toml +204 -0
  329. touchstone_platform-1.0.2/requirements.txt +33 -0
  330. touchstone_platform-1.0.2/scripts/backfill_catalog_skus.py +387 -0
  331. touchstone_platform-1.0.2/scripts/build_leaderboard_site.py +261 -0
  332. touchstone_platform-1.0.2/scripts/build_pitch_deck.js +1187 -0
  333. touchstone_platform-1.0.2/scripts/enrich_catalog.py +59 -0
  334. touchstone_platform-1.0.2/scripts/export_registry.py +33 -0
  335. touchstone_platform-1.0.2/scripts/generate_catalog.py +71 -0
  336. touchstone_platform-1.0.2/scripts/generate_reference_terraform.py +39 -0
  337. touchstone_platform-1.0.2/scripts/generate_runspec_yamls.py +149 -0
  338. touchstone_platform-1.0.2/scripts/ingest_real_artifacts.py +83 -0
  339. touchstone_platform-1.0.2/scripts/knowledge_curation_blueprint.py +64 -0
  340. touchstone_platform-1.0.2/scripts/legacy/p1_original_bench.py +64 -0
  341. touchstone_platform-1.0.2/scripts/prism_score_skus.py +119 -0
  342. touchstone_platform-1.0.2/scripts/read_excel.py +23 -0
  343. touchstone_platform-1.0.2/scripts/refresh_price_table.py +54 -0
  344. touchstone_platform-1.0.2/scripts/seed_demo.py +94 -0
  345. touchstone_platform-1.0.2/scripts/sign_license.py +90 -0
  346. touchstone_platform-1.0.2/scripts/snapshot_scheduler.py +334 -0
  347. touchstone_platform-1.0.2/scripts/sunset_model_gym/README.md +34 -0
  348. touchstone_platform-1.0.2/scripts/sunset_model_gym/model_gym/__init__.py +29 -0
  349. touchstone_platform-1.0.2/scripts/sunset_model_gym/model_gym/cli.py +14 -0
  350. touchstone_platform-1.0.2/scripts/sunset_model_gym/pyproject.toml +32 -0
  351. touchstone_platform-1.0.2/scripts/warm_bertscore.py +59 -0
  352. touchstone_platform-1.0.2/scripts/warm_cache.py +27 -0
  353. touchstone_platform-1.0.2/specs/cobol_billing.yaml +340 -0
  354. touchstone_platform-1.0.2/specs/cobol_lineage.yaml +78 -0
  355. touchstone_platform-1.0.2/specs/edelweiss_investing.yaml +353 -0
  356. touchstone_platform-1.0.2/specs/healthcare_data.yaml +78 -0
  357. touchstone_platform-1.0.2/specs/java_refactor.yaml +80 -0
  358. touchstone_platform-1.0.2/specs/medhelm_admin_workflow.yaml +279 -0
  359. touchstone_platform-1.0.2/specs/medhelm_clinical_decision_support.yaml +150 -0
  360. touchstone_platform-1.0.2/specs/medhelm_clinical_note_generation.yaml +216 -0
  361. touchstone_platform-1.0.2/specs/medhelm_patient_communication.yaml +236 -0
  362. touchstone_platform-1.0.2/specs/medhelm_research_assistance.yaml +213 -0
  363. touchstone_platform-1.0.2/specs/sap_modernization.yaml +94 -0
  364. touchstone_platform-1.0.2/specs/tau_bench_tasks.jsonl +12 -0
  365. touchstone_platform-1.0.2/specs/vertical_edu_k12.yaml +158 -0
  366. touchstone_platform-1.0.2/specs/vertical_fs_insurance_pc.yaml +149 -0
  367. touchstone_platform-1.0.2/specs/vertical_fs_payments.yaml +147 -0
  368. touchstone_platform-1.0.2/specs/vertical_fs_retail_banking.yaml +165 -0
  369. touchstone_platform-1.0.2/specs/vertical_hcls_ambulatory.yaml +164 -0
  370. touchstone_platform-1.0.2/specs/vertical_hcls_lab.yaml +158 -0
  371. touchstone_platform-1.0.2/specs/vertical_hcls_medtech.yaml +153 -0
  372. touchstone_platform-1.0.2/specs/vertical_hcls_payer.yaml +151 -0
  373. touchstone_platform-1.0.2/specs/vertical_hcls_pbm.yaml +158 -0
  374. touchstone_platform-1.0.2/specs/vertical_hcls_pharma.yaml +147 -0
  375. touchstone_platform-1.0.2/specs/vertical_hcls_pharma_content.yaml +969 -0
  376. touchstone_platform-1.0.2/specs/vertical_hitech_semi.yaml +156 -0
  377. touchstone_platform-1.0.2/specs/vertical_hitech_software.yaml +150 -0
  378. touchstone_platform-1.0.2/specs/vertical_industry_energy.yaml +150 -0
  379. touchstone_platform-1.0.2/specs/vertical_industry_pubsec.yaml +151 -0
  380. touchstone_platform-1.0.2/specs/vertical_retail_apparel.yaml +156 -0
  381. touchstone_platform-1.0.2/specs/vertical_retail_bigbox.yaml +146 -0
  382. touchstone_platform-1.0.2/specs/vertical_retail_cpg_brands.yaml +154 -0
  383. touchstone_platform-1.0.2/specs/vertical_retail_cstore.yaml +153 -0
  384. touchstone_platform-1.0.2/specs/vertical_retail_grocery.yaml +149 -0
  385. touchstone_platform-1.0.2/terraform/aws/README.md +62 -0
  386. touchstone_platform-1.0.2/terraform/azure/README.md +62 -0
  387. touchstone_platform-1.0.2/terraform/docker/README.md +62 -0
  388. touchstone_platform-1.0.2/terraform/gcp/README.md +62 -0
@@ -0,0 +1,45 @@
1
+ # Python bytecode and caches
2
+ __pycache__/
3
+ *.py[cod]
4
+ *$py.class
5
+
6
+ # Test and tooling caches
7
+ .pytest_cache/
8
+ .mypy_cache/
9
+ .ruff_cache/
10
+ .coverage
11
+ htmlcov/
12
+
13
+ # Local virtual environments
14
+ .venv/
15
+ venv/
16
+ env/
17
+
18
+ # Node.js (deck builder uses pptxgenjs via scripts/build_pitch_deck.js)
19
+ node_modules/
20
+
21
+ # Local runtime data
22
+ *.db
23
+ *.kuzu/
24
+ *.kuzu
25
+ scratch/audit/*.jsonl
26
+
27
+ # OS/editor noise
28
+ .DS_Store
29
+ artifacts/Agent_Catalog_Master.xlsx
30
+ .claude/worktrees/
31
+ .claude/scheduled_tasks.lock
32
+
33
+ # Application logs and local data
34
+ .sc4sap/
35
+ data/audit/
36
+ data/backups/
37
+ benchmark_graph.kuzu.wal
38
+ ~$agent_registry_export.xlsx
39
+
40
+ # License issuer private key — NEVER commit this
41
+ scratch/license_issuer.key
42
+
43
+ # PPTX render artifacts
44
+ slide-*.jpg
45
+ model_gym_pitch.pdf
@@ -0,0 +1,242 @@
1
+ # Touchstone License (formerly Model Gym License)
2
+
3
+ **Version 2.0** — effective 2026-05-18.
4
+ Supersedes the Model Gym Educational Use License v1 (2026).
5
+ Platform renamed from Model Gym to Touchstone (Crucible benchmark engine) in v1.0.0.
6
+
7
+ Copyright © 2026 Yadavilli Solutions. All Rights Reserved.
8
+
9
+ > **Plain-English summary** (not part of the legal terms):
10
+ > You can read, study, learn from, and run this code for evaluation
11
+ > and non-commercial purposes for free. Production use, customer
12
+ > delivery, hosting it for someone else, or making money with it
13
+ > requires a separate commercial license — see [`COMMERCIAL.md`](COMMERCIAL.md).
14
+
15
+ ---
16
+
17
+ ## 1. Definitions
18
+
19
+ In this License:
20
+
21
+ - **"Software"** means the contents of this repository, including source
22
+ code, scripts, configuration files, documentation, schemas, prompts,
23
+ example data, generated artifacts, and any updates or derivative
24
+ versions distributed by Yadavilli Solutions.
25
+ - **"Licensor"** means Yadavilli Solutions, the sole copyright holder.
26
+ - **"You"** means the individual or legal entity exercising rights
27
+ under this License.
28
+ - **"Permitted Use"** means use under Section 2 only.
29
+ - **"Commercial Use"** means any use described in Section 3.
30
+ - **"Derivative Work"** means any work that incorporates, modifies,
31
+ translates, or is based on the Software, in whole or in part.
32
+ - **"Production"** means any use that processes real data, real
33
+ customer requests, real model evaluations for record, or any other
34
+ use whose output is relied upon outside a learning or evaluation
35
+ context.
36
+
37
+ ## 2. Grant — Permitted Use (no fee)
38
+
39
+ Subject to your compliance with this License, the Licensor grants You
40
+ a worldwide, royalty-free, non-exclusive, non-transferable license to
41
+ use, copy, modify, and create Derivative Works of the Software, solely
42
+ for the following purposes:
43
+
44
+ 1. **Personal learning, study, and research.**
45
+ 2. **Teaching, classroom, workshop, conference talk, or demonstration**
46
+ provided the demonstration is not part of a paid engagement.
47
+ 3. **Non-commercial evaluation** to assess whether the Software fits
48
+ Your needs prior to entering a commercial license.
49
+ 4. **Academic publication** that cites the Software and Licensor.
50
+ 5. **Personal or research forks** that preserve this LICENSE file,
51
+ the copyright notice, and any attribution notices.
52
+
53
+ Permitted Use does **not** include Production, redistribution to third
54
+ parties, or any Commercial Use.
55
+
56
+ ## 3. Commercial Use — separate license required
57
+
58
+ A separate paid Commercial License Agreement from the Licensor is
59
+ required before You may use the Software, any Derivative Work, or any
60
+ substantial portion thereof for any of the following:
61
+
62
+ 1. **Production use** by a for-profit entity, government agency, or
63
+ any organization with paying customers, members, or beneficiaries.
64
+ 2. **Hosted services or SaaS offerings** that expose the Software's
65
+ functionality (in whole or part) to third parties, whether or not
66
+ payment is involved.
67
+ 3. **Customer delivery, consulting, integration, or implementation
68
+ work** that uses the Software or any Derivative Work to fulfill
69
+ a paid engagement.
70
+ 4. **Internal production use** by any entity with annual gross revenue
71
+ exceeding USD 5,000,000, regardless of whether the Software's
72
+ functionality is exposed externally.
73
+ 5. **Bundling, sub-licensing, white-labeling, or OEM distribution** of
74
+ the Software or any Derivative Work.
75
+ 6. **AI-evaluation-as-a-service, benchmarking-as-a-service,
76
+ certification-as-a-service, or compliance-as-a-service offerings**
77
+ that derive material value from the Software's leaderboards,
78
+ metrics, scenarios, scoring, or evidence-bundle output.
79
+ 7. **Training, fine-tuning, or evaluation of models intended for
80
+ commercial deployment** where the Software's metrics, scenarios, or
81
+ leaderboards inform the model's release decision.
82
+
83
+ To obtain a Commercial License, contact: **see [`COMMERCIAL.md`](COMMERCIAL.md)**.
84
+
85
+ The Licensor reserves the right to negotiate commercial terms on a
86
+ per-engagement basis, including tiered pricing, support obligations,
87
+ field-of-use restrictions, and exclusivity. No commercial right is
88
+ granted by silence, by use, or by any prior course of dealing — only
89
+ by a fully executed Commercial License Agreement.
90
+
91
+ ## 4. Restrictions
92
+
93
+ Under both Permitted Use and Commercial Use, You may **not**:
94
+
95
+ 1. Remove or alter any copyright, license, trademark, attribution, or
96
+ author notice in the Software or any Derivative Work.
97
+ 2. Use the names "Model Gym", "Yadavilli Solutions", or any related
98
+ trademark, logo, or trade dress, except as required to identify
99
+ the origin of the Software or to comply with Section 5.
100
+ 3. Misrepresent the origin of the Software or any Derivative Work.
101
+ 4. Distribute the Software or a Derivative Work under any license that
102
+ purports to grant rights broader than those granted here, including
103
+ any OSI-approved open-source license.
104
+ 5. Reverse engineer, decompile, or disassemble any binary distribution
105
+ of the Software except to the extent expressly required by
106
+ applicable law.
107
+ 6. Use the Software to develop a competing AI-evaluation, agent-
108
+ benchmarking, or certification product or service offered to third
109
+ parties, whether free or paid, without a prior written Commercial
110
+ License Agreement that expressly permits such use.
111
+ 7. Use the Software in violation of any applicable export-control,
112
+ sanctions, or anti-bribery law.
113
+ 8. Represent any output of the Software (including evaluation scores,
114
+ certifications, evidence bundles, or leaderboard rankings) as
115
+ independently audited, third-party verified, or regulator-approved
116
+ unless You have a separate written attestation from the Licensor.
117
+
118
+ ## 5. Attribution
119
+
120
+ Any Permitted Use that publishes, demonstrates, or distributes the
121
+ Software or a Derivative Work must:
122
+
123
+ 1. Preserve this `LICENSE.md` file verbatim.
124
+ 2. Preserve the copyright notice in each file that contains one.
125
+ 3. Include a clearly visible attribution: "Built on Model Gym
126
+ (https://github.com/yadavilli-solutions/benchmark) © Yadavilli
127
+ Solutions, licensed under the Model Gym License v2."
128
+
129
+ ## 6. Trademarks
130
+
131
+ "Model Gym", "Yadavilli Solutions", and any associated logos are
132
+ trademarks of the Licensor. This License does not grant any rights to
133
+ use those trademarks except for the limited, descriptive, attribution
134
+ purpose required by Section 5. All other use requires prior written
135
+ permission.
136
+
137
+ ## 7. Patent Grant + Termination
138
+
139
+ The Licensor grants You a non-exclusive, royalty-free patent license
140
+ to make, use, sell, offer for sale, or import the Software solely as
141
+ necessary to exercise the rights granted in Section 2 (Permitted Use)
142
+ or under a separate Commercial License.
143
+
144
+ If You initiate or knowingly participate in any patent litigation
145
+ (including a cross-claim or counterclaim) alleging that the Software,
146
+ or any contribution incorporated into the Software, constitutes direct
147
+ or contributory patent infringement, all rights granted to You under
148
+ this License terminate as of the date such litigation is filed.
149
+
150
+ ## 8. Term and Termination
151
+
152
+ This License is effective until terminated.
153
+
154
+ The Licensor may terminate this License immediately upon written
155
+ notice if You breach any term. Upon termination:
156
+
157
+ 1. All rights granted to You under this License cease.
158
+ 2. You must promptly cease all use, destroy all copies of the
159
+ Software in Your possession or control, and certify such
160
+ destruction to the Licensor on request.
161
+ 3. Sections 4 (Restrictions), 6 (Trademarks), 9 (No Warranty), 10
162
+ (Limitation of Liability), 11 (Governing Law), and 12 (Severability)
163
+ survive termination.
164
+
165
+ A Commercial License Agreement may override the termination terms of
166
+ this License with respect to its own subject matter.
167
+
168
+ ## 9. No Warranty
169
+
170
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
171
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
172
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND
173
+ NON-INFRINGEMENT.
174
+
175
+ The Software outputs evaluation scores, compliance citations, safety
176
+ ratings, and certification artifacts that **may not be relied upon for
177
+ regulatory, legal, audit, clinical, or safety decisions** without
178
+ independent verification.
179
+
180
+ The Licensor makes no representation or warranty that the Software is
181
+ free of defects, error-free, secure, fit for any particular purpose,
182
+ or compliant with any specific regulation in any specific jurisdiction.
183
+
184
+ ## 10. Limitation of Liability
185
+
186
+ IN NO EVENT SHALL THE LICENSOR, ITS AFFILIATES, OR ANY CONTRIBUTOR BE
187
+ LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER IN AN
188
+ ACTION OF CONTRACT, TORT (INCLUDING NEGLIGENCE), OR OTHERWISE, ARISING
189
+ FROM, OUT OF, OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
190
+ DEALINGS IN THE SOFTWARE.
191
+
192
+ WITHOUT LIMITING THE FOREGOING, THE LICENSOR'S AGGREGATE LIABILITY TO
193
+ YOU UNDER OR IN CONNECTION WITH THIS LICENSE (REGARDLESS OF CAUSE)
194
+ SHALL NOT EXCEED THE GREATER OF (a) USD 100, OR (b) THE FEES PAID BY
195
+ YOU TO THE LICENSOR UNDER ANY COMMERCIAL LICENSE IN THE TWELVE (12)
196
+ MONTHS PRECEDING THE CLAIM.
197
+
198
+ ## 11. Governing Law and Disputes
199
+
200
+ This License is governed by the laws of the **[JURISDICTION TO BE SET
201
+ BY LICENSOR]**, excluding its conflict-of-laws principles. The parties
202
+ consent to the exclusive jurisdiction of the courts located in that
203
+ jurisdiction for any dispute arising out of or relating to this
204
+ License.
205
+
206
+ The UN Convention on Contracts for the International Sale of Goods
207
+ does not apply.
208
+
209
+ ## 12. Severability
210
+
211
+ If any provision of this License is held to be unenforceable, the
212
+ remaining provisions remain in full force and effect, and the
213
+ unenforceable provision shall be interpreted to give effect to its
214
+ intent to the maximum extent permitted by law.
215
+
216
+ ## 13. Entire Agreement
217
+
218
+ This License constitutes the entire agreement between You and the
219
+ Licensor with respect to the Software, except to the extent superseded
220
+ by a Commercial License Agreement that expressly references and
221
+ modifies this License. No oral statement, prior writing, or course of
222
+ dealing shall modify the terms of this License.
223
+
224
+ ---
225
+
226
+ ## Owner notes (delete before publishing the license externally)
227
+
228
+ This document is a starting template, not legal advice. Before relying
229
+ on it for actual customer agreements, have counsel:
230
+
231
+ - Fill in the **JURISDICTION** placeholder in Section 11.
232
+ - Confirm the Section 3.4 revenue threshold (USD 5M) matches your
233
+ pricing strategy.
234
+ - Review Section 4.6 (no-compete clause) against the laws of any
235
+ jurisdiction where contributors live — some restrict no-compete
236
+ enforceability.
237
+ - Decide whether to add an explicit network-use clause (à la AGPL §13)
238
+ if You want to require Commercial Licenses for SaaS use even without
239
+ redistribution.
240
+ - Confirm Section 10's liability cap is acceptable to Your insurer.
241
+ - Cross-check the trademark assertions in Section 6 with any actual
242
+ trademark filings.