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,90 @@
1
+ name: Common Paper Pilot Agreement
2
+ description: >-
3
+ A pilot agreement cover page and standard terms, based on Common Paper's
4
+ standard form. Covers trial or pilot periods for cloud services, including
5
+ fees, support, and liability provisions.
6
+ source_url: https://commonpaper.com/standards/pilot-agreement/1.1
7
+ version: "1.1"
8
+ license: CC-BY-4.0
9
+ allow_derivatives: true
10
+ attribution_text: >-
11
+ Based on the Common Paper Pilot Agreement, 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: Official company name (shown in header)
17
+ required: true
18
+ section: Parties
19
+ - name: product_description
20
+ type: string
21
+ description: Description of the product being piloted
22
+ required: true
23
+ section: Service
24
+ - name: pilot_period
25
+ type: string
26
+ description: Length of the pilot period (e.g. "3 months")
27
+ required: true
28
+ section: Terms
29
+ - name: custom_start_date
30
+ type: string
31
+ description: Custom start date for the pilot
32
+ required: false
33
+ section: Terms
34
+ - name: pilot_fee
35
+ type: string
36
+ description: Fee for the pilot period (dollar amount)
37
+ required: false
38
+ section: Payment
39
+ - name: fees_description
40
+ type: string
41
+ description: Description of fees
42
+ required: false
43
+ section: Payment
44
+ - name: payment_frequency
45
+ type: string
46
+ description: Payment frequency (e.g. "monthly", "quarterly", "annually")
47
+ required: false
48
+ section: Payment
49
+ - name: payment_terms_days
50
+ type: string
51
+ description: Number of days to pay after invoice
52
+ required: false
53
+ section: Payment
54
+ - name: payment_due_from
55
+ type: string
56
+ description: When payment terms start (e.g. "Customer's receipt of invoice")
57
+ required: false
58
+ section: Payment
59
+ - name: technical_support
60
+ type: string
61
+ description: Description of included support and how to access it
62
+ required: false
63
+ section: Service
64
+ - name: support_policy_reference
65
+ type: string
66
+ description: Reference to or location of support policy
67
+ required: false
68
+ section: Service
69
+ - name: general_cap_amount
70
+ type: string
71
+ description: General liability cap dollar amount
72
+ required: false
73
+ section: Liability
74
+ - name: cap_multiplier
75
+ type: string
76
+ description: Liability cap multiplier (e.g. "2")
77
+ required: false
78
+ section: Liability
79
+ - name: governing_law
80
+ type: string
81
+ description: State, province, and/or country whose laws govern the agreement
82
+ required: true
83
+ default: Delaware
84
+ section: Legal
85
+ - name: jurisdiction
86
+ type: string
87
+ description: Courts with jurisdiction over disputes
88
+ required: true
89
+ default: courts located in New Castle County, Delaware
90
+ section: Legal
@@ -0,0 +1,44 @@
1
+ # Common Paper Professional Services Agreement
2
+
3
+ A professional services agreement based on [Common Paper's](https://commonpaper.com) standard terms. Covers consulting and professional services engagements including deliverables, IP ownership, fees, and liability.
4
+
5
+ ## Source
6
+
7
+ - **URL**: https://commonpaper.com/standards/professional-services-agreement/1.1
8
+ - **Version**: 1.1
9
+ - **License**: CC BY 4.0
10
+
11
+ ## Fields
12
+
13
+ | Field | Type | Required | Description |
14
+ |-------|------|----------|-------------|
15
+ | `company_name` | string | yes | Official company name |
16
+ | `provider_name` | string | yes | Official name of the Provider |
17
+ | `customer_name` | string | yes | Official name of the Customer |
18
+ | `key_terms_effective_date` | string | yes | Effective Date of Key Terms |
19
+ | `custom_effective_date` | string | no | Custom effective date |
20
+ | `custom_sow_date` | string | no | Custom SOW date |
21
+ | `sow_number` | string | yes | Statement of Work number |
22
+ | `term_duration_unit` | string | no | Duration unit for term |
23
+ | `custom_end_date` | string | no | Custom end date |
24
+ | `payment_terms` | string | yes | Payment terms |
25
+ | `invoice_frequency_unit` | string | no | Invoice frequency unit |
26
+ | `fill_in_value` | string | no | General fill-in value |
27
+ | `fill_in_detail` | string | no | Additional detail |
28
+ | `payment_terms_days` | string | no | Days to pay after invoice |
29
+ | `non_renewal_notice_days` | string | no | Non-renewal notice days |
30
+ | `general_cap_amount` | string | no | General liability cap |
31
+ | `cap_multiplier` | string | no | Cap multiplier |
32
+ | `increased_cap_amount` | string | no | Increased cap amount |
33
+ | `greater_of_dollar` | string | no | Greater-of dollar amount |
34
+ | `governing_law` | string | yes | Governing law |
35
+ | `jurisdiction` | string | yes | Jurisdiction |
36
+ | `travel_expense_policy` | string | no | Travel and expense policy |
37
+ | `customer_owned_deliverables` | string | no | Customer-owned deliverables |
38
+ | `support_policy_reference` | string | no | Support policy reference |
39
+ | `dpa_reference` | string | no | DPA reference |
40
+
41
+ ## Attribution
42
+
43
+ Based on the Common Paper Professional Services Agreement, available at https://commonpaper.com.
44
+ Licensed under CC BY 4.0. Copyright Common Paper, Inc.
@@ -0,0 +1,141 @@
1
+ name: Common Paper Professional Services Agreement
2
+ description: >-
3
+ A professional services agreement with key terms, statement of work, and
4
+ standard terms, based on Common Paper's standard form. Covers consulting and
5
+ professional services engagements including deliverables, IP ownership, fees,
6
+ and liability.
7
+ source_url: https://commonpaper.com/standards/professional-services-agreement/1.1
8
+ version: "1.1"
9
+ license: CC-BY-4.0
10
+ allow_derivatives: true
11
+ attribution_text: >-
12
+ Based on the Common Paper Professional Services Agreement, 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: Official company name
18
+ required: true
19
+ section: Parties
20
+ - name: provider_name
21
+ type: string
22
+ description: Official name of the Provider
23
+ required: true
24
+ section: Parties
25
+ - name: customer_name
26
+ type: string
27
+ description: Official name of the Customer
28
+ required: true
29
+ section: Parties
30
+ - name: key_terms_effective_date
31
+ type: string
32
+ description: Effective Date of Key Terms
33
+ required: true
34
+ section: Terms
35
+ - name: custom_effective_date
36
+ type: string
37
+ description: Custom effective date
38
+ required: false
39
+ section: Terms
40
+ - name: custom_sow_date
41
+ type: string
42
+ description: Custom SOW date
43
+ required: false
44
+ section: Terms
45
+ - name: sow_number
46
+ type: string
47
+ description: Statement of Work number
48
+ required: true
49
+ section: Terms
50
+ - name: term_duration_unit
51
+ type: string
52
+ description: Duration unit for term
53
+ required: false
54
+ section: Terms
55
+ - name: custom_end_date
56
+ type: string
57
+ description: Custom end date
58
+ required: false
59
+ section: Terms
60
+ - name: payment_terms
61
+ type: string
62
+ description: Payment terms
63
+ required: true
64
+ section: Payment
65
+ - name: invoice_frequency_unit
66
+ type: string
67
+ description: Invoice frequency unit
68
+ required: false
69
+ section: Payment
70
+ - name: fill_in_value
71
+ type: string
72
+ description: General fill-in value
73
+ required: false
74
+ section: Terms
75
+ - name: fill_in_detail
76
+ type: string
77
+ description: Additional detail
78
+ required: false
79
+ section: Terms
80
+ - name: payment_terms_days
81
+ type: string
82
+ description: Days to pay after invoice
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: general_cap_amount
91
+ type: string
92
+ description: General liability cap
93
+ required: false
94
+ section: Liability
95
+ - name: cap_multiplier
96
+ type: string
97
+ description: Cap multiplier
98
+ required: false
99
+ section: Liability
100
+ - name: increased_cap_amount
101
+ type: string
102
+ description: Increased cap amount
103
+ required: false
104
+ section: Liability
105
+ - name: greater_of_dollar
106
+ type: string
107
+ description: Greater-of dollar amount
108
+ required: false
109
+ section: Liability
110
+ - name: governing_law
111
+ type: string
112
+ description: Governing law
113
+ required: true
114
+ default: Delaware
115
+ section: Legal
116
+ - name: jurisdiction
117
+ type: string
118
+ description: Jurisdiction
119
+ required: true
120
+ default: courts in New Castle County, Delaware
121
+ section: Legal
122
+ - name: travel_expense_policy
123
+ type: string
124
+ description: Travel and expense policy
125
+ required: false
126
+ section: Payment
127
+ - name: customer_owned_deliverables
128
+ type: string
129
+ description: Customer-owned deliverables
130
+ required: false
131
+ section: Terms
132
+ - name: support_policy_reference
133
+ type: string
134
+ description: Support policy reference
135
+ required: false
136
+ section: Service
137
+ - name: dpa_reference
138
+ type: string
139
+ description: DPA reference
140
+ required: false
141
+ section: Privacy
@@ -0,0 +1,18 @@
1
+ # Common Paper Software License Agreement
2
+
3
+ Standard terms for a software license agreement based on [Common Paper's](https://commonpaper.com) standard form. Provides the framework terms for on-premise software licensing, to be used with a separate cover page and order form.
4
+
5
+ ## Source
6
+
7
+ - **URL**: https://commonpaper.com/standards/software-license-agreement/1.1
8
+ - **Version**: 1.1
9
+ - **License**: CC BY 4.0
10
+
11
+ ## Fields
12
+
13
+ This is a standard terms document with no fill-in placeholders. The cover page and order form are separate documents.
14
+
15
+ ## Attribution
16
+
17
+ Based on the Common Paper Software License Agreement, available at https://commonpaper.com.
18
+ Licensed under CC BY 4.0. Copyright Common Paper, Inc.
@@ -0,0 +1,13 @@
1
+ name: Common Paper Software License Agreement
2
+ description: >-
3
+ Standard terms for a software license agreement, based on Common Paper's
4
+ standard form. Provides the framework terms for on-premise software licensing,
5
+ to be used with a separate cover page and order form.
6
+ source_url: https://commonpaper.com/standards/software-license-agreement/1.1
7
+ version: "1.1"
8
+ license: CC-BY-4.0
9
+ allow_derivatives: true
10
+ attribution_text: >-
11
+ Based on the Common Paper Software License Agreement, available at
12
+ https://commonpaper.com. Licensed under CC BY 4.0. Copyright Common Paper, Inc.
13
+ fields: []
@@ -0,0 +1,32 @@
1
+ # Common Paper Statement of Work
2
+
3
+ A statement of work template for professional services engagements, based on [Common Paper's](https://commonpaper.com) standard form.
4
+
5
+ ## Source
6
+
7
+ - **URL**: https://commonpaper.com/standards/statement-of-work
8
+ - **Version**: 1.0
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 | Official name of the Provider |
17
+ | `customer_name` | string | yes | Official name of the Customer |
18
+ | `key_terms_effective_date` | string | yes | Effective Date of the Key Terms |
19
+ | `sow_number` | string | yes | Statement of Work number |
20
+ | `custom_sow_date` | string | no | Custom SOW date |
21
+ | `custom_end_date` | string | no | Custom end date for the SOW term |
22
+ | `term_duration_unit` | string | no | Duration unit for SOW term |
23
+ | `payment_terms` | string | yes | Payment terms |
24
+ | `fill_in_value` | string | no | General fill-in value |
25
+ | `invoice_frequency_unit` | string | no | Invoice frequency unit |
26
+ | `travel_expense_policy` | string | no | Travel and expense policy |
27
+ | `customer_owned_deliverables` | string | no | Customer-owned deliverables |
28
+
29
+ ## Attribution
30
+
31
+ Based on the Common Paper Statement of Work, available at https://commonpaper.com.
32
+ Licensed under CC BY 4.0. Copyright Common Paper, Inc.
@@ -0,0 +1,78 @@
1
+ name: Common Paper Statement of Work
2
+ description: >-
3
+ A statement of work template for professional services engagements, based on
4
+ Common Paper's standard form. References a PSA or CSA Key Terms and covers
5
+ scope, deliverables, timeline, fees, and expenses.
6
+ source_url: https://commonpaper.com/standards/statement-of-work
7
+ version: "1.0"
8
+ license: CC-BY-4.0
9
+ allow_derivatives: true
10
+ attribution_text: >-
11
+ Based on the Common Paper Statement of Work, 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: Official name of the Provider on Key Terms
22
+ required: true
23
+ section: Parties
24
+ - name: customer_name
25
+ type: string
26
+ description: Official name of the Customer on Key Terms
27
+ required: true
28
+ section: Parties
29
+ - name: key_terms_effective_date
30
+ type: string
31
+ description: Effective Date of the Key Terms agreement
32
+ required: true
33
+ section: Terms
34
+ - name: sow_number
35
+ type: string
36
+ description: Statement of Work number (e.g. "1", "2")
37
+ required: true
38
+ section: Terms
39
+ - name: custom_sow_date
40
+ type: string
41
+ description: Custom SOW date (if not date of last signature)
42
+ required: false
43
+ section: Terms
44
+ - name: custom_end_date
45
+ type: string
46
+ description: Custom end date for the SOW term
47
+ required: false
48
+ section: Terms
49
+ - name: term_duration_unit
50
+ type: string
51
+ description: Duration unit for SOW term (e.g. "days", "weeks", "months", "year")
52
+ required: false
53
+ section: Terms
54
+ - name: payment_terms
55
+ type: string
56
+ description: Payment terms (e.g. "30 days from Customer's receipt of invoice")
57
+ required: true
58
+ section: Payment
59
+ - name: fill_in_value
60
+ type: string
61
+ description: General fill-in value for customizable sections
62
+ required: false
63
+ section: Terms
64
+ - name: invoice_frequency_unit
65
+ type: string
66
+ description: Invoice frequency unit (e.g. "days", "weeks", "months")
67
+ required: false
68
+ section: Payment
69
+ - name: travel_expense_policy
70
+ type: string
71
+ description: Description of or reference to travel and expense policy
72
+ required: false
73
+ section: Payment
74
+ - name: customer_owned_deliverables
75
+ type: string
76
+ description: Deliverables that will be owned by Customer under this SOW
77
+ required: false
78
+ section: Terms
@@ -0,0 +1,22 @@
1
+ # Common Paper Term Sheet
2
+
3
+ A term sheet template for outlining key business terms, based on [Common Paper's](https://commonpaper.com) standard form.
4
+
5
+ ## Source
6
+
7
+ - **URL**: https://commonpaper.com/standards/term-sheet
8
+ - **Version**: 1.0
9
+ - **License**: CC BY 4.0
10
+
11
+ ## Fields
12
+
13
+ | Field | Type | Required | Description |
14
+ |-------|------|----------|-------------|
15
+ | `company_name` | string | yes | Official name of the company |
16
+ | `topic` | string | yes | Topic or subject area of the term |
17
+ | `topic_details` | string | yes | Details about the topic |
18
+
19
+ ## Attribution
20
+
21
+ Based on the Common Paper Term Sheet, available at https://commonpaper.com.
22
+ Licensed under CC BY 4.0. Copyright Common Paper, Inc.
@@ -0,0 +1,28 @@
1
+ name: Common Paper Term Sheet
2
+ description: >-
3
+ A term sheet template for outlining key business terms, based on Common
4
+ Paper's standard form. A simple topic-and-details format for early-stage
5
+ deal discussions.
6
+ source_url: https://commonpaper.com/standards/term-sheet
7
+ version: "1.0"
8
+ license: CC-BY-4.0
9
+ allow_derivatives: true
10
+ attribution_text: >-
11
+ Based on the Common Paper Term Sheet, available at https://commonpaper.com.
12
+ Licensed under CC BY 4.0. Copyright Common Paper, Inc.
13
+ fields:
14
+ - name: company_name
15
+ type: string
16
+ description: Official name of the company
17
+ required: true
18
+ section: Parties
19
+ - name: topic
20
+ type: string
21
+ description: Topic or subject area of the term
22
+ required: true
23
+ section: Terms
24
+ - name: topic_details
25
+ type: string
26
+ description: Details about the topic
27
+ required: true
28
+ section: Terms