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,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
|
|
Binary file
|
|
@@ -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: []
|
|
Binary file
|
|
@@ -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
|
|
Binary file
|
|
@@ -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
|
|
Binary file
|