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,59 @@
|
|
|
1
|
+
name: Common Paper Mutual NDA
|
|
2
|
+
description: >-
|
|
3
|
+
A mutual non-disclosure agreement cover page based on Common Paper's standard
|
|
4
|
+
terms. The cover page references the Standard Terms posted at commonpaper.com.
|
|
5
|
+
source_url: https://commonpaper.com/standards/mutual-nda/1.0
|
|
6
|
+
version: "1.0"
|
|
7
|
+
license: CC-BY-4.0
|
|
8
|
+
allow_derivatives: true
|
|
9
|
+
attribution_text: >-
|
|
10
|
+
Based on the Common Paper Mutual NDA, available at https://commonpaper.com.
|
|
11
|
+
Licensed under CC BY 4.0. Copyright Common Paper, Inc.
|
|
12
|
+
fields:
|
|
13
|
+
- name: purpose
|
|
14
|
+
type: string
|
|
15
|
+
description: How Confidential Information may be used
|
|
16
|
+
required: true
|
|
17
|
+
default: Evaluating whether to enter into a business relationship with the other party
|
|
18
|
+
section: Terms
|
|
19
|
+
- name: effective_date
|
|
20
|
+
type: date
|
|
21
|
+
description: Date the NDA takes effect
|
|
22
|
+
required: true
|
|
23
|
+
section: Terms
|
|
24
|
+
- name: mnda_term
|
|
25
|
+
type: string
|
|
26
|
+
description: Period for sharing Confidential Information (e.g. "1 year", "2 years")
|
|
27
|
+
required: true
|
|
28
|
+
default: 1 year(s)
|
|
29
|
+
section: Terms
|
|
30
|
+
- name: confidentiality_term
|
|
31
|
+
type: string
|
|
32
|
+
description: How long Confidential Information remains protected (e.g. "1 year", "2 years")
|
|
33
|
+
required: true
|
|
34
|
+
default: 1 year(s)
|
|
35
|
+
section: Terms
|
|
36
|
+
- name: confidentiality_term_start
|
|
37
|
+
type: string
|
|
38
|
+
description: When the confidentiality term begins counting
|
|
39
|
+
required: true
|
|
40
|
+
default: Effective Date
|
|
41
|
+
section: Terms
|
|
42
|
+
- name: governing_law
|
|
43
|
+
type: string
|
|
44
|
+
description: State whose laws govern the agreement
|
|
45
|
+
required: true
|
|
46
|
+
default: Delaware
|
|
47
|
+
section: Legal
|
|
48
|
+
- name: jurisdiction
|
|
49
|
+
type: string
|
|
50
|
+
description: Courts with jurisdiction over disputes
|
|
51
|
+
required: true
|
|
52
|
+
default: courts located in New Castle County, Delaware
|
|
53
|
+
section: Legal
|
|
54
|
+
- name: changes_to_standard_terms
|
|
55
|
+
type: string
|
|
56
|
+
description: Any modifications to the Common Paper Standard Terms
|
|
57
|
+
required: false
|
|
58
|
+
default: None.
|
|
59
|
+
section: Legal
|
|
Binary file
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
# Common Paper One-Way NDA
|
|
2
|
+
|
|
3
|
+
A one-way (unilateral) non-disclosure agreement based on [Common Paper's](https://commonpaper.com) standard terms. The Discloser shares confidential information with the Receiver.
|
|
4
|
+
|
|
5
|
+
## Source
|
|
6
|
+
|
|
7
|
+
- **URL**: https://commonpaper.com/standards/one-way-nda/1.0
|
|
8
|
+
- **Version**: 1.0
|
|
9
|
+
- **License**: CC BY 4.0
|
|
10
|
+
|
|
11
|
+
## Fields
|
|
12
|
+
|
|
13
|
+
| Field | Type | Required | Description |
|
|
14
|
+
|-------|------|----------|-------------|
|
|
15
|
+
| `discloser_name_and_address` | string | yes | Company name and address of the Discloser |
|
|
16
|
+
| `effective_date` | date | yes | Date the NDA takes effect |
|
|
17
|
+
| `purpose` | string | yes | How Confidential Information may be used |
|
|
18
|
+
| `nda_term` | string | yes | Period for sharing Confidential Information |
|
|
19
|
+
| `confidentiality_term_start` | string | yes | When the confidentiality term begins counting |
|
|
20
|
+
| `governing_law` | string | yes | State whose laws govern the agreement |
|
|
21
|
+
| `jurisdiction` | string | yes | Courts with jurisdiction over disputes |
|
|
22
|
+
| `changes_to_standard_terms` | string | no | Any modifications to the Standard Terms |
|
|
23
|
+
|
|
24
|
+
## Attribution
|
|
25
|
+
|
|
26
|
+
Based on the Common Paper One-Way NDA, available at https://commonpaper.com.
|
|
27
|
+
Licensed under CC BY 4.0. Copyright Common Paper, Inc.
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
name: Common Paper One-Way NDA
|
|
2
|
+
description: >-
|
|
3
|
+
A one-way (unilateral) non-disclosure agreement cover page based on Common
|
|
4
|
+
Paper's standard terms. The Discloser shares confidential information with the
|
|
5
|
+
Receiver, but not vice versa. References the Standard Terms posted at
|
|
6
|
+
commonpaper.com.
|
|
7
|
+
source_url: https://commonpaper.com/standards/one-way-nda/1.0
|
|
8
|
+
version: "1.0"
|
|
9
|
+
license: CC-BY-4.0
|
|
10
|
+
allow_derivatives: true
|
|
11
|
+
attribution_text: >-
|
|
12
|
+
Based on the Common Paper One-Way NDA, available at https://commonpaper.com.
|
|
13
|
+
Licensed under CC BY 4.0. Copyright Common Paper, Inc.
|
|
14
|
+
fields:
|
|
15
|
+
- name: discloser_name_and_address
|
|
16
|
+
type: string
|
|
17
|
+
description: Company name and address of the Discloser
|
|
18
|
+
required: true
|
|
19
|
+
section: Parties
|
|
20
|
+
- name: effective_date
|
|
21
|
+
type: date
|
|
22
|
+
description: Date the NDA takes effect
|
|
23
|
+
required: true
|
|
24
|
+
section: Terms
|
|
25
|
+
- name: purpose
|
|
26
|
+
type: string
|
|
27
|
+
description: How Confidential Information may be used
|
|
28
|
+
required: true
|
|
29
|
+
default: Evaluating whether to enter into a business relationship with the other party.
|
|
30
|
+
section: Terms
|
|
31
|
+
- name: nda_term
|
|
32
|
+
type: string
|
|
33
|
+
description: Period for sharing Confidential Information (e.g. "1 year", "2 years")
|
|
34
|
+
required: true
|
|
35
|
+
default: 1 year(s)
|
|
36
|
+
section: Terms
|
|
37
|
+
- name: confidentiality_term_start
|
|
38
|
+
type: string
|
|
39
|
+
description: When the confidentiality term begins counting (e.g. "Effective Date" or "date of last disclosure")
|
|
40
|
+
required: true
|
|
41
|
+
default: Effective Date
|
|
42
|
+
section: Terms
|
|
43
|
+
- name: governing_law
|
|
44
|
+
type: string
|
|
45
|
+
description: State whose laws govern the agreement
|
|
46
|
+
required: true
|
|
47
|
+
default: Delaware
|
|
48
|
+
section: Legal
|
|
49
|
+
- name: jurisdiction
|
|
50
|
+
type: string
|
|
51
|
+
description: Courts with jurisdiction over disputes
|
|
52
|
+
required: true
|
|
53
|
+
default: courts located in New Castle County, Delaware
|
|
54
|
+
section: Legal
|
|
55
|
+
- name: changes_to_standard_terms
|
|
56
|
+
type: string
|
|
57
|
+
description: Any modifications to the Common Paper Standard Terms
|
|
58
|
+
required: false
|
|
59
|
+
default: None.
|
|
60
|
+
section: Legal
|
|
Binary file
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
# Common Paper Order Form
|
|
2
|
+
|
|
3
|
+
An order form template for cloud service agreements, based on [Common Paper's](https://commonpaper.com) standard form.
|
|
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 |
|
|
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 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
|
+
| `technical_support` | string | no | Description of support |
|
|
30
|
+
| `professional_services_description` | string | no | Professional services description |
|
|
31
|
+
| `professional_services_reference` | string | no | SOW or PSA reference |
|
|
32
|
+
|
|
33
|
+
## Attribution
|
|
34
|
+
|
|
35
|
+
Based on the Common Paper Order Form, available at https://commonpaper.com.
|
|
36
|
+
Licensed under CC BY 4.0. Copyright Common Paper, Inc.
|
|
@@ -0,0 +1,98 @@
|
|
|
1
|
+
name: Common Paper Order Form
|
|
2
|
+
description: >-
|
|
3
|
+
An order form template for cloud service agreements, based on Common Paper's
|
|
4
|
+
standard form. References existing Key Terms and covers subscription details,
|
|
5
|
+
fees, pilot period, payment, and professional services.
|
|
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 Order Form, 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: 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 agreement
|
|
32
|
+
required: true
|
|
33
|
+
section: Terms
|
|
34
|
+
- name: cloud_service
|
|
35
|
+
type: string
|
|
36
|
+
description: Description of the cloud service / product
|
|
37
|
+
required: true
|
|
38
|
+
section: Service
|
|
39
|
+
- name: custom_start_date
|
|
40
|
+
type: string
|
|
41
|
+
description: Custom start date (if not date of last signature)
|
|
42
|
+
required: false
|
|
43
|
+
section: Terms
|
|
44
|
+
- name: subscription_period
|
|
45
|
+
type: string
|
|
46
|
+
description: Length of access to the service (e.g. "12 months")
|
|
47
|
+
required: true
|
|
48
|
+
section: Service
|
|
49
|
+
- name: pilot_period
|
|
50
|
+
type: string
|
|
51
|
+
description: Length of pilot/trial period (e.g. "3 months")
|
|
52
|
+
required: false
|
|
53
|
+
section: Service
|
|
54
|
+
- name: fees
|
|
55
|
+
type: string
|
|
56
|
+
description: Subscription fee amount (e.g. "$10,000")
|
|
57
|
+
required: false
|
|
58
|
+
section: Payment
|
|
59
|
+
- name: fee_unit
|
|
60
|
+
type: string
|
|
61
|
+
description: Fee billing unit (e.g. "year", "month", "User")
|
|
62
|
+
required: false
|
|
63
|
+
section: Payment
|
|
64
|
+
- name: fill_in_value
|
|
65
|
+
type: string
|
|
66
|
+
description: General fill-in value for customizable sections
|
|
67
|
+
required: false
|
|
68
|
+
section: Terms
|
|
69
|
+
- name: payment_frequency
|
|
70
|
+
type: string
|
|
71
|
+
description: Payment frequency (e.g. "monthly", "quarterly", "annually")
|
|
72
|
+
required: false
|
|
73
|
+
section: Payment
|
|
74
|
+
- name: payment_terms_days
|
|
75
|
+
type: string
|
|
76
|
+
description: Number of 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 (e.g. "Customer's receipt of invoice")
|
|
82
|
+
required: false
|
|
83
|
+
section: Payment
|
|
84
|
+
- name: technical_support
|
|
85
|
+
type: string
|
|
86
|
+
description: Description of included support
|
|
87
|
+
required: false
|
|
88
|
+
section: Service
|
|
89
|
+
- name: professional_services_description
|
|
90
|
+
type: string
|
|
91
|
+
description: Description of professional services
|
|
92
|
+
required: false
|
|
93
|
+
section: Service
|
|
94
|
+
- name: professional_services_reference
|
|
95
|
+
type: string
|
|
96
|
+
description: Reference to SOW or PSA for professional services
|
|
97
|
+
required: false
|
|
98
|
+
section: Service
|
|
Binary file
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
# Common Paper Order Form with SLA
|
|
2
|
+
|
|
3
|
+
An order form with service level agreement provisions, based on [Common Paper's](https://commonpaper.com) standard form.
|
|
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 |
|
|
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 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
|
+
| `technical_support` | string | no | Description of support |
|
|
30
|
+
| `professional_services_description` | string | no | Professional services description |
|
|
31
|
+
| `professional_services_reference` | string | no | SOW or PSA reference |
|
|
32
|
+
| `support_start_time` | string | no | Start time for support |
|
|
33
|
+
| `support_end_time` | string | no | End time for support |
|
|
34
|
+
| `support_days` | string | no | Days of the week for support |
|
|
35
|
+
| `support_timezone` | string | no | Support timezone |
|
|
36
|
+
| `response_time_unit` | string | no | Response time unit |
|
|
37
|
+
| `resolution_time_unit` | string | no | Resolution time unit |
|
|
38
|
+
|
|
39
|
+
## Attribution
|
|
40
|
+
|
|
41
|
+
Based on the Common Paper Order Form with SLA, available at https://commonpaper.com.
|
|
42
|
+
Licensed under CC BY 4.0. Copyright Common Paper, Inc.
|
|
@@ -0,0 +1,129 @@
|
|
|
1
|
+
name: Common Paper Order Form with SLA
|
|
2
|
+
description: >-
|
|
3
|
+
An order form template with service level agreement (SLA) provisions, based on
|
|
4
|
+
Common Paper's standard form. Extends the standard order form with uptime
|
|
5
|
+
targets, response times, and support schedules.
|
|
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 Order Form 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 agreement
|
|
32
|
+
required: true
|
|
33
|
+
section: Terms
|
|
34
|
+
- name: cloud_service
|
|
35
|
+
type: string
|
|
36
|
+
description: Description of the cloud service / product
|
|
37
|
+
required: true
|
|
38
|
+
section: Service
|
|
39
|
+
- name: custom_start_date
|
|
40
|
+
type: string
|
|
41
|
+
description: Custom start date (if not date of last signature)
|
|
42
|
+
required: false
|
|
43
|
+
section: Terms
|
|
44
|
+
- name: subscription_period
|
|
45
|
+
type: string
|
|
46
|
+
description: Length of access to the service (e.g. "12 months")
|
|
47
|
+
required: true
|
|
48
|
+
section: Service
|
|
49
|
+
- name: pilot_period
|
|
50
|
+
type: string
|
|
51
|
+
description: Length of pilot/trial period (e.g. "3 months")
|
|
52
|
+
required: false
|
|
53
|
+
section: Service
|
|
54
|
+
- name: fees
|
|
55
|
+
type: string
|
|
56
|
+
description: Subscription fee amount (e.g. "$10,000")
|
|
57
|
+
required: false
|
|
58
|
+
section: Payment
|
|
59
|
+
- name: fee_unit
|
|
60
|
+
type: string
|
|
61
|
+
description: Fee billing unit (e.g. "year", "month", "User")
|
|
62
|
+
required: false
|
|
63
|
+
section: Payment
|
|
64
|
+
- name: fill_in_value
|
|
65
|
+
type: string
|
|
66
|
+
description: General fill-in value for customizable sections
|
|
67
|
+
required: false
|
|
68
|
+
section: Terms
|
|
69
|
+
- name: payment_frequency
|
|
70
|
+
type: string
|
|
71
|
+
description: Payment frequency (e.g. "monthly", "quarterly", "annually")
|
|
72
|
+
required: false
|
|
73
|
+
section: Payment
|
|
74
|
+
- name: payment_terms_days
|
|
75
|
+
type: string
|
|
76
|
+
description: Number of 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 (e.g. "Customer's receipt of invoice")
|
|
82
|
+
required: false
|
|
83
|
+
section: Payment
|
|
84
|
+
- name: technical_support
|
|
85
|
+
type: string
|
|
86
|
+
description: Description of included support
|
|
87
|
+
required: false
|
|
88
|
+
section: Service
|
|
89
|
+
- name: professional_services_description
|
|
90
|
+
type: string
|
|
91
|
+
description: Description of professional services
|
|
92
|
+
required: false
|
|
93
|
+
section: Service
|
|
94
|
+
- name: professional_services_reference
|
|
95
|
+
type: string
|
|
96
|
+
description: Reference to SOW or PSA for professional services
|
|
97
|
+
required: false
|
|
98
|
+
section: Service
|
|
99
|
+
# SLA-specific fields
|
|
100
|
+
- name: support_start_time
|
|
101
|
+
type: string
|
|
102
|
+
description: Start time for support availability
|
|
103
|
+
required: false
|
|
104
|
+
section: Service
|
|
105
|
+
- name: support_end_time
|
|
106
|
+
type: string
|
|
107
|
+
description: End time for support availability
|
|
108
|
+
required: false
|
|
109
|
+
section: Service
|
|
110
|
+
- name: support_days
|
|
111
|
+
type: string
|
|
112
|
+
description: Days of the week support is available
|
|
113
|
+
required: false
|
|
114
|
+
section: Service
|
|
115
|
+
- name: support_timezone
|
|
116
|
+
type: string
|
|
117
|
+
description: Timezone for support hours
|
|
118
|
+
required: false
|
|
119
|
+
section: Service
|
|
120
|
+
- name: response_time_unit
|
|
121
|
+
type: string
|
|
122
|
+
description: Unit for response time targets (e.g. "minutes", "hours", "days")
|
|
123
|
+
required: false
|
|
124
|
+
section: Service
|
|
125
|
+
- name: resolution_time_unit
|
|
126
|
+
type: string
|
|
127
|
+
description: Unit for resolution time targets (e.g. "hours", "days")
|
|
128
|
+
required: false
|
|
129
|
+
section: Service
|
|
Binary file
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
# Common Paper Partnership Agreement
|
|
2
|
+
|
|
3
|
+
A partnership agreement based on [Common Paper's](https://commonpaper.com) standard terms, covering business partnerships.
|
|
4
|
+
|
|
5
|
+
## Source
|
|
6
|
+
|
|
7
|
+
- **URL**: https://commonpaper.com/standards/partnership-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
|
+
| `custom_effective_date` | string | no | Custom effective date |
|
|
17
|
+
| `term_duration_unit` | string | no | Duration unit for term |
|
|
18
|
+
| `custom_end_date` | string | no | Custom end date |
|
|
19
|
+
| `non_renewal_notice_days` | string | no | Non-renewal notice days |
|
|
20
|
+
| `territory` | string | no | Geographic areas |
|
|
21
|
+
| `fill_in_value` | string | no | General fill-in value |
|
|
22
|
+
| `fill_in_detail` | string | no | Additional detail |
|
|
23
|
+
| `payment_terms_days` | string | no | Days to pay after invoice |
|
|
24
|
+
| `general_cap_amount` | string | no | General liability cap |
|
|
25
|
+
| `cap_multiplier` | string | no | Liability cap multiplier |
|
|
26
|
+
| `increased_cap_amount` | string | no | Increased liability cap |
|
|
27
|
+
| `dpa_reference` | string | no | DPA reference |
|
|
28
|
+
| `governing_law` | string | yes | Governing law |
|
|
29
|
+
| `jurisdiction` | string | yes | Jurisdiction |
|
|
30
|
+
|
|
31
|
+
## Attribution
|
|
32
|
+
|
|
33
|
+
Based on the Common Paper Partnership Agreement, available at https://commonpaper.com.
|
|
34
|
+
Licensed under CC BY 4.0. Copyright Common Paper, Inc.
|
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
name: Common Paper Partnership Agreement
|
|
2
|
+
description: >-
|
|
3
|
+
A partnership agreement cover page and standard terms, based on Common Paper's
|
|
4
|
+
standard form. Covers business partnerships including obligations, fees,
|
|
5
|
+
territory, liability, and data processing.
|
|
6
|
+
source_url: https://commonpaper.com/standards/partnership-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 Partnership 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: custom_effective_date
|
|
20
|
+
type: string
|
|
21
|
+
description: Custom effective date for the agreement
|
|
22
|
+
required: false
|
|
23
|
+
section: Terms
|
|
24
|
+
- name: term_duration_unit
|
|
25
|
+
type: string
|
|
26
|
+
description: Duration unit for agreement term (e.g. "days", "weeks", "months", "year")
|
|
27
|
+
required: false
|
|
28
|
+
section: Terms
|
|
29
|
+
- name: custom_end_date
|
|
30
|
+
type: string
|
|
31
|
+
description: Custom end date for the agreement
|
|
32
|
+
required: false
|
|
33
|
+
section: Terms
|
|
34
|
+
- name: non_renewal_notice_days
|
|
35
|
+
type: string
|
|
36
|
+
description: Days of notice required before non-renewal
|
|
37
|
+
required: false
|
|
38
|
+
section: Terms
|
|
39
|
+
- name: territory
|
|
40
|
+
type: string
|
|
41
|
+
description: Specific geographic areas for the partnership
|
|
42
|
+
required: false
|
|
43
|
+
section: Terms
|
|
44
|
+
- name: fill_in_value
|
|
45
|
+
type: string
|
|
46
|
+
description: General fill-in value for customizable sections
|
|
47
|
+
required: false
|
|
48
|
+
section: Terms
|
|
49
|
+
- name: fill_in_detail
|
|
50
|
+
type: string
|
|
51
|
+
description: Additional detail for customizable sections
|
|
52
|
+
required: false
|
|
53
|
+
section: Terms
|
|
54
|
+
- name: payment_terms_days
|
|
55
|
+
type: string
|
|
56
|
+
description: Number of days to pay after invoice
|
|
57
|
+
required: false
|
|
58
|
+
section: Payment
|
|
59
|
+
- name: general_cap_amount
|
|
60
|
+
type: string
|
|
61
|
+
description: General liability cap dollar amount
|
|
62
|
+
required: false
|
|
63
|
+
section: Liability
|
|
64
|
+
- name: cap_multiplier
|
|
65
|
+
type: string
|
|
66
|
+
description: Liability cap multiplier (e.g. "2")
|
|
67
|
+
required: false
|
|
68
|
+
section: Liability
|
|
69
|
+
- name: increased_cap_amount
|
|
70
|
+
type: string
|
|
71
|
+
description: Increased liability cap dollar amount
|
|
72
|
+
required: false
|
|
73
|
+
section: Liability
|
|
74
|
+
- name: dpa_reference
|
|
75
|
+
type: string
|
|
76
|
+
description: Reference to or location of Data Processing Agreement
|
|
77
|
+
required: false
|
|
78
|
+
section: Privacy
|
|
79
|
+
- name: governing_law
|
|
80
|
+
type: string
|
|
81
|
+
description: State 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
|
|
Binary file
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
# Common Paper Pilot Agreement
|
|
2
|
+
|
|
3
|
+
A pilot agreement based on [Common Paper's](https://commonpaper.com) standard terms, covering trial periods for cloud services.
|
|
4
|
+
|
|
5
|
+
## Source
|
|
6
|
+
|
|
7
|
+
- **URL**: https://commonpaper.com/standards/pilot-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_description` | string | yes | Description of the product being piloted |
|
|
17
|
+
| `pilot_period` | string | yes | Length of the pilot period |
|
|
18
|
+
| `custom_start_date` | string | no | Custom start date |
|
|
19
|
+
| `pilot_fee` | string | no | Fee for the pilot period |
|
|
20
|
+
| `fees_description` | string | no | Description of fees |
|
|
21
|
+
| `payment_frequency` | string | no | Payment frequency |
|
|
22
|
+
| `payment_terms_days` | string | no | Days to pay after invoice |
|
|
23
|
+
| `payment_due_from` | string | no | When payment terms start |
|
|
24
|
+
| `technical_support` | string | no | Description of support |
|
|
25
|
+
| `support_policy_reference` | string | no | Reference to support policy |
|
|
26
|
+
| `general_cap_amount` | string | no | General liability cap amount |
|
|
27
|
+
| `cap_multiplier` | string | no | Liability cap multiplier |
|
|
28
|
+
| `governing_law` | string | yes | Governing law jurisdiction |
|
|
29
|
+
| `jurisdiction` | string | yes | Courts with jurisdiction |
|
|
30
|
+
|
|
31
|
+
## Attribution
|
|
32
|
+
|
|
33
|
+
Based on the Common Paper Pilot Agreement, available at https://commonpaper.com.
|
|
34
|
+
Licensed under CC BY 4.0. Copyright Common Paper, Inc.
|