open-agreements 0.1.0

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 (243) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +161 -0
  3. package/bin/open-agreements.js +2 -0
  4. package/dist/cli/index.d.ts +2 -0
  5. package/dist/cli/index.d.ts.map +1 -0
  6. package/dist/cli/index.js +102 -0
  7. package/dist/cli/index.js.map +1 -0
  8. package/dist/commands/fill.d.ts +7 -0
  9. package/dist/commands/fill.d.ts.map +1 -0
  10. package/dist/commands/fill.js +84 -0
  11. package/dist/commands/fill.js.map +1 -0
  12. package/dist/commands/list.d.ts +6 -0
  13. package/dist/commands/list.d.ts.map +1 -0
  14. package/dist/commands/list.js +202 -0
  15. package/dist/commands/list.js.map +1 -0
  16. package/dist/commands/recipe.d.ts +21 -0
  17. package/dist/commands/recipe.d.ts.map +1 -0
  18. package/dist/commands/recipe.js +71 -0
  19. package/dist/commands/recipe.js.map +1 -0
  20. package/dist/commands/scan.d.ts +12 -0
  21. package/dist/commands/scan.d.ts.map +1 -0
  22. package/dist/commands/scan.js +122 -0
  23. package/dist/commands/scan.js.map +1 -0
  24. package/dist/commands/validate.d.ts +6 -0
  25. package/dist/commands/validate.d.ts.map +1 -0
  26. package/dist/commands/validate.js +139 -0
  27. package/dist/commands/validate.js.map +1 -0
  28. package/dist/core/command-generation/adapters/claude.d.ts +11 -0
  29. package/dist/core/command-generation/adapters/claude.d.ts.map +1 -0
  30. package/dist/core/command-generation/adapters/claude.js +85 -0
  31. package/dist/core/command-generation/adapters/claude.js.map +1 -0
  32. package/dist/core/command-generation/types.d.ts +14 -0
  33. package/dist/core/command-generation/types.d.ts.map +1 -0
  34. package/dist/core/command-generation/types.js +2 -0
  35. package/dist/core/command-generation/types.js.map +1 -0
  36. package/dist/core/engine.d.ts +13 -0
  37. package/dist/core/engine.d.ts.map +1 -0
  38. package/dist/core/engine.js +149 -0
  39. package/dist/core/engine.js.map +1 -0
  40. package/dist/core/external/index.d.ts +8 -0
  41. package/dist/core/external/index.d.ts.map +1 -0
  42. package/dist/core/external/index.js +92 -0
  43. package/dist/core/external/index.js.map +1 -0
  44. package/dist/core/external/types.d.ts +18 -0
  45. package/dist/core/external/types.d.ts.map +1 -0
  46. package/dist/core/external/types.js +2 -0
  47. package/dist/core/external/types.js.map +1 -0
  48. package/dist/core/fill-pipeline.d.ts +61 -0
  49. package/dist/core/fill-pipeline.d.ts.map +1 -0
  50. package/dist/core/fill-pipeline.js +279 -0
  51. package/dist/core/fill-pipeline.js.map +1 -0
  52. package/dist/core/fill-utils.d.ts +39 -0
  53. package/dist/core/fill-utils.d.ts.map +1 -0
  54. package/dist/core/fill-utils.js +127 -0
  55. package/dist/core/fill-utils.js.map +1 -0
  56. package/dist/core/metadata.d.ts +396 -0
  57. package/dist/core/metadata.d.ts.map +1 -0
  58. package/dist/core/metadata.js +126 -0
  59. package/dist/core/metadata.js.map +1 -0
  60. package/dist/core/recipe/cleaner.d.ts +13 -0
  61. package/dist/core/recipe/cleaner.d.ts.map +1 -0
  62. package/dist/core/recipe/cleaner.js +106 -0
  63. package/dist/core/recipe/cleaner.js.map +1 -0
  64. package/dist/core/recipe/downloader.d.ts +8 -0
  65. package/dist/core/recipe/downloader.d.ts.map +1 -0
  66. package/dist/core/recipe/downloader.js +58 -0
  67. package/dist/core/recipe/downloader.js.map +1 -0
  68. package/dist/core/recipe/index.d.ts +14 -0
  69. package/dist/core/recipe/index.d.ts.map +1 -0
  70. package/dist/core/recipe/index.js +91 -0
  71. package/dist/core/recipe/index.js.map +1 -0
  72. package/dist/core/recipe/ooxml-parts.d.ts +21 -0
  73. package/dist/core/recipe/ooxml-parts.d.ts.map +1 -0
  74. package/dist/core/recipe/ooxml-parts.js +33 -0
  75. package/dist/core/recipe/ooxml-parts.js.map +1 -0
  76. package/dist/core/recipe/patcher.d.ts +17 -0
  77. package/dist/core/recipe/patcher.d.ts.map +1 -0
  78. package/dist/core/recipe/patcher.js +240 -0
  79. package/dist/core/recipe/patcher.js.map +1 -0
  80. package/dist/core/recipe/types.d.ts +28 -0
  81. package/dist/core/recipe/types.d.ts.map +1 -0
  82. package/dist/core/recipe/types.js +2 -0
  83. package/dist/core/recipe/types.js.map +1 -0
  84. package/dist/core/recipe/verifier.d.ts +24 -0
  85. package/dist/core/recipe/verifier.d.ts.map +1 -0
  86. package/dist/core/recipe/verifier.js +143 -0
  87. package/dist/core/recipe/verifier.js.map +1 -0
  88. package/dist/core/validation/external.d.ts +16 -0
  89. package/dist/core/validation/external.d.ts.map +1 -0
  90. package/dist/core/validation/external.js +106 -0
  91. package/dist/core/validation/external.js.map +1 -0
  92. package/dist/core/validation/license.d.ts +15 -0
  93. package/dist/core/validation/license.d.ts.map +1 -0
  94. package/dist/core/validation/license.js +30 -0
  95. package/dist/core/validation/license.js.map +1 -0
  96. package/dist/core/validation/output.d.ts +12 -0
  97. package/dist/core/validation/output.d.ts.map +1 -0
  98. package/dist/core/validation/output.js +47 -0
  99. package/dist/core/validation/output.js.map +1 -0
  100. package/dist/core/validation/recipe.d.ts +19 -0
  101. package/dist/core/validation/recipe.d.ts.map +1 -0
  102. package/dist/core/validation/recipe.js +148 -0
  103. package/dist/core/validation/recipe.js.map +1 -0
  104. package/dist/core/validation/template.d.ts +11 -0
  105. package/dist/core/validation/template.d.ts.map +1 -0
  106. package/dist/core/validation/template.js +159 -0
  107. package/dist/core/validation/template.js.map +1 -0
  108. package/dist/index.d.ts +13 -0
  109. package/dist/index.d.ts.map +1 -0
  110. package/dist/index.js +19 -0
  111. package/dist/index.js.map +1 -0
  112. package/dist/utils/paths.d.ts +15 -0
  113. package/dist/utils/paths.d.ts.map +1 -0
  114. package/dist/utils/paths.js +43 -0
  115. package/dist/utils/paths.js.map +1 -0
  116. package/external/LICENSE +27 -0
  117. package/external/README.md +38 -0
  118. package/external/yc-safe-discount/README.md +16 -0
  119. package/external/yc-safe-discount/clean.json +4 -0
  120. package/external/yc-safe-discount/metadata.yaml +71 -0
  121. package/external/yc-safe-discount/replacements.json +13 -0
  122. package/external/yc-safe-discount/template.docx +0 -0
  123. package/external/yc-safe-mfn/README.md +16 -0
  124. package/external/yc-safe-mfn/clean.json +4 -0
  125. package/external/yc-safe-mfn/metadata.yaml +64 -0
  126. package/external/yc-safe-mfn/replacements.json +12 -0
  127. package/external/yc-safe-mfn/template.docx +0 -0
  128. package/external/yc-safe-pro-rata-side-letter/README.md +16 -0
  129. package/external/yc-safe-pro-rata-side-letter/clean.json +4 -0
  130. package/external/yc-safe-pro-rata-side-letter/metadata.yaml +49 -0
  131. package/external/yc-safe-pro-rata-side-letter/replacements.json +9 -0
  132. package/external/yc-safe-pro-rata-side-letter/template.docx +0 -0
  133. package/external/yc-safe-valuation-cap/README.md +16 -0
  134. package/external/yc-safe-valuation-cap/clean.json +4 -0
  135. package/external/yc-safe-valuation-cap/metadata.yaml +64 -0
  136. package/external/yc-safe-valuation-cap/replacements.json +12 -0
  137. package/external/yc-safe-valuation-cap/template.docx +0 -0
  138. package/package.json +77 -0
  139. package/recipes/nvca-certificate-of-incorporation/clean.json +8 -0
  140. package/recipes/nvca-certificate-of-incorporation/metadata.yaml +43 -0
  141. package/recipes/nvca-certificate-of-incorporation/replacements.json +9 -0
  142. package/recipes/nvca-certificate-of-incorporation/schema.json +11 -0
  143. package/recipes/nvca-indemnification-agreement/clean.json +7 -0
  144. package/recipes/nvca-indemnification-agreement/metadata.yaml +83 -0
  145. package/recipes/nvca-indemnification-agreement/replacements.json +17 -0
  146. package/recipes/nvca-indemnification-agreement/schema.json +19 -0
  147. package/recipes/nvca-investors-rights-agreement/clean.json +12 -0
  148. package/recipes/nvca-investors-rights-agreement/metadata.yaml +75 -0
  149. package/recipes/nvca-investors-rights-agreement/replacements.json +18 -0
  150. package/recipes/nvca-investors-rights-agreement/schema.json +18 -0
  151. package/recipes/nvca-management-rights-letter/clean.json +7 -0
  152. package/recipes/nvca-management-rights-letter/metadata.yaml +50 -0
  153. package/recipes/nvca-management-rights-letter/replacements.json +11 -0
  154. package/recipes/nvca-management-rights-letter/schema.json +13 -0
  155. package/recipes/nvca-rofr-co-sale-agreement/clean.json +7 -0
  156. package/recipes/nvca-rofr-co-sale-agreement/metadata.yaml +80 -0
  157. package/recipes/nvca-rofr-co-sale-agreement/replacements.json +17 -0
  158. package/recipes/nvca-rofr-co-sale-agreement/schema.json +19 -0
  159. package/recipes/nvca-stock-purchase-agreement/clean.json +10 -0
  160. package/recipes/nvca-stock-purchase-agreement/metadata.yaml +74 -0
  161. package/recipes/nvca-stock-purchase-agreement/replacements.json +20 -0
  162. package/recipes/nvca-stock-purchase-agreement/schema.json +19 -0
  163. package/recipes/nvca-voting-agreement/README.md +53 -0
  164. package/recipes/nvca-voting-agreement/clean.json +7 -0
  165. package/recipes/nvca-voting-agreement/metadata.yaml +70 -0
  166. package/recipes/nvca-voting-agreement/replacements.json +18 -0
  167. package/recipes/nvca-voting-agreement/schema.json +28 -0
  168. package/skills/open-agreements/SKILL.md +166 -0
  169. package/templates/bonterms-mutual-nda/README.md +27 -0
  170. package/templates/bonterms-mutual-nda/metadata.yaml +58 -0
  171. package/templates/bonterms-mutual-nda/template.docx +0 -0
  172. package/templates/bonterms-professional-services-agreement/README.md +24 -0
  173. package/templates/bonterms-professional-services-agreement/metadata.yaml +40 -0
  174. package/templates/bonterms-professional-services-agreement/template.docx +0 -0
  175. package/templates/common-paper-ai-addendum/README.md +23 -0
  176. package/templates/common-paper-ai-addendum/metadata.yaml +33 -0
  177. package/templates/common-paper-ai-addendum/template.docx +0 -0
  178. package/templates/common-paper-ai-addendum-in-app/README.md +21 -0
  179. package/templates/common-paper-ai-addendum-in-app/metadata.yaml +23 -0
  180. package/templates/common-paper-ai-addendum-in-app/template.docx +0 -0
  181. package/templates/common-paper-amendment/README.md +27 -0
  182. package/templates/common-paper-amendment/metadata.yaml +53 -0
  183. package/templates/common-paper-amendment/template.docx +0 -0
  184. package/templates/common-paper-business-associate-agreement/README.md +29 -0
  185. package/templates/common-paper-business-associate-agreement/metadata.yaml +63 -0
  186. package/templates/common-paper-business-associate-agreement/template.docx +0 -0
  187. package/templates/common-paper-cloud-service-agreement/README.md +32 -0
  188. package/templates/common-paper-cloud-service-agreement/metadata.yaml +488 -0
  189. package/templates/common-paper-cloud-service-agreement/template.docx +0 -0
  190. package/templates/common-paper-csa-click-through/README.md +33 -0
  191. package/templates/common-paper-csa-click-through/metadata.yaml +83 -0
  192. package/templates/common-paper-csa-click-through/template.docx +0 -0
  193. package/templates/common-paper-csa-with-ai/README.md +49 -0
  194. package/templates/common-paper-csa-with-ai/metadata.yaml +166 -0
  195. package/templates/common-paper-csa-with-ai/template.docx +0 -0
  196. package/templates/common-paper-csa-with-sla/README.md +53 -0
  197. package/templates/common-paper-csa-with-sla/metadata.yaml +185 -0
  198. package/templates/common-paper-csa-with-sla/template.docx +0 -0
  199. package/templates/common-paper-csa-without-sla/README.md +47 -0
  200. package/templates/common-paper-csa-without-sla/metadata.yaml +155 -0
  201. package/templates/common-paper-csa-without-sla/template.docx +0 -0
  202. package/templates/common-paper-data-processing-agreement/README.md +46 -0
  203. package/templates/common-paper-data-processing-agreement/metadata.yaml +149 -0
  204. package/templates/common-paper-data-processing-agreement/template.docx +0 -0
  205. package/templates/common-paper-design-partner-agreement/README.md +29 -0
  206. package/templates/common-paper-design-partner-agreement/metadata.yaml +65 -0
  207. package/templates/common-paper-design-partner-agreement/template.docx +0 -0
  208. package/templates/common-paper-independent-contractor-agreement/README.md +27 -0
  209. package/templates/common-paper-independent-contractor-agreement/metadata.yaml +55 -0
  210. package/templates/common-paper-independent-contractor-agreement/template.docx +0 -0
  211. package/templates/common-paper-letter-of-intent/README.md +25 -0
  212. package/templates/common-paper-letter-of-intent/metadata.yaml +43 -0
  213. package/templates/common-paper-letter-of-intent/template.docx +0 -0
  214. package/templates/common-paper-mutual-nda/README.md +29 -0
  215. package/templates/common-paper-mutual-nda/metadata.yaml +59 -0
  216. package/templates/common-paper-mutual-nda/template.docx +0 -0
  217. package/templates/common-paper-one-way-nda/README.md +27 -0
  218. package/templates/common-paper-one-way-nda/metadata.yaml +60 -0
  219. package/templates/common-paper-one-way-nda/template.docx +0 -0
  220. package/templates/common-paper-order-form/README.md +36 -0
  221. package/templates/common-paper-order-form/metadata.yaml +98 -0
  222. package/templates/common-paper-order-form/template.docx +0 -0
  223. package/templates/common-paper-order-form-with-sla/README.md +42 -0
  224. package/templates/common-paper-order-form-with-sla/metadata.yaml +129 -0
  225. package/templates/common-paper-order-form-with-sla/template.docx +0 -0
  226. package/templates/common-paper-partnership-agreement/README.md +34 -0
  227. package/templates/common-paper-partnership-agreement/metadata.yaml +90 -0
  228. package/templates/common-paper-partnership-agreement/template.docx +0 -0
  229. package/templates/common-paper-pilot-agreement/README.md +34 -0
  230. package/templates/common-paper-pilot-agreement/metadata.yaml +90 -0
  231. package/templates/common-paper-pilot-agreement/template.docx +0 -0
  232. package/templates/common-paper-professional-services-agreement/README.md +44 -0
  233. package/templates/common-paper-professional-services-agreement/metadata.yaml +141 -0
  234. package/templates/common-paper-professional-services-agreement/template.docx +0 -0
  235. package/templates/common-paper-software-license-agreement/README.md +18 -0
  236. package/templates/common-paper-software-license-agreement/metadata.yaml +13 -0
  237. package/templates/common-paper-software-license-agreement/template.docx +0 -0
  238. package/templates/common-paper-statement-of-work/README.md +32 -0
  239. package/templates/common-paper-statement-of-work/metadata.yaml +78 -0
  240. package/templates/common-paper-statement-of-work/template.docx +0 -0
  241. package/templates/common-paper-term-sheet/README.md +22 -0
  242. package/templates/common-paper-term-sheet/metadata.yaml +28 -0
  243. package/templates/common-paper-term-sheet/template.docx +0 -0
@@ -0,0 +1,83 @@
1
+ name: Common Paper CSA Click-Through
2
+ description: >-
3
+ A click-through cloud service agreement based on Common Paper's standard
4
+ terms. Designed for self-serve SaaS products where the customer accepts terms
5
+ online rather than negotiating a paper agreement.
6
+ source_url: https://commonpaper.com/standards/cloud-service-agreement/2.1
7
+ version: "2.1"
8
+ license: CC-BY-4.0
9
+ allow_derivatives: true
10
+ attribution_text: >-
11
+ Based on the Common Paper CSA Click-Through, available at
12
+ https://commonpaper.com. Licensed under CC BY 4.0. Copyright Common Paper, Inc.
13
+ fields:
14
+ - name: provider_name
15
+ type: string
16
+ description: Name of the cloud service provider
17
+ required: true
18
+ section: Parties
19
+ - name: cloud_service
20
+ type: string
21
+ description: Description of the cloud service
22
+ required: true
23
+ section: Service
24
+ - name: custom_order_date
25
+ type: string
26
+ description: Custom order date
27
+ required: false
28
+ section: Terms
29
+ - name: effective_date
30
+ type: string
31
+ description: Effective date of the agreement
32
+ required: false
33
+ section: Terms
34
+ - name: subscription_period
35
+ type: string
36
+ description: Length of access to the service
37
+ required: false
38
+ section: Terms
39
+ - name: payment_frequency
40
+ type: string
41
+ description: Payment frequency
42
+ required: false
43
+ section: Payment
44
+ - name: payment_terms_days
45
+ type: string
46
+ description: Days to pay after invoice
47
+ required: false
48
+ section: Payment
49
+ - name: non_renewal_notice_date
50
+ type: string
51
+ description: Non-renewal notice date requirement
52
+ required: false
53
+ section: Terms
54
+ - name: order_date
55
+ type: string
56
+ description: Order date description
57
+ required: false
58
+ section: Terms
59
+ - name: governing_law
60
+ type: string
61
+ description: Governing law jurisdiction
62
+ required: true
63
+ section: Legal
64
+ - name: jurisdiction
65
+ type: string
66
+ description: Courts with jurisdiction
67
+ required: true
68
+ section: Legal
69
+ - name: provider_email
70
+ type: string
71
+ description: Provider's email for notices
72
+ required: false
73
+ section: Parties
74
+ - name: unlimited_claims
75
+ type: string
76
+ description: Description of unlimited claims
77
+ required: false
78
+ section: Liability
79
+ - name: pricing_page
80
+ type: string
81
+ description: Reference to pricing page
82
+ required: false
83
+ section: Payment
@@ -0,0 +1,49 @@
1
+ # Common Paper CSA With AI
2
+
3
+ A cloud service agreement with AI provisions based on [Common Paper's](https://commonpaper.com) standard terms. Extends the standard CSA with AI-specific terms covering model training, input/output rights, and AI usage policies.
4
+
5
+ ## Source
6
+
7
+ - **URL**: https://commonpaper.com/standards/cloud-service-agreement/2.1
8
+ - **Version**: 2.1
9
+ - **License**: CC BY 4.0
10
+
11
+ ## Fields
12
+
13
+ | Field | Type | Required | Description |
14
+ |-------|------|----------|-------------|
15
+ | `company_name` | string | yes | Company name (shown in header) |
16
+ | `provider_name` | string | yes | Name of the Provider |
17
+ | `customer_name` | string | yes | Name of the Customer |
18
+ | `key_terms_effective_date` | string | yes | Effective Date of the Key Terms |
19
+ | `cloud_service` | string | yes | Description of the cloud service |
20
+ | `custom_start_date` | string | no | Custom start date |
21
+ | `subscription_period` | string | yes | Length of access to the service |
22
+ | `pilot_period` | string | no | Length of pilot/trial period |
23
+ | `fees` | string | no | Subscription fee amount |
24
+ | `fee_unit` | string | no | Fee billing unit |
25
+ | `fill_in_value` | string | no | General fill-in value |
26
+ | `payment_frequency` | string | no | Payment frequency |
27
+ | `payment_terms_days` | string | no | Days to pay after invoice |
28
+ | `payment_due_from` | string | no | When payment terms start |
29
+ | `non_renewal_notice_days` | string | no | Non-renewal notice days |
30
+ | `technical_support` | string | no | Description of support |
31
+ | `support_policy_reference` | string | no | Reference to support policy |
32
+ | `professional_services_reference` | string | no | SOW or PSA reference |
33
+ | `professional_services_description` | string | no | Professional services description |
34
+ | `custom_effective_date` | string | no | Custom effective date |
35
+ | `governing_law` | string | yes | Governing law |
36
+ | `jurisdiction` | string | yes | Jurisdiction |
37
+ | `general_cap_amount` | string | no | General liability cap amount |
38
+ | `cap_multiplier` | string | no | Liability cap multiplier |
39
+ | `increased_cap_amount` | string | no | Increased liability cap amount |
40
+ | `greater_of_dollar` | string | no | Greater-of dollar amount |
41
+ | `greater_of_multiplier` | string | no | Greater-of multiplier |
42
+ | `dpa_reference` | string | no | DPA reference |
43
+ | `ai_policy_reference` | string | no | Reference to AI usage policy (URL or attached) |
44
+ | `ai_additional_terms` | string | no | Additional AI-specific terms |
45
+
46
+ ## Attribution
47
+
48
+ Based on the Common Paper CSA With AI, available at https://commonpaper.com.
49
+ Licensed under CC BY 4.0. Copyright Common Paper, Inc.
@@ -0,0 +1,166 @@
1
+ name: Common Paper CSA With AI
2
+ description: >-
3
+ A cloud service agreement with AI provisions, key terms, and standard terms,
4
+ based on Common Paper's standard form. Extends the standard CSA with
5
+ AI-specific terms covering model training, input/output rights, and AI usage
6
+ policies.
7
+ source_url: https://commonpaper.com/standards/cloud-service-agreement/2.1
8
+ version: "2.1"
9
+ license: CC-BY-4.0
10
+ allow_derivatives: true
11
+ attribution_text: >-
12
+ Based on the Common Paper CSA With AI, available at
13
+ https://commonpaper.com. Licensed under CC BY 4.0. Copyright Common Paper, Inc.
14
+ fields:
15
+ - name: company_name
16
+ type: string
17
+ description: Company name (shown in header)
18
+ required: true
19
+ section: Parties
20
+ - name: provider_name
21
+ type: string
22
+ description: Name of the Provider
23
+ required: true
24
+ section: Parties
25
+ - name: customer_name
26
+ type: string
27
+ description: Name of the Customer
28
+ required: true
29
+ section: Parties
30
+ - name: key_terms_effective_date
31
+ type: string
32
+ description: Effective Date of the Key Terms
33
+ required: true
34
+ section: Terms
35
+ - name: cloud_service
36
+ type: string
37
+ description: Description of the cloud service
38
+ required: true
39
+ section: Service
40
+ - name: custom_start_date
41
+ type: string
42
+ description: Custom start date
43
+ required: false
44
+ section: Terms
45
+ - name: subscription_period
46
+ type: string
47
+ description: Length of access to the service
48
+ required: true
49
+ section: Service
50
+ - name: pilot_period
51
+ type: string
52
+ description: Length of pilot/trial period
53
+ required: false
54
+ section: Service
55
+ - name: fees
56
+ type: string
57
+ description: Subscription fee amount
58
+ required: false
59
+ section: Payment
60
+ - name: fee_unit
61
+ type: string
62
+ description: Fee billing unit
63
+ required: false
64
+ section: Payment
65
+ - name: fill_in_value
66
+ type: string
67
+ description: General fill-in value
68
+ required: false
69
+ section: Terms
70
+ - name: payment_frequency
71
+ type: string
72
+ description: Payment frequency
73
+ required: false
74
+ section: Payment
75
+ - name: payment_terms_days
76
+ type: string
77
+ description: Days to pay after invoice
78
+ required: false
79
+ section: Payment
80
+ - name: payment_due_from
81
+ type: string
82
+ description: When payment terms start
83
+ required: false
84
+ section: Payment
85
+ - name: non_renewal_notice_days
86
+ type: string
87
+ description: Non-renewal notice days
88
+ required: false
89
+ section: Terms
90
+ - name: technical_support
91
+ type: string
92
+ description: Description of support
93
+ required: false
94
+ section: Service
95
+ - name: support_policy_reference
96
+ type: string
97
+ description: Reference to support policy
98
+ required: false
99
+ section: Service
100
+ - name: professional_services_reference
101
+ type: string
102
+ description: SOW or PSA reference
103
+ required: false
104
+ section: Service
105
+ - name: professional_services_description
106
+ type: string
107
+ description: Professional services description
108
+ required: false
109
+ section: Service
110
+ - name: custom_effective_date
111
+ type: string
112
+ description: Custom effective date
113
+ required: false
114
+ section: Legal
115
+ - name: governing_law
116
+ type: string
117
+ description: Governing law
118
+ required: true
119
+ default: Delaware
120
+ section: Legal
121
+ - name: jurisdiction
122
+ type: string
123
+ description: Jurisdiction
124
+ required: true
125
+ default: courts located in New Castle County, Delaware
126
+ section: Legal
127
+ - name: general_cap_amount
128
+ type: string
129
+ description: General liability cap amount
130
+ required: false
131
+ section: Liability
132
+ - name: cap_multiplier
133
+ type: string
134
+ description: Liability cap multiplier
135
+ required: false
136
+ section: Liability
137
+ - name: increased_cap_amount
138
+ type: string
139
+ description: Increased liability cap amount
140
+ required: false
141
+ section: Liability
142
+ - name: greater_of_dollar
143
+ type: string
144
+ description: Greater-of dollar amount
145
+ required: false
146
+ section: Liability
147
+ - name: greater_of_multiplier
148
+ type: string
149
+ description: Greater-of multiplier
150
+ required: false
151
+ section: Liability
152
+ - name: dpa_reference
153
+ type: string
154
+ description: DPA reference
155
+ required: false
156
+ section: Privacy
157
+ - name: ai_policy_reference
158
+ type: string
159
+ description: Reference to AI usage policy (URL or attached)
160
+ required: false
161
+ section: Service
162
+ - name: ai_additional_terms
163
+ type: string
164
+ description: Additional AI-specific terms
165
+ required: false
166
+ section: Legal
@@ -0,0 +1,53 @@
1
+ # Common Paper CSA With SLA
2
+
3
+ A cloud service agreement with SLA provisions based on [Common Paper's](https://commonpaper.com) standard terms. Includes uptime targets, response times, and support schedules alongside full CSA terms.
4
+
5
+ ## Source
6
+
7
+ - **URL**: https://commonpaper.com/standards/cloud-service-agreement/2.1
8
+ - **Version**: 2.1
9
+ - **License**: CC BY 4.0
10
+
11
+ ## Fields
12
+
13
+ | Field | Type | Required | Description |
14
+ |-------|------|----------|-------------|
15
+ | `company_name` | string | yes | Company name (shown in header) |
16
+ | `provider_name` | string | yes | Name of the Provider |
17
+ | `customer_name` | string | yes | Name of the Customer |
18
+ | `key_terms_effective_date` | string | yes | Effective Date of the Key Terms |
19
+ | `cloud_service` | string | yes | Description of the cloud service |
20
+ | `custom_start_date` | string | no | Custom start date |
21
+ | `subscription_period` | string | yes | Length of access to the service |
22
+ | `pilot_period` | string | no | Length of pilot/trial period |
23
+ | `fees` | string | no | Subscription fee amount |
24
+ | `fee_unit` | string | no | Fee billing unit |
25
+ | `fill_in_value` | string | no | General fill-in value |
26
+ | `payment_frequency` | string | no | Payment frequency |
27
+ | `payment_terms_days` | string | no | Days to pay after invoice |
28
+ | `payment_due_from` | string | no | When payment terms start |
29
+ | `non_renewal_notice_days` | string | no | Non-renewal notice days |
30
+ | `technical_support` | string | no | Description of support |
31
+ | `support_policy_reference` | string | no | Reference to support policy |
32
+ | `professional_services_reference` | string | no | SOW or PSA reference |
33
+ | `professional_services_description` | string | no | Professional services description |
34
+ | `custom_effective_date` | string | no | Custom effective date |
35
+ | `governing_law` | string | yes | Governing law |
36
+ | `jurisdiction` | string | yes | Jurisdiction |
37
+ | `general_cap_amount` | string | no | General liability cap amount |
38
+ | `cap_multiplier` | string | no | Liability cap multiplier |
39
+ | `increased_cap_amount` | string | no | Increased liability cap amount |
40
+ | `greater_of_dollar` | string | no | Greater-of dollar amount |
41
+ | `greater_of_multiplier` | string | no | Greater-of multiplier |
42
+ | `dpa_reference` | string | no | DPA reference |
43
+ | `support_start_time` | string | no | Start time for support |
44
+ | `support_end_time` | string | no | End time for support |
45
+ | `support_days` | string | no | Days of the week for support |
46
+ | `support_timezone` | string | no | Support timezone |
47
+ | `response_time_unit` | string | no | Response time unit |
48
+ | `resolution_time_unit` | string | no | Resolution time unit |
49
+
50
+ ## Attribution
51
+
52
+ Based on the Common Paper CSA With SLA, available at https://commonpaper.com.
53
+ Licensed under CC BY 4.0. Copyright Common Paper, Inc.
@@ -0,0 +1,185 @@
1
+ name: Common Paper CSA With SLA
2
+ description: >-
3
+ A cloud service agreement with SLA provisions, key terms, and standard terms,
4
+ based on Common Paper's standard form. Includes uptime targets, response
5
+ times, and support schedules alongside full CSA terms.
6
+ source_url: https://commonpaper.com/standards/cloud-service-agreement/2.1
7
+ version: "2.1"
8
+ license: CC-BY-4.0
9
+ allow_derivatives: true
10
+ attribution_text: >-
11
+ Based on the Common Paper CSA With SLA, available at
12
+ https://commonpaper.com. Licensed under CC BY 4.0. Copyright Common Paper, Inc.
13
+ fields:
14
+ - name: company_name
15
+ type: string
16
+ description: Company name (shown in header)
17
+ required: true
18
+ section: Parties
19
+ - name: provider_name
20
+ type: string
21
+ description: Name of the Provider
22
+ required: true
23
+ section: Parties
24
+ - name: customer_name
25
+ type: string
26
+ description: Name of the Customer
27
+ required: true
28
+ section: Parties
29
+ - name: key_terms_effective_date
30
+ type: string
31
+ description: Effective Date of the Key Terms
32
+ required: true
33
+ section: Terms
34
+ - name: cloud_service
35
+ type: string
36
+ description: Description of the cloud service
37
+ required: true
38
+ section: Service
39
+ - name: custom_start_date
40
+ type: string
41
+ description: Custom start date
42
+ required: false
43
+ section: Terms
44
+ - name: subscription_period
45
+ type: string
46
+ description: Length of access to the service
47
+ required: true
48
+ section: Service
49
+ - name: pilot_period
50
+ type: string
51
+ description: Length of pilot/trial period
52
+ required: false
53
+ section: Service
54
+ - name: fees
55
+ type: string
56
+ description: Subscription fee amount
57
+ required: false
58
+ section: Payment
59
+ - name: fee_unit
60
+ type: string
61
+ description: Fee billing unit
62
+ required: false
63
+ section: Payment
64
+ - name: fill_in_value
65
+ type: string
66
+ description: General fill-in value
67
+ required: false
68
+ section: Terms
69
+ - name: payment_frequency
70
+ type: string
71
+ description: Payment frequency
72
+ required: false
73
+ section: Payment
74
+ - name: payment_terms_days
75
+ type: string
76
+ description: Days to pay after invoice
77
+ required: false
78
+ section: Payment
79
+ - name: payment_due_from
80
+ type: string
81
+ description: When payment terms start
82
+ required: false
83
+ section: Payment
84
+ - name: non_renewal_notice_days
85
+ type: string
86
+ description: Non-renewal notice days
87
+ required: false
88
+ section: Terms
89
+ - name: technical_support
90
+ type: string
91
+ description: Description of support
92
+ required: false
93
+ section: Service
94
+ - name: support_policy_reference
95
+ type: string
96
+ description: Reference to support policy
97
+ required: false
98
+ section: Service
99
+ - name: professional_services_reference
100
+ type: string
101
+ description: SOW or PSA reference
102
+ required: false
103
+ section: Service
104
+ - name: professional_services_description
105
+ type: string
106
+ description: Professional services description
107
+ required: false
108
+ section: Service
109
+ - name: custom_effective_date
110
+ type: string
111
+ description: Custom effective date
112
+ required: false
113
+ section: Legal
114
+ - name: governing_law
115
+ type: string
116
+ description: Governing law
117
+ required: true
118
+ default: Delaware
119
+ section: Legal
120
+ - name: jurisdiction
121
+ type: string
122
+ description: Jurisdiction
123
+ required: true
124
+ default: courts located in New Castle County, Delaware
125
+ section: Legal
126
+ - name: general_cap_amount
127
+ type: string
128
+ description: General liability cap amount
129
+ required: false
130
+ section: Liability
131
+ - name: cap_multiplier
132
+ type: string
133
+ description: Liability cap multiplier
134
+ required: false
135
+ section: Liability
136
+ - name: increased_cap_amount
137
+ type: string
138
+ description: Increased liability cap amount
139
+ required: false
140
+ section: Liability
141
+ - name: greater_of_dollar
142
+ type: string
143
+ description: Greater-of dollar amount
144
+ required: false
145
+ section: Liability
146
+ - name: greater_of_multiplier
147
+ type: string
148
+ description: Greater-of multiplier
149
+ required: false
150
+ section: Liability
151
+ - name: dpa_reference
152
+ type: string
153
+ description: DPA reference
154
+ required: false
155
+ section: Privacy
156
+ - name: support_start_time
157
+ type: string
158
+ description: Start time for support
159
+ required: false
160
+ section: Service
161
+ - name: support_end_time
162
+ type: string
163
+ description: End time for support
164
+ required: false
165
+ section: Service
166
+ - name: support_days
167
+ type: string
168
+ description: Days of the week for support
169
+ required: false
170
+ section: Service
171
+ - name: support_timezone
172
+ type: string
173
+ description: Support timezone
174
+ required: false
175
+ section: Service
176
+ - name: response_time_unit
177
+ type: string
178
+ description: Response time unit
179
+ required: false
180
+ section: Service
181
+ - name: resolution_time_unit
182
+ type: string
183
+ description: Resolution time unit
184
+ required: false
185
+ section: Service
@@ -0,0 +1,47 @@
1
+ # Common Paper CSA Without SLA
2
+
3
+ A cloud service agreement with key terms and standard terms based on [Common Paper's](https://commonpaper.com) standard form. Covers SaaS subscriptions, payment, liability, and data processing.
4
+
5
+ ## Source
6
+
7
+ - **URL**: https://commonpaper.com/standards/cloud-service-agreement/2.1
8
+ - **Version**: 2.1
9
+ - **License**: CC BY 4.0
10
+
11
+ ## Fields
12
+
13
+ | Field | Type | Required | Description |
14
+ |-------|------|----------|-------------|
15
+ | `company_name` | string | yes | Company name (shown in header) |
16
+ | `provider_name` | string | yes | Name of the Provider |
17
+ | `customer_name` | string | yes | Name of the Customer |
18
+ | `key_terms_effective_date` | string | yes | Effective Date of the Key Terms |
19
+ | `cloud_service` | string | yes | Description of the cloud service |
20
+ | `custom_start_date` | string | no | Custom start date |
21
+ | `subscription_period` | string | yes | Length of access to the service |
22
+ | `pilot_period` | string | no | Length of pilot/trial period |
23
+ | `fees` | string | no | Subscription fee amount |
24
+ | `fee_unit` | string | no | Fee billing unit |
25
+ | `fill_in_value` | string | no | General fill-in value |
26
+ | `payment_frequency` | string | no | Payment frequency |
27
+ | `payment_terms_days` | string | no | Days to pay after invoice |
28
+ | `payment_due_from` | string | no | When payment terms start |
29
+ | `non_renewal_notice_days` | string | no | Non-renewal notice days |
30
+ | `technical_support` | string | no | Description of support |
31
+ | `support_policy_reference` | string | no | Reference to support policy |
32
+ | `professional_services_reference` | string | no | SOW or PSA reference |
33
+ | `professional_services_description` | string | no | Professional services description |
34
+ | `custom_effective_date` | string | no | Custom effective date |
35
+ | `governing_law` | string | yes | Governing law |
36
+ | `jurisdiction` | string | yes | Jurisdiction |
37
+ | `general_cap_amount` | string | no | General liability cap amount |
38
+ | `cap_multiplier` | string | no | Liability cap multiplier |
39
+ | `increased_cap_amount` | string | no | Increased liability cap amount |
40
+ | `greater_of_dollar` | string | no | Greater-of dollar amount |
41
+ | `greater_of_multiplier` | string | no | Greater-of multiplier |
42
+ | `dpa_reference` | string | no | DPA reference |
43
+
44
+ ## Attribution
45
+
46
+ Based on the Common Paper CSA Without SLA, available at https://commonpaper.com.
47
+ Licensed under CC BY 4.0. Copyright Common Paper, Inc.