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.
- package/LICENSE +21 -0
- package/README.md +161 -0
- package/bin/open-agreements.js +2 -0
- package/dist/cli/index.d.ts +2 -0
- package/dist/cli/index.d.ts.map +1 -0
- package/dist/cli/index.js +102 -0
- package/dist/cli/index.js.map +1 -0
- package/dist/commands/fill.d.ts +7 -0
- package/dist/commands/fill.d.ts.map +1 -0
- package/dist/commands/fill.js +84 -0
- package/dist/commands/fill.js.map +1 -0
- package/dist/commands/list.d.ts +6 -0
- package/dist/commands/list.d.ts.map +1 -0
- package/dist/commands/list.js +202 -0
- package/dist/commands/list.js.map +1 -0
- package/dist/commands/recipe.d.ts +21 -0
- package/dist/commands/recipe.d.ts.map +1 -0
- package/dist/commands/recipe.js +71 -0
- package/dist/commands/recipe.js.map +1 -0
- package/dist/commands/scan.d.ts +12 -0
- package/dist/commands/scan.d.ts.map +1 -0
- package/dist/commands/scan.js +122 -0
- package/dist/commands/scan.js.map +1 -0
- package/dist/commands/validate.d.ts +6 -0
- package/dist/commands/validate.d.ts.map +1 -0
- package/dist/commands/validate.js +139 -0
- package/dist/commands/validate.js.map +1 -0
- package/dist/core/command-generation/adapters/claude.d.ts +11 -0
- package/dist/core/command-generation/adapters/claude.d.ts.map +1 -0
- package/dist/core/command-generation/adapters/claude.js +85 -0
- package/dist/core/command-generation/adapters/claude.js.map +1 -0
- package/dist/core/command-generation/types.d.ts +14 -0
- package/dist/core/command-generation/types.d.ts.map +1 -0
- package/dist/core/command-generation/types.js +2 -0
- package/dist/core/command-generation/types.js.map +1 -0
- package/dist/core/engine.d.ts +13 -0
- package/dist/core/engine.d.ts.map +1 -0
- package/dist/core/engine.js +149 -0
- package/dist/core/engine.js.map +1 -0
- package/dist/core/external/index.d.ts +8 -0
- package/dist/core/external/index.d.ts.map +1 -0
- package/dist/core/external/index.js +92 -0
- package/dist/core/external/index.js.map +1 -0
- package/dist/core/external/types.d.ts +18 -0
- package/dist/core/external/types.d.ts.map +1 -0
- package/dist/core/external/types.js +2 -0
- package/dist/core/external/types.js.map +1 -0
- package/dist/core/fill-pipeline.d.ts +61 -0
- package/dist/core/fill-pipeline.d.ts.map +1 -0
- package/dist/core/fill-pipeline.js +279 -0
- package/dist/core/fill-pipeline.js.map +1 -0
- package/dist/core/fill-utils.d.ts +39 -0
- package/dist/core/fill-utils.d.ts.map +1 -0
- package/dist/core/fill-utils.js +127 -0
- package/dist/core/fill-utils.js.map +1 -0
- package/dist/core/metadata.d.ts +396 -0
- package/dist/core/metadata.d.ts.map +1 -0
- package/dist/core/metadata.js +126 -0
- package/dist/core/metadata.js.map +1 -0
- package/dist/core/recipe/cleaner.d.ts +13 -0
- package/dist/core/recipe/cleaner.d.ts.map +1 -0
- package/dist/core/recipe/cleaner.js +106 -0
- package/dist/core/recipe/cleaner.js.map +1 -0
- package/dist/core/recipe/downloader.d.ts +8 -0
- package/dist/core/recipe/downloader.d.ts.map +1 -0
- package/dist/core/recipe/downloader.js +58 -0
- package/dist/core/recipe/downloader.js.map +1 -0
- package/dist/core/recipe/index.d.ts +14 -0
- package/dist/core/recipe/index.d.ts.map +1 -0
- package/dist/core/recipe/index.js +91 -0
- package/dist/core/recipe/index.js.map +1 -0
- package/dist/core/recipe/ooxml-parts.d.ts +21 -0
- package/dist/core/recipe/ooxml-parts.d.ts.map +1 -0
- package/dist/core/recipe/ooxml-parts.js +33 -0
- package/dist/core/recipe/ooxml-parts.js.map +1 -0
- package/dist/core/recipe/patcher.d.ts +17 -0
- package/dist/core/recipe/patcher.d.ts.map +1 -0
- package/dist/core/recipe/patcher.js +240 -0
- package/dist/core/recipe/patcher.js.map +1 -0
- package/dist/core/recipe/types.d.ts +28 -0
- package/dist/core/recipe/types.d.ts.map +1 -0
- package/dist/core/recipe/types.js +2 -0
- package/dist/core/recipe/types.js.map +1 -0
- package/dist/core/recipe/verifier.d.ts +24 -0
- package/dist/core/recipe/verifier.d.ts.map +1 -0
- package/dist/core/recipe/verifier.js +143 -0
- package/dist/core/recipe/verifier.js.map +1 -0
- package/dist/core/validation/external.d.ts +16 -0
- package/dist/core/validation/external.d.ts.map +1 -0
- package/dist/core/validation/external.js +106 -0
- package/dist/core/validation/external.js.map +1 -0
- package/dist/core/validation/license.d.ts +15 -0
- package/dist/core/validation/license.d.ts.map +1 -0
- package/dist/core/validation/license.js +30 -0
- package/dist/core/validation/license.js.map +1 -0
- package/dist/core/validation/output.d.ts +12 -0
- package/dist/core/validation/output.d.ts.map +1 -0
- package/dist/core/validation/output.js +47 -0
- package/dist/core/validation/output.js.map +1 -0
- package/dist/core/validation/recipe.d.ts +19 -0
- package/dist/core/validation/recipe.d.ts.map +1 -0
- package/dist/core/validation/recipe.js +148 -0
- package/dist/core/validation/recipe.js.map +1 -0
- package/dist/core/validation/template.d.ts +11 -0
- package/dist/core/validation/template.d.ts.map +1 -0
- package/dist/core/validation/template.js +159 -0
- package/dist/core/validation/template.js.map +1 -0
- package/dist/index.d.ts +13 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +19 -0
- package/dist/index.js.map +1 -0
- package/dist/utils/paths.d.ts +15 -0
- package/dist/utils/paths.d.ts.map +1 -0
- package/dist/utils/paths.js +43 -0
- package/dist/utils/paths.js.map +1 -0
- package/external/LICENSE +27 -0
- package/external/README.md +38 -0
- package/external/yc-safe-discount/README.md +16 -0
- package/external/yc-safe-discount/clean.json +4 -0
- package/external/yc-safe-discount/metadata.yaml +71 -0
- package/external/yc-safe-discount/replacements.json +13 -0
- package/external/yc-safe-discount/template.docx +0 -0
- package/external/yc-safe-mfn/README.md +16 -0
- package/external/yc-safe-mfn/clean.json +4 -0
- package/external/yc-safe-mfn/metadata.yaml +64 -0
- package/external/yc-safe-mfn/replacements.json +12 -0
- package/external/yc-safe-mfn/template.docx +0 -0
- package/external/yc-safe-pro-rata-side-letter/README.md +16 -0
- package/external/yc-safe-pro-rata-side-letter/clean.json +4 -0
- package/external/yc-safe-pro-rata-side-letter/metadata.yaml +49 -0
- package/external/yc-safe-pro-rata-side-letter/replacements.json +9 -0
- package/external/yc-safe-pro-rata-side-letter/template.docx +0 -0
- package/external/yc-safe-valuation-cap/README.md +16 -0
- package/external/yc-safe-valuation-cap/clean.json +4 -0
- package/external/yc-safe-valuation-cap/metadata.yaml +64 -0
- package/external/yc-safe-valuation-cap/replacements.json +12 -0
- package/external/yc-safe-valuation-cap/template.docx +0 -0
- package/package.json +77 -0
- package/recipes/nvca-certificate-of-incorporation/clean.json +8 -0
- package/recipes/nvca-certificate-of-incorporation/metadata.yaml +43 -0
- package/recipes/nvca-certificate-of-incorporation/replacements.json +9 -0
- package/recipes/nvca-certificate-of-incorporation/schema.json +11 -0
- package/recipes/nvca-indemnification-agreement/clean.json +7 -0
- package/recipes/nvca-indemnification-agreement/metadata.yaml +83 -0
- package/recipes/nvca-indemnification-agreement/replacements.json +17 -0
- package/recipes/nvca-indemnification-agreement/schema.json +19 -0
- package/recipes/nvca-investors-rights-agreement/clean.json +12 -0
- package/recipes/nvca-investors-rights-agreement/metadata.yaml +75 -0
- package/recipes/nvca-investors-rights-agreement/replacements.json +18 -0
- package/recipes/nvca-investors-rights-agreement/schema.json +18 -0
- package/recipes/nvca-management-rights-letter/clean.json +7 -0
- package/recipes/nvca-management-rights-letter/metadata.yaml +50 -0
- package/recipes/nvca-management-rights-letter/replacements.json +11 -0
- package/recipes/nvca-management-rights-letter/schema.json +13 -0
- package/recipes/nvca-rofr-co-sale-agreement/clean.json +7 -0
- package/recipes/nvca-rofr-co-sale-agreement/metadata.yaml +80 -0
- package/recipes/nvca-rofr-co-sale-agreement/replacements.json +17 -0
- package/recipes/nvca-rofr-co-sale-agreement/schema.json +19 -0
- package/recipes/nvca-stock-purchase-agreement/clean.json +10 -0
- package/recipes/nvca-stock-purchase-agreement/metadata.yaml +74 -0
- package/recipes/nvca-stock-purchase-agreement/replacements.json +20 -0
- package/recipes/nvca-stock-purchase-agreement/schema.json +19 -0
- package/recipes/nvca-voting-agreement/README.md +53 -0
- package/recipes/nvca-voting-agreement/clean.json +7 -0
- package/recipes/nvca-voting-agreement/metadata.yaml +70 -0
- package/recipes/nvca-voting-agreement/replacements.json +18 -0
- package/recipes/nvca-voting-agreement/schema.json +28 -0
- package/skills/open-agreements/SKILL.md +166 -0
- package/templates/bonterms-mutual-nda/README.md +27 -0
- package/templates/bonterms-mutual-nda/metadata.yaml +58 -0
- package/templates/bonterms-mutual-nda/template.docx +0 -0
- package/templates/bonterms-professional-services-agreement/README.md +24 -0
- package/templates/bonterms-professional-services-agreement/metadata.yaml +40 -0
- package/templates/bonterms-professional-services-agreement/template.docx +0 -0
- package/templates/common-paper-ai-addendum/README.md +23 -0
- package/templates/common-paper-ai-addendum/metadata.yaml +33 -0
- package/templates/common-paper-ai-addendum/template.docx +0 -0
- package/templates/common-paper-ai-addendum-in-app/README.md +21 -0
- package/templates/common-paper-ai-addendum-in-app/metadata.yaml +23 -0
- package/templates/common-paper-ai-addendum-in-app/template.docx +0 -0
- package/templates/common-paper-amendment/README.md +27 -0
- package/templates/common-paper-amendment/metadata.yaml +53 -0
- package/templates/common-paper-amendment/template.docx +0 -0
- package/templates/common-paper-business-associate-agreement/README.md +29 -0
- package/templates/common-paper-business-associate-agreement/metadata.yaml +63 -0
- package/templates/common-paper-business-associate-agreement/template.docx +0 -0
- package/templates/common-paper-cloud-service-agreement/README.md +32 -0
- package/templates/common-paper-cloud-service-agreement/metadata.yaml +488 -0
- package/templates/common-paper-cloud-service-agreement/template.docx +0 -0
- package/templates/common-paper-csa-click-through/README.md +33 -0
- package/templates/common-paper-csa-click-through/metadata.yaml +83 -0
- package/templates/common-paper-csa-click-through/template.docx +0 -0
- package/templates/common-paper-csa-with-ai/README.md +49 -0
- package/templates/common-paper-csa-with-ai/metadata.yaml +166 -0
- package/templates/common-paper-csa-with-ai/template.docx +0 -0
- package/templates/common-paper-csa-with-sla/README.md +53 -0
- package/templates/common-paper-csa-with-sla/metadata.yaml +185 -0
- package/templates/common-paper-csa-with-sla/template.docx +0 -0
- package/templates/common-paper-csa-without-sla/README.md +47 -0
- package/templates/common-paper-csa-without-sla/metadata.yaml +155 -0
- package/templates/common-paper-csa-without-sla/template.docx +0 -0
- package/templates/common-paper-data-processing-agreement/README.md +46 -0
- package/templates/common-paper-data-processing-agreement/metadata.yaml +149 -0
- package/templates/common-paper-data-processing-agreement/template.docx +0 -0
- package/templates/common-paper-design-partner-agreement/README.md +29 -0
- package/templates/common-paper-design-partner-agreement/metadata.yaml +65 -0
- package/templates/common-paper-design-partner-agreement/template.docx +0 -0
- package/templates/common-paper-independent-contractor-agreement/README.md +27 -0
- package/templates/common-paper-independent-contractor-agreement/metadata.yaml +55 -0
- package/templates/common-paper-independent-contractor-agreement/template.docx +0 -0
- package/templates/common-paper-letter-of-intent/README.md +25 -0
- package/templates/common-paper-letter-of-intent/metadata.yaml +43 -0
- package/templates/common-paper-letter-of-intent/template.docx +0 -0
- package/templates/common-paper-mutual-nda/README.md +29 -0
- package/templates/common-paper-mutual-nda/metadata.yaml +59 -0
- package/templates/common-paper-mutual-nda/template.docx +0 -0
- package/templates/common-paper-one-way-nda/README.md +27 -0
- package/templates/common-paper-one-way-nda/metadata.yaml +60 -0
- package/templates/common-paper-one-way-nda/template.docx +0 -0
- package/templates/common-paper-order-form/README.md +36 -0
- package/templates/common-paper-order-form/metadata.yaml +98 -0
- package/templates/common-paper-order-form/template.docx +0 -0
- package/templates/common-paper-order-form-with-sla/README.md +42 -0
- package/templates/common-paper-order-form-with-sla/metadata.yaml +129 -0
- package/templates/common-paper-order-form-with-sla/template.docx +0 -0
- package/templates/common-paper-partnership-agreement/README.md +34 -0
- package/templates/common-paper-partnership-agreement/metadata.yaml +90 -0
- package/templates/common-paper-partnership-agreement/template.docx +0 -0
- package/templates/common-paper-pilot-agreement/README.md +34 -0
- package/templates/common-paper-pilot-agreement/metadata.yaml +90 -0
- package/templates/common-paper-pilot-agreement/template.docx +0 -0
- package/templates/common-paper-professional-services-agreement/README.md +44 -0
- package/templates/common-paper-professional-services-agreement/metadata.yaml +141 -0
- package/templates/common-paper-professional-services-agreement/template.docx +0 -0
- package/templates/common-paper-software-license-agreement/README.md +18 -0
- package/templates/common-paper-software-license-agreement/metadata.yaml +13 -0
- package/templates/common-paper-software-license-agreement/template.docx +0 -0
- package/templates/common-paper-statement-of-work/README.md +32 -0
- package/templates/common-paper-statement-of-work/metadata.yaml +78 -0
- package/templates/common-paper-statement-of-work/template.docx +0 -0
- package/templates/common-paper-term-sheet/README.md +22 -0
- package/templates/common-paper-term-sheet/metadata.yaml +28 -0
- package/templates/common-paper-term-sheet/template.docx +0 -0
|
@@ -0,0 +1,155 @@
|
|
|
1
|
+
name: Common Paper CSA Without SLA
|
|
2
|
+
description: >-
|
|
3
|
+
A cloud service agreement with key terms and standard terms, based on Common
|
|
4
|
+
Paper's standard form. Covers SaaS subscriptions, payment, liability, and
|
|
5
|
+
data processing.
|
|
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 Without 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
|
|
Binary file
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
# Common Paper Data Processing Agreement
|
|
2
|
+
|
|
3
|
+
A data processing agreement based on [Common Paper's](https://commonpaper.com) standard terms. Covers GDPR and data protection compliance, including processor/controller roles, data transfers, subprocessors, and security measures.
|
|
4
|
+
|
|
5
|
+
## Source
|
|
6
|
+
|
|
7
|
+
- **URL**: https://commonpaper.com/standards/data-processing-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
|
+
| `product_name` | string | yes | Name of product or service |
|
|
17
|
+
| `underlying_agreement` | string | yes | Name and date of the underlying agreement |
|
|
18
|
+
| `customer_contact_name` | string | yes | Customer contact name |
|
|
19
|
+
| `customer_contact_title` | string | no | Customer contact title |
|
|
20
|
+
| `customer_address` | string | yes | Customer's physical address |
|
|
21
|
+
| `provider_contact_name` | string | yes | Provider contact name |
|
|
22
|
+
| `provider_contact_title` | string | no | Provider contact title |
|
|
23
|
+
| `provider_address` | string | yes | Provider's physical address |
|
|
24
|
+
| `physical_address` | string | no | Physical address for notifications |
|
|
25
|
+
| `contact_address` | string | no | Email and/or physical address |
|
|
26
|
+
| `provider_role` | string | yes | Provider's role (Controller or Processor) |
|
|
27
|
+
| `governing_law` | string | yes | Governing law state/province/country |
|
|
28
|
+
| `eu_member_state` | string | no | EU Member State for disputes |
|
|
29
|
+
| `uk_governing_law` | string | no | UK governing law selection |
|
|
30
|
+
| `subprocessor_name` | string | no | Subprocessor name |
|
|
31
|
+
| `custom_option` | string | no | Custom option for selections |
|
|
32
|
+
| `custom_options` | string | no | Multiple custom options |
|
|
33
|
+
| `url` | string | no | URL for references |
|
|
34
|
+
| `countries_list` | string | no | List of all countries for data transfers |
|
|
35
|
+
| `csa_reference` | string | no | Common Paper CSA reference |
|
|
36
|
+
| `non_csa_reference` | string | no | Non-CSA agreement reference |
|
|
37
|
+
| `security_measures` | string | no | Description of security measures |
|
|
38
|
+
| `text_box` | string | no | General text box entry |
|
|
39
|
+
| `fill_in_value` | string | no | General fill-in value |
|
|
40
|
+
| `cap_multiplier` | string | no | Liability cap multiplier |
|
|
41
|
+
| `policy_url` | string | no | URL of where to find policies |
|
|
42
|
+
|
|
43
|
+
## Attribution
|
|
44
|
+
|
|
45
|
+
Based on the Common Paper Data Processing Agreement, available at https://commonpaper.com.
|
|
46
|
+
Licensed under CC BY 4.0. Copyright Common Paper, Inc.
|
|
@@ -0,0 +1,149 @@
|
|
|
1
|
+
name: Common Paper Data Processing Agreement
|
|
2
|
+
description: >-
|
|
3
|
+
A data processing agreement cover page and standard terms, based on Common
|
|
4
|
+
Paper's standard form. Covers GDPR and data protection compliance, including
|
|
5
|
+
processor/controller roles, data transfers, subprocessors, and security
|
|
6
|
+
measures.
|
|
7
|
+
source_url: https://commonpaper.com/standards/data-processing-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 Data Processing 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: product_name
|
|
21
|
+
type: string
|
|
22
|
+
description: Name of product or service
|
|
23
|
+
required: true
|
|
24
|
+
section: Service
|
|
25
|
+
- name: underlying_agreement
|
|
26
|
+
type: string
|
|
27
|
+
description: Name and date of the underlying agreement
|
|
28
|
+
required: true
|
|
29
|
+
section: Terms
|
|
30
|
+
- name: customer_contact_name
|
|
31
|
+
type: string
|
|
32
|
+
description: Customer contact name
|
|
33
|
+
required: true
|
|
34
|
+
section: Parties
|
|
35
|
+
- name: customer_contact_title
|
|
36
|
+
type: string
|
|
37
|
+
description: Customer contact title
|
|
38
|
+
required: false
|
|
39
|
+
section: Parties
|
|
40
|
+
- name: customer_address
|
|
41
|
+
type: string
|
|
42
|
+
description: Customer's physical address
|
|
43
|
+
required: true
|
|
44
|
+
section: Parties
|
|
45
|
+
- name: provider_contact_name
|
|
46
|
+
type: string
|
|
47
|
+
description: Provider contact name
|
|
48
|
+
required: true
|
|
49
|
+
section: Parties
|
|
50
|
+
- name: provider_contact_title
|
|
51
|
+
type: string
|
|
52
|
+
description: Provider contact title
|
|
53
|
+
required: false
|
|
54
|
+
section: Parties
|
|
55
|
+
- name: provider_address
|
|
56
|
+
type: string
|
|
57
|
+
description: Provider's physical address
|
|
58
|
+
required: true
|
|
59
|
+
section: Parties
|
|
60
|
+
- name: physical_address
|
|
61
|
+
type: string
|
|
62
|
+
description: Physical address for notifications
|
|
63
|
+
required: false
|
|
64
|
+
section: Parties
|
|
65
|
+
- name: contact_address
|
|
66
|
+
type: string
|
|
67
|
+
description: Email and/or physical address
|
|
68
|
+
required: false
|
|
69
|
+
section: Parties
|
|
70
|
+
- name: provider_role
|
|
71
|
+
type: string
|
|
72
|
+
description: Provider's role (Controller or Processor)
|
|
73
|
+
required: true
|
|
74
|
+
section: Terms
|
|
75
|
+
- name: governing_law
|
|
76
|
+
type: string
|
|
77
|
+
description: Governing law state/province/country
|
|
78
|
+
required: true
|
|
79
|
+
section: Legal
|
|
80
|
+
- name: eu_member_state
|
|
81
|
+
type: string
|
|
82
|
+
description: EU Member State for disputes
|
|
83
|
+
required: false
|
|
84
|
+
section: Legal
|
|
85
|
+
- name: uk_governing_law
|
|
86
|
+
type: string
|
|
87
|
+
description: UK governing law selection
|
|
88
|
+
required: false
|
|
89
|
+
section: Legal
|
|
90
|
+
- name: subprocessor_name
|
|
91
|
+
type: string
|
|
92
|
+
description: Subprocessor name
|
|
93
|
+
required: false
|
|
94
|
+
section: Privacy
|
|
95
|
+
- name: custom_option
|
|
96
|
+
type: string
|
|
97
|
+
description: Custom option for selections
|
|
98
|
+
required: false
|
|
99
|
+
section: Terms
|
|
100
|
+
- name: custom_options
|
|
101
|
+
type: string
|
|
102
|
+
description: Multiple custom options
|
|
103
|
+
required: false
|
|
104
|
+
section: Terms
|
|
105
|
+
- name: url
|
|
106
|
+
type: string
|
|
107
|
+
description: URL for references
|
|
108
|
+
required: false
|
|
109
|
+
section: Terms
|
|
110
|
+
- name: countries_list
|
|
111
|
+
type: string
|
|
112
|
+
description: List of all countries for data transfers
|
|
113
|
+
required: false
|
|
114
|
+
section: Privacy
|
|
115
|
+
- name: csa_reference
|
|
116
|
+
type: string
|
|
117
|
+
description: Common Paper CSA reference
|
|
118
|
+
required: false
|
|
119
|
+
section: Terms
|
|
120
|
+
- name: non_csa_reference
|
|
121
|
+
type: string
|
|
122
|
+
description: Non-CSA agreement reference
|
|
123
|
+
required: false
|
|
124
|
+
section: Terms
|
|
125
|
+
- name: security_measures
|
|
126
|
+
type: string
|
|
127
|
+
description: Description of security measures
|
|
128
|
+
required: false
|
|
129
|
+
section: Privacy
|
|
130
|
+
- name: text_box
|
|
131
|
+
type: string
|
|
132
|
+
description: General text box entry
|
|
133
|
+
required: false
|
|
134
|
+
section: Terms
|
|
135
|
+
- name: fill_in_value
|
|
136
|
+
type: string
|
|
137
|
+
description: General fill-in value
|
|
138
|
+
required: false
|
|
139
|
+
section: Terms
|
|
140
|
+
- name: cap_multiplier
|
|
141
|
+
type: string
|
|
142
|
+
description: Liability cap multiplier
|
|
143
|
+
required: false
|
|
144
|
+
section: Liability
|
|
145
|
+
- name: policy_url
|
|
146
|
+
type: string
|
|
147
|
+
description: URL of where to find policies
|
|
148
|
+
required: false
|
|
149
|
+
section: Privacy
|
|
Binary file
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
# Common Paper Design Partner Agreement
|
|
2
|
+
|
|
3
|
+
A design partner agreement based on [Common Paper's](https://commonpaper.com) standard terms, for partnerships involving early access to a product in exchange for feedback.
|
|
4
|
+
|
|
5
|
+
## Source
|
|
6
|
+
|
|
7
|
+
- **URL**: https://commonpaper.com/standards/design-partner-agreement/1.3
|
|
8
|
+
- **Version**: 1.3
|
|
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
|
+
| `product_description` | string | yes | Description of the product being developed |
|
|
17
|
+
| `billing_period` | string | no | Billing period |
|
|
18
|
+
| `term_length_unit` | string | no | Unit for term length |
|
|
19
|
+
| `discount_amount` | string | no | Discount amount |
|
|
20
|
+
| `free_text` | string | no | Free text entry |
|
|
21
|
+
| `open_text` | string | no | Open text entry |
|
|
22
|
+
| `other_details` | string | no | Other details |
|
|
23
|
+
| `governing_law` | string | yes | State whose laws govern the agreement |
|
|
24
|
+
| `jurisdiction` | string | yes | Courts with jurisdiction over disputes |
|
|
25
|
+
|
|
26
|
+
## Attribution
|
|
27
|
+
|
|
28
|
+
Based on the Common Paper Design Partner Agreement, available at https://commonpaper.com.
|
|
29
|
+
Licensed under CC BY 4.0. Copyright Common Paper, Inc.
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
name: Common Paper Design Partner Agreement
|
|
2
|
+
description: >-
|
|
3
|
+
A design partner agreement cover page and standard terms, based on Common
|
|
4
|
+
Paper's standard form. Covers partnerships where a company provides early
|
|
5
|
+
access to a product in development in exchange for feedback and collaboration.
|
|
6
|
+
source_url: https://commonpaper.com/standards/design-partner-agreement/1.3
|
|
7
|
+
version: "1.3"
|
|
8
|
+
license: CC-BY-4.0
|
|
9
|
+
allow_derivatives: true
|
|
10
|
+
attribution_text: >-
|
|
11
|
+
Based on the Common Paper Design Partner 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 developed
|
|
22
|
+
required: true
|
|
23
|
+
section: Service
|
|
24
|
+
- name: billing_period
|
|
25
|
+
type: string
|
|
26
|
+
description: Billing period (e.g. "month", "quarter", "year", "term")
|
|
27
|
+
required: false
|
|
28
|
+
section: Payment
|
|
29
|
+
- name: term_length_unit
|
|
30
|
+
type: string
|
|
31
|
+
description: Unit for term length (e.g. "months", "quarters", "years")
|
|
32
|
+
required: false
|
|
33
|
+
section: Terms
|
|
34
|
+
- name: discount_amount
|
|
35
|
+
type: string
|
|
36
|
+
description: Discount amount (flat amount or percentage)
|
|
37
|
+
required: false
|
|
38
|
+
section: Payment
|
|
39
|
+
- name: free_text
|
|
40
|
+
type: string
|
|
41
|
+
description: Free text entry for customizable sections
|
|
42
|
+
required: false
|
|
43
|
+
section: Terms
|
|
44
|
+
- name: open_text
|
|
45
|
+
type: string
|
|
46
|
+
description: Open text entry for additional details
|
|
47
|
+
required: false
|
|
48
|
+
section: Terms
|
|
49
|
+
- name: other_details
|
|
50
|
+
type: string
|
|
51
|
+
description: Other details to fill in
|
|
52
|
+
required: false
|
|
53
|
+
section: Terms
|
|
54
|
+
- name: governing_law
|
|
55
|
+
type: string
|
|
56
|
+
description: State whose laws govern the agreement
|
|
57
|
+
required: true
|
|
58
|
+
default: Delaware
|
|
59
|
+
section: Legal
|
|
60
|
+
- name: jurisdiction
|
|
61
|
+
type: string
|
|
62
|
+
description: Courts with jurisdiction over disputes
|
|
63
|
+
required: true
|
|
64
|
+
default: courts located in New Castle County, Delaware
|
|
65
|
+
section: Legal
|
|
Binary file
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
# Common Paper Independent Contractor Agreement
|
|
2
|
+
|
|
3
|
+
An independent contractor agreement based on [Common Paper's](https://commonpaper.com) standard form.
|
|
4
|
+
|
|
5
|
+
## Source
|
|
6
|
+
|
|
7
|
+
- **URL**: https://commonpaper.com/standards/independent-contractor-agreement
|
|
8
|
+
- **Version**: 1.0
|
|
9
|
+
- **License**: CC BY 4.0
|
|
10
|
+
|
|
11
|
+
## Fields
|
|
12
|
+
|
|
13
|
+
| Field | Type | Required | Description |
|
|
14
|
+
|-------|------|----------|-------------|
|
|
15
|
+
| `company_name_and_address` | string | yes | Name and address of the company |
|
|
16
|
+
| `contractor_name_and_address` | string | yes | Name and address of the contractor |
|
|
17
|
+
| `services_description` | string | yes | Description of services |
|
|
18
|
+
| `rates_and_fees` | string | yes | Applicable rates and fees |
|
|
19
|
+
| `payment_terms` | string | yes | Invoice and payment terms |
|
|
20
|
+
| `timeline` | string | yes | Timeline and milestones |
|
|
21
|
+
| `governing_law` | string | yes | State whose laws govern the agreement |
|
|
22
|
+
| `jurisdiction` | string | yes | Courts with jurisdiction |
|
|
23
|
+
|
|
24
|
+
## Attribution
|
|
25
|
+
|
|
26
|
+
Based on the Common Paper Independent Contractor Agreement, available at https://commonpaper.com.
|
|
27
|
+
Licensed under CC BY 4.0. Copyright Common Paper, Inc.
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
name: Common Paper Independent Contractor Agreement
|
|
2
|
+
description: >-
|
|
3
|
+
An independent contractor agreement based on Common Paper's standard form.
|
|
4
|
+
Covers the engagement of an independent contractor, including scope of
|
|
5
|
+
services, rates, payment, timeline, and governing law.
|
|
6
|
+
source_url: https://commonpaper.com/standards/independent-contractor-agreement
|
|
7
|
+
version: "1.0"
|
|
8
|
+
license: CC-BY-4.0
|
|
9
|
+
allow_derivatives: true
|
|
10
|
+
attribution_text: >-
|
|
11
|
+
Based on the Common Paper Independent Contractor Agreement, available at
|
|
12
|
+
https://commonpaper.com. Licensed under CC BY 4.0. Copyright Common Paper, Inc.
|
|
13
|
+
fields:
|
|
14
|
+
- name: company_name_and_address
|
|
15
|
+
type: string
|
|
16
|
+
description: Name and address of the company engaging the contractor
|
|
17
|
+
required: true
|
|
18
|
+
section: Parties
|
|
19
|
+
- name: contractor_name_and_address
|
|
20
|
+
type: string
|
|
21
|
+
description: Name, legal business name (if any), and address of the contractor
|
|
22
|
+
required: true
|
|
23
|
+
section: Parties
|
|
24
|
+
- name: services_description
|
|
25
|
+
type: string
|
|
26
|
+
description: Description of services to be provided
|
|
27
|
+
required: true
|
|
28
|
+
section: Service
|
|
29
|
+
- name: rates_and_fees
|
|
30
|
+
type: string
|
|
31
|
+
description: Applicable rates and maximum fees or hours
|
|
32
|
+
required: true
|
|
33
|
+
section: Payment
|
|
34
|
+
- name: payment_terms
|
|
35
|
+
type: string
|
|
36
|
+
description: How and when contractor will submit invoices and be paid
|
|
37
|
+
required: true
|
|
38
|
+
section: Payment
|
|
39
|
+
- name: timeline
|
|
40
|
+
type: string
|
|
41
|
+
description: Start date, end date, timeline, milestones, etc.
|
|
42
|
+
required: true
|
|
43
|
+
section: Terms
|
|
44
|
+
- name: governing_law
|
|
45
|
+
type: string
|
|
46
|
+
description: State whose laws govern the agreement
|
|
47
|
+
required: true
|
|
48
|
+
default: the State of California
|
|
49
|
+
section: Legal
|
|
50
|
+
- name: jurisdiction
|
|
51
|
+
type: string
|
|
52
|
+
description: Courts with jurisdiction over disputes
|
|
53
|
+
required: true
|
|
54
|
+
default: San Francisco County, California
|
|
55
|
+
section: Legal
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
# Common Paper Letter of Intent
|
|
2
|
+
|
|
3
|
+
A letter of intent template for SaaS and technology deals, based on [Common Paper's](https://commonpaper.com) standard form.
|
|
4
|
+
|
|
5
|
+
## Source
|
|
6
|
+
|
|
7
|
+
- **URL**: https://commonpaper.com/standards/letter-of-intent
|
|
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 sending the letter |
|
|
16
|
+
| `product_name` | string | yes | Name of the product or service |
|
|
17
|
+
| `product_description` | string | yes | Description of what the product will do |
|
|
18
|
+
| `launch_date` | string | yes | Anticipated access or launch date |
|
|
19
|
+
| `fees_description` | string | yes | Description of fees and pricing |
|
|
20
|
+
| `nda_date` | string | no | Date of the existing NDA between the parties |
|
|
21
|
+
|
|
22
|
+
## Attribution
|
|
23
|
+
|
|
24
|
+
Based on the Common Paper Letter of Intent, available at https://commonpaper.com.
|
|
25
|
+
Licensed under CC BY 4.0. Copyright Common Paper, Inc.
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
name: Common Paper Letter of Intent
|
|
2
|
+
description: >-
|
|
3
|
+
A letter of intent template for SaaS and technology deals, based on Common
|
|
4
|
+
Paper's standard form. Outlines product, timeline, fees, and references an
|
|
5
|
+
existing NDA.
|
|
6
|
+
source_url: https://commonpaper.com/standards/letter-of-intent
|
|
7
|
+
version: "1.0"
|
|
8
|
+
license: CC-BY-4.0
|
|
9
|
+
allow_derivatives: true
|
|
10
|
+
attribution_text: >-
|
|
11
|
+
Based on the Common Paper Letter of Intent, 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 name of the company sending the letter
|
|
17
|
+
required: true
|
|
18
|
+
section: Parties
|
|
19
|
+
- name: product_name
|
|
20
|
+
type: string
|
|
21
|
+
description: Name of the product or service
|
|
22
|
+
required: true
|
|
23
|
+
section: Service
|
|
24
|
+
- name: product_description
|
|
25
|
+
type: string
|
|
26
|
+
description: Description of what the product will do
|
|
27
|
+
required: true
|
|
28
|
+
section: Service
|
|
29
|
+
- name: launch_date
|
|
30
|
+
type: string
|
|
31
|
+
description: Anticipated access or launch date
|
|
32
|
+
required: true
|
|
33
|
+
section: Terms
|
|
34
|
+
- name: fees_description
|
|
35
|
+
type: string
|
|
36
|
+
description: Description of fees and pricing
|
|
37
|
+
required: true
|
|
38
|
+
section: Payment
|
|
39
|
+
- name: nda_date
|
|
40
|
+
type: string
|
|
41
|
+
description: Date of the existing NDA between the parties
|
|
42
|
+
required: false
|
|
43
|
+
section: Terms
|
|
Binary file
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
# Common Paper Mutual NDA
|
|
2
|
+
|
|
3
|
+
A mutual non-disclosure agreement based on [Common Paper's](https://commonpaper.com) standard terms.
|
|
4
|
+
|
|
5
|
+
## Source
|
|
6
|
+
|
|
7
|
+
- **URL**: https://github.com/CommonPaper/Mutual-NDA
|
|
8
|
+
- **Version**: 2.0
|
|
9
|
+
- **License**: CC BY 4.0
|
|
10
|
+
|
|
11
|
+
## Fields
|
|
12
|
+
|
|
13
|
+
| Field | Type | Required | Description |
|
|
14
|
+
|-------|------|----------|-------------|
|
|
15
|
+
| `party_1_name` | string | yes | Full legal name of the first party |
|
|
16
|
+
| `party_1_email` | string | yes | Notice email address for the first party |
|
|
17
|
+
| `party_2_name` | string | yes | Full legal name of the second party |
|
|
18
|
+
| `party_2_email` | string | yes | Notice email address for the second party |
|
|
19
|
+
| `effective_date` | date | yes | Date the NDA takes effect |
|
|
20
|
+
| `purpose` | string | yes | Purpose for which confidential information will be shared |
|
|
21
|
+
| `mnda_term` | string | yes | Duration of the NDA agreement |
|
|
22
|
+
| `confidentiality_term` | string | yes | How long confidential information remains protected |
|
|
23
|
+
| `governing_law` | string | yes | State whose laws govern the agreement |
|
|
24
|
+
| `jurisdiction` | string | yes | Courts with jurisdiction over disputes |
|
|
25
|
+
|
|
26
|
+
## Attribution
|
|
27
|
+
|
|
28
|
+
Based on the Common Paper Mutual NDA, available at https://commonpaper.com.
|
|
29
|
+
Licensed under CC BY 4.0. Copyright Common Paper, Inc.
|