@intentsolutionsio/general-legal-assistant 1.0.0 → 1.0.6
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/README.md +4 -0
- package/agents/legal-clauses.md +28 -2
- package/agents/legal-compliance.md +28 -2
- package/agents/legal-obligations.md +27 -2
- package/agents/legal-recommendations.md +28 -2
- package/agents/legal-risks.md +27 -2
- package/package.json +1 -1
- package/skills/agreement-generator/SKILL.md +17 -4
- package/skills/compliance-audit/SKILL.md +25 -10
- package/skills/contract-compare/SKILL.md +16 -5
- package/skills/contract-review/SKILL.md +15 -5
- package/skills/freelancer-review/SKILL.md +15 -5
- package/skills/missing-protections/SKILL.md +16 -5
- package/skills/nda-generator/SKILL.md +14 -4
- package/skills/negotiate/SKILL.md +13 -4
- package/skills/plain-english/SKILL.md +17 -5
- package/skills/privacy-generator/SKILL.md +20 -6
- package/skills/risk-analysis/SKILL.md +14 -5
- package/skills/terms-generator/SKILL.md +15 -4
package/README.md
CHANGED
|
@@ -5,6 +5,7 @@ AI-powered contract review, risk analysis, document generation, and compliance a
|
|
|
5
5
|
## Skills
|
|
6
6
|
|
|
7
7
|
### Contract Analysis
|
|
8
|
+
|
|
8
9
|
| Skill | What It Does |
|
|
9
10
|
|-------|-------------|
|
|
10
11
|
| `contract-review` | **Flagship** — Full review with 5 parallel agents. Contract Safety Score (0-100), clause-by-clause analysis, prioritized recommendations. |
|
|
@@ -16,6 +17,7 @@ AI-powered contract review, risk analysis, document generation, and compliance a
|
|
|
16
17
|
| `negotiate` | Generates counter-proposals with replacement language and a negotiation email template. |
|
|
17
18
|
|
|
18
19
|
### Document Generation
|
|
20
|
+
|
|
19
21
|
| Skill | What It Does |
|
|
20
22
|
|-------|-------------|
|
|
21
23
|
| `nda-generator` | Generates custom NDAs — mutual, one-way, employee, or vendor. |
|
|
@@ -24,6 +26,7 @@ AI-powered contract review, risk analysis, document generation, and compliance a
|
|
|
24
26
|
| `agreement-generator` | Generates business agreements — freelancer contracts, partnerships, SOWs, MSAs, and more. |
|
|
25
27
|
|
|
26
28
|
### Compliance
|
|
29
|
+
|
|
27
30
|
| Skill | What It Does |
|
|
28
31
|
|-------|-------------|
|
|
29
32
|
| `compliance-audit` | Gap analysis across GDPR, CCPA, ADA/WCAG, PCI-DSS, CAN-SPAM, COPPA, SOC 2. |
|
|
@@ -47,6 +50,7 @@ The `contract-review` skill spawns 5 specialized agents in parallel:
|
|
|
47
50
|
```
|
|
48
51
|
|
|
49
52
|
Or via CLI:
|
|
53
|
+
|
|
50
54
|
```bash
|
|
51
55
|
ccpi install legal-assistant
|
|
52
56
|
```
|
package/agents/legal-clauses.md
CHANGED
|
@@ -1,11 +1,36 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: legal-clauses
|
|
3
|
-
description:
|
|
3
|
+
description: Extract and categorize every clause in a contract with completeness scoring
|
|
4
|
+
tools:
|
|
5
|
+
- Read
|
|
6
|
+
- Write
|
|
7
|
+
- Edit
|
|
8
|
+
- Bash
|
|
9
|
+
- Glob
|
|
10
|
+
- Grep
|
|
11
|
+
- WebFetch
|
|
12
|
+
- WebSearch
|
|
13
|
+
- Task
|
|
14
|
+
- TodoWrite
|
|
4
15
|
model: sonnet
|
|
16
|
+
color: cyan
|
|
17
|
+
version: 1.0.0
|
|
18
|
+
author: Jeremy Longshore <jeremy@intentsolutions.io>
|
|
19
|
+
tags:
|
|
20
|
+
- business-tools
|
|
21
|
+
- legal
|
|
22
|
+
- clauses
|
|
23
|
+
disallowedTools: []
|
|
24
|
+
skills: []
|
|
25
|
+
background: false
|
|
5
26
|
effort: high
|
|
6
27
|
maxTurns: 10
|
|
28
|
+
# ── upgrade levers — uncomment + set when tuning this agent ──
|
|
29
|
+
# memory: project # persistent scope: user/project/local (omit = ephemeral)
|
|
30
|
+
# isolation: worktree # run in an isolated git worktree
|
|
31
|
+
# initialPrompt: "…" # seed the agent's first turn
|
|
32
|
+
# hooks / mcpServers / permissionMode → set at the PLUGIN level, not on a plugin agent
|
|
7
33
|
---
|
|
8
|
-
|
|
9
34
|
## Role
|
|
10
35
|
|
|
11
36
|
You are a Clause Identification and Categorization Agent. Your sole responsibility is to extract, classify, and inventory every clause in a contract document. You produce a structured JSON inventory that downstream agents consume for risk scoring, compliance checking, obligation mapping, and recommendation generation.
|
|
@@ -20,6 +45,7 @@ You are a Clause Identification and Categorization Agent. Your sole responsibili
|
|
|
20
45
|
## Inputs
|
|
21
46
|
|
|
22
47
|
You receive the full text of a contract document. This may be:
|
|
48
|
+
|
|
23
49
|
- A complete executed agreement
|
|
24
50
|
- A draft contract under negotiation
|
|
25
51
|
- A template with bracketed placeholders
|
|
@@ -1,11 +1,36 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: legal-compliance
|
|
3
|
-
description:
|
|
3
|
+
description: Check contract clauses against GDPR, CCPA, employment law, and industry regulations
|
|
4
|
+
tools:
|
|
5
|
+
- Read
|
|
6
|
+
- Write
|
|
7
|
+
- Edit
|
|
8
|
+
- Bash
|
|
9
|
+
- Glob
|
|
10
|
+
- Grep
|
|
11
|
+
- WebFetch
|
|
12
|
+
- WebSearch
|
|
13
|
+
- Task
|
|
14
|
+
- TodoWrite
|
|
4
15
|
model: sonnet
|
|
16
|
+
color: yellow
|
|
17
|
+
version: 1.0.0
|
|
18
|
+
author: Jeremy Longshore <jeremy@intentsolutions.io>
|
|
19
|
+
tags:
|
|
20
|
+
- business-tools
|
|
21
|
+
- legal
|
|
22
|
+
- compliance
|
|
23
|
+
disallowedTools: []
|
|
24
|
+
skills: []
|
|
25
|
+
background: false
|
|
5
26
|
effort: high
|
|
6
27
|
maxTurns: 10
|
|
28
|
+
# ── upgrade levers — uncomment + set when tuning this agent ──
|
|
29
|
+
# memory: project # persistent scope: user/project/local (omit = ephemeral)
|
|
30
|
+
# isolation: worktree # run in an isolated git worktree
|
|
31
|
+
# initialPrompt: "…" # seed the agent's first turn
|
|
32
|
+
# hooks / mcpServers / permissionMode → set at the PLUGIN level, not on a plugin agent
|
|
7
33
|
---
|
|
8
|
-
|
|
9
34
|
## Role
|
|
10
35
|
|
|
11
36
|
You are a Regulatory Compliance Verification Agent. Your sole responsibility is to check every clause in a contract against applicable regulatory frameworks and assess enforceability under the governing jurisdiction. You identify compliance gaps, enforceability risks, and regulatory violations.
|
|
@@ -21,6 +46,7 @@ You are a Regulatory Compliance Verification Agent. Your sole responsibility is
|
|
|
21
46
|
## Inputs
|
|
22
47
|
|
|
23
48
|
You receive the full text of a contract document. Read it entirely to determine:
|
|
49
|
+
|
|
24
50
|
- The contract type (employment, SaaS, vendor, consulting, licensing, etc.)
|
|
25
51
|
- The parties and their roles (controller/processor, employer/employee, etc.)
|
|
26
52
|
- The governing jurisdiction stated in the contract
|
|
@@ -1,11 +1,36 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: legal-obligations
|
|
3
|
-
description:
|
|
3
|
+
description: Map every obligation, deadline, and financial exposure in a contract chronologically
|
|
4
|
+
tools:
|
|
5
|
+
- Read
|
|
6
|
+
- Write
|
|
7
|
+
- Edit
|
|
8
|
+
- Bash
|
|
9
|
+
- Glob
|
|
10
|
+
- Grep
|
|
11
|
+
- WebFetch
|
|
12
|
+
- WebSearch
|
|
13
|
+
- Task
|
|
14
|
+
- TodoWrite
|
|
4
15
|
model: sonnet
|
|
16
|
+
color: green
|
|
17
|
+
version: 1.0.0
|
|
18
|
+
author: Jeremy Longshore <jeremy@intentsolutions.io>
|
|
19
|
+
tags:
|
|
20
|
+
- business-tools
|
|
21
|
+
- legal
|
|
22
|
+
- obligations
|
|
23
|
+
disallowedTools: []
|
|
24
|
+
skills: []
|
|
25
|
+
background: false
|
|
5
26
|
effort: high
|
|
6
27
|
maxTurns: 10
|
|
28
|
+
# ── upgrade levers — uncomment + set when tuning this agent ──
|
|
29
|
+
# memory: project # persistent scope: user/project/local (omit = ephemeral)
|
|
30
|
+
# isolation: worktree # run in an isolated git worktree
|
|
31
|
+
# initialPrompt: "…" # seed the agent's first turn
|
|
32
|
+
# hooks / mcpServers / permissionMode → set at the PLUGIN level, not on a plugin agent
|
|
7
33
|
---
|
|
8
|
-
|
|
9
34
|
## Role
|
|
10
35
|
|
|
11
36
|
You are an Obligation Mapping and Financial Exposure Agent. Your sole responsibility is to extract every obligation, deadline, trigger condition, and financial commitment from a contract, organize them chronologically, and calculate total financial exposure. You produce a structured timeline and obligation matrix that downstream agents use for recommendations and negotiation strategy.
|
|
@@ -1,11 +1,36 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: legal-recommendations
|
|
3
|
-
description:
|
|
3
|
+
description: Generate prioritized recommendations with replacement clause language and negotiation scripts
|
|
4
|
+
tools:
|
|
5
|
+
- Read
|
|
6
|
+
- Write
|
|
7
|
+
- Edit
|
|
8
|
+
- Bash
|
|
9
|
+
- Glob
|
|
10
|
+
- Grep
|
|
11
|
+
- WebFetch
|
|
12
|
+
- WebSearch
|
|
13
|
+
- Task
|
|
14
|
+
- TodoWrite
|
|
4
15
|
model: sonnet
|
|
16
|
+
color: yellow
|
|
17
|
+
version: 1.0.0
|
|
18
|
+
author: Jeremy Longshore <jeremy@intentsolutions.io>
|
|
19
|
+
tags:
|
|
20
|
+
- business-tools
|
|
21
|
+
- legal
|
|
22
|
+
- recommendations
|
|
23
|
+
disallowedTools: []
|
|
24
|
+
skills: []
|
|
25
|
+
background: false
|
|
5
26
|
effort: high
|
|
6
27
|
maxTurns: 10
|
|
28
|
+
# ── upgrade levers — uncomment + set when tuning this agent ──
|
|
29
|
+
# memory: project # persistent scope: user/project/local (omit = ephemeral)
|
|
30
|
+
# isolation: worktree # run in an isolated git worktree
|
|
31
|
+
# initialPrompt: "…" # seed the agent's first turn
|
|
32
|
+
# hooks / mcpServers / permissionMode → set at the PLUGIN level, not on a plugin agent
|
|
7
33
|
---
|
|
8
|
-
|
|
9
34
|
## Role
|
|
10
35
|
|
|
11
36
|
You are an Actionable Recommendations and Negotiation Strategy Agent. Your sole responsibility is to consume the output from four upstream agents (clauses, risks, compliance, obligations) and synthesize it into a prioritized action plan with specific replacement language and negotiation scripts. You are the final agent in the pipeline — your output is what the user acts on.
|
|
@@ -21,6 +46,7 @@ You are an Actionable Recommendations and Negotiation Strategy Agent. Your sole
|
|
|
21
46
|
## Inputs
|
|
22
47
|
|
|
23
48
|
You receive:
|
|
49
|
+
|
|
24
50
|
1. The full text of the contract document
|
|
25
51
|
2. Output from the **clauses agent** — clause inventory, gaps, defined terms, cross-references
|
|
26
52
|
3. Output from the **risks agent** — risk scores, poison pills, signing recommendation
|
package/agents/legal-risks.md
CHANGED
|
@@ -1,11 +1,36 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: legal-risks
|
|
3
|
-
description:
|
|
3
|
+
description: Score every contract clause for legal and financial risk on a 1-10 scale
|
|
4
|
+
tools:
|
|
5
|
+
- Read
|
|
6
|
+
- Write
|
|
7
|
+
- Edit
|
|
8
|
+
- Bash
|
|
9
|
+
- Glob
|
|
10
|
+
- Grep
|
|
11
|
+
- WebFetch
|
|
12
|
+
- WebSearch
|
|
13
|
+
- Task
|
|
14
|
+
- TodoWrite
|
|
4
15
|
model: sonnet
|
|
16
|
+
color: red
|
|
17
|
+
version: 1.0.0
|
|
18
|
+
author: Jeremy Longshore <jeremy@intentsolutions.io>
|
|
19
|
+
tags:
|
|
20
|
+
- business-tools
|
|
21
|
+
- legal
|
|
22
|
+
- risks
|
|
23
|
+
disallowedTools: []
|
|
24
|
+
skills: []
|
|
25
|
+
background: false
|
|
5
26
|
effort: high
|
|
6
27
|
maxTurns: 10
|
|
28
|
+
# ── upgrade levers — uncomment + set when tuning this agent ──
|
|
29
|
+
# memory: project # persistent scope: user/project/local (omit = ephemeral)
|
|
30
|
+
# isolation: worktree # run in an isolated git worktree
|
|
31
|
+
# initialPrompt: "…" # seed the agent's first turn
|
|
32
|
+
# hooks / mcpServers / permissionMode → set at the PLUGIN level, not on a plugin agent
|
|
7
33
|
---
|
|
8
|
-
|
|
9
34
|
## Role
|
|
10
35
|
|
|
11
36
|
You are a Risk Scoring and Threat Identification Agent. Your sole responsibility is to evaluate every clause in a contract for legal, financial, and operational risk using a quantitative 4-factor methodology. You produce risk scores, identify poison pills, and issue a signing recommendation.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@intentsolutionsio/general-legal-assistant",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.6",
|
|
4
4
|
"description": "AI-powered contract review, risk analysis, document generation, and compliance auditing with 12 skills and 5 parallel agents",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"legal",
|
|
@@ -1,16 +1,26 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: agreement-generator
|
|
3
|
-
description:
|
|
4
|
-
|
|
3
|
+
description: 'Generates customized business agreements for 10 common relationship
|
|
4
|
+
types with
|
|
5
|
+
|
|
5
6
|
plain English annotations. Use when formalizing a business relationship, creating
|
|
7
|
+
|
|
6
8
|
a partnership agreement, or drafting a service contract from scratch.
|
|
9
|
+
|
|
7
10
|
Trigger with "/agreement-generator" or "create a freelancer agreement".
|
|
11
|
+
|
|
12
|
+
'
|
|
8
13
|
allowed-tools: Read, Write, Glob, Grep
|
|
9
14
|
version: 1.0.0
|
|
10
15
|
author: Intent Solutions <jeremy@intentsolutions.io>
|
|
11
16
|
license: MIT
|
|
12
|
-
|
|
13
|
-
|
|
17
|
+
tags:
|
|
18
|
+
- legal
|
|
19
|
+
- agreements
|
|
20
|
+
- contracts
|
|
21
|
+
- business
|
|
22
|
+
- document-generation
|
|
23
|
+
compatibility: Designed for Claude Code, also compatible with Codex and OpenClaw
|
|
14
24
|
---
|
|
15
25
|
# Business Agreement Generator
|
|
16
26
|
|
|
@@ -185,6 +195,7 @@ Generate a single Markdown file named `{TYPE}-AGREEMENT-{PartyA}-{PartyB}-{YYYY-
|
|
|
185
195
|
Request: "Create a freelancer agreement for a web developer building our new marketing site"
|
|
186
196
|
|
|
187
197
|
Result: `FREELANCER-AGREEMENT-AcmeCorp-JaneDev-2026-04-02.md` with:
|
|
198
|
+
|
|
188
199
|
- Detailed scope of work with milestone deliverables
|
|
189
200
|
- IP assignment to company upon payment (work-for-hire with assignment backup)
|
|
190
201
|
- Independent contractor status affirmation
|
|
@@ -197,6 +208,7 @@ Result: `FREELANCER-AGREEMENT-AcmeCorp-JaneDev-2026-04-02.md` with:
|
|
|
197
208
|
Request: "Generate an MSA between our consulting firm and a new enterprise client"
|
|
198
209
|
|
|
199
210
|
Result: `MSA-AGREEMENT-ConsultingCo-EnterpriseCorp-2026-04-02.md` with:
|
|
211
|
+
|
|
200
212
|
- Framework agreement with SOW attachment template
|
|
201
213
|
- Service level commitments (response times, availability)
|
|
202
214
|
- Rate card structure with annual escalation cap
|
|
@@ -209,6 +221,7 @@ Result: `MSA-AGREEMENT-ConsultingCo-EnterpriseCorp-2026-04-02.md` with:
|
|
|
209
221
|
Request: "Create a referral agreement — we'll pay 10% commission for qualified leads"
|
|
210
222
|
|
|
211
223
|
Result: `REFERRAL-AGREEMENT-CompanyA-PartnerB-2026-04-02.md` with:
|
|
224
|
+
|
|
212
225
|
- Qualified referral definition (signed contract within 90 days)
|
|
213
226
|
- 10% commission on first-year revenue
|
|
214
227
|
- 30-day payment after client payment received
|
|
@@ -1,16 +1,29 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: compliance-audit
|
|
3
|
-
description:
|
|
4
|
-
|
|
3
|
+
description: 'Performs regulatory gap analysis across 7 compliance frameworks with
|
|
4
|
+
a scored
|
|
5
|
+
|
|
5
6
|
report card and prioritized remediation roadmap. Use when assessing a website
|
|
7
|
+
|
|
6
8
|
or application for GDPR, CCPA, ADA, PCI-DSS, CAN-SPAM, COPPA, or SOC 2 compliance.
|
|
9
|
+
|
|
7
10
|
Trigger with "/compliance-audit" or "audit my website for regulatory compliance".
|
|
11
|
+
|
|
12
|
+
'
|
|
8
13
|
allowed-tools: Read, Glob, Grep, WebFetch
|
|
9
14
|
version: 1.0.0
|
|
10
15
|
author: Intent Solutions <jeremy@intentsolutions.io>
|
|
11
16
|
license: MIT
|
|
12
|
-
|
|
13
|
-
|
|
17
|
+
tags:
|
|
18
|
+
- legal
|
|
19
|
+
- compliance
|
|
20
|
+
- gdpr
|
|
21
|
+
- ccpa
|
|
22
|
+
- ada
|
|
23
|
+
- pci-dss
|
|
24
|
+
- audit
|
|
25
|
+
- regulatory
|
|
26
|
+
compatibility: Designed for Claude Code, also compatible with Codex and OpenClaw
|
|
14
27
|
---
|
|
15
28
|
# Regulatory Compliance Audit
|
|
16
29
|
|
|
@@ -73,7 +86,7 @@ modify any files. The output is an audit report documenting findings and recomme
|
|
|
73
86
|
|
|
74
87
|
### Phase 2: Framework-by-Framework Evaluation
|
|
75
88
|
|
|
76
|
-
|
|
89
|
+
1. **Evaluate each applicable framework.** Score against these criteria:
|
|
77
90
|
|
|
78
91
|
**GDPR (General Data Protection Regulation)**
|
|
79
92
|
- [ ] Privacy policy published and accessible
|
|
@@ -141,7 +154,7 @@ modify any files. The output is an audit report documenting findings and recomme
|
|
|
141
154
|
- [ ] Vendor management program
|
|
142
155
|
- [ ] Change management procedures
|
|
143
156
|
|
|
144
|
-
|
|
157
|
+
2. **Calculate compliance scores.** For each framework:
|
|
145
158
|
- Count the criteria met vs. total applicable criteria
|
|
146
159
|
- Calculate a percentage score
|
|
147
160
|
- Assign a letter grade:
|
|
@@ -154,7 +167,7 @@ modify any files. The output is an audit report documenting findings and recomme
|
|
|
154
167
|
| D | 40-59% | Significant gaps, priority remediation |
|
|
155
168
|
| F | 0-39% | Non-compliant, immediate action required |
|
|
156
169
|
|
|
157
|
-
|
|
170
|
+
3. **Generate remediation roadmap.** For each gap, provide:
|
|
158
171
|
- Description of the gap
|
|
159
172
|
- Regulatory risk (fine amounts, enforcement precedents)
|
|
160
173
|
- Remediation action with specific steps
|
|
@@ -162,7 +175,7 @@ modify any files. The output is an audit report documenting findings and recomme
|
|
|
162
175
|
- Priority tier: P0 (immediate), P1 (30 days), P2 (90 days), P3 (6 months)
|
|
163
176
|
- Suggested responsible party (legal, engineering, marketing, ops)
|
|
164
177
|
|
|
165
|
-
|
|
178
|
+
4. **Compile the audit report** using the output format below.
|
|
166
179
|
|
|
167
180
|
## Output
|
|
168
181
|
|
|
@@ -250,9 +263,10 @@ compliance assessment.
|
|
|
250
263
|
|
|
251
264
|
**Example 1: E-Commerce Website**
|
|
252
265
|
|
|
253
|
-
Request: "Audit
|
|
266
|
+
Request: "Audit for compliance"
|
|
254
267
|
|
|
255
268
|
Result: `COMPLIANCE-AUDIT-ExampleShop-2026-04-02.md` with:
|
|
269
|
+
|
|
256
270
|
- GDPR: C (68%) — privacy policy exists but missing granular consent, no DPA with Shopify
|
|
257
271
|
- CCPA: D (45%) — no "Do Not Sell" link, no consumer request mechanism
|
|
258
272
|
- ADA/WCAG: B (82%) — good semantic HTML, missing alt text on 12 product images
|
|
@@ -267,6 +281,7 @@ Result: `COMPLIANCE-AUDIT-ExampleShop-2026-04-02.md` with:
|
|
|
267
281
|
Request: "Run a compliance audit on our codebase at ./src"
|
|
268
282
|
|
|
269
283
|
Result: `COMPLIANCE-AUDIT-SaaSApp-2026-04-02.md` with:
|
|
284
|
+
|
|
270
285
|
- GDPR: D (52%) — no data processing records, no breach notification procedure
|
|
271
286
|
- CCPA: C (65%) — basic privacy controls exist, missing sensitive data handling
|
|
272
287
|
- ADA/WCAG: F (35%) — minimal ARIA attributes, no keyboard navigation, poor contrast
|
|
@@ -284,4 +299,4 @@ Result: `COMPLIANCE-AUDIT-SaaSApp-2026-04-02.md` with:
|
|
|
284
299
|
- [W3C WCAG 2.1 Guidelines](https://www.w3.org/TR/WCAG21/) — Web accessibility standards
|
|
285
300
|
- [PCI Security Standards Council](https://www.pcisecuritystandards.org/) — Payment card security standards
|
|
286
301
|
- [FTC COPPA Rule](https://www.ftc.gov/legal-library/browse/rules/childrens-online-privacy-protection-rule-coppa) — Children's privacy requirements
|
|
287
|
-
-
|
|
302
|
+
- AICPA SOC 2 Trust Services Criteria — SOC 2 framework
|
|
@@ -1,19 +1,30 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: contract-compare
|
|
3
|
-
description:
|
|
4
|
-
|
|
3
|
+
description: 'Compares two contract versions side-by-side to detect added, removed,
|
|
4
|
+
and
|
|
5
|
+
|
|
5
6
|
modified clauses with favorability analysis. Use when a user receives a
|
|
7
|
+
|
|
6
8
|
revised contract or redline and needs to understand what changed and who
|
|
9
|
+
|
|
7
10
|
each change favors. Trigger with "/contract-compare" or "compare these
|
|
11
|
+
|
|
8
12
|
two contracts".
|
|
13
|
+
|
|
14
|
+
'
|
|
9
15
|
allowed-tools: Read, Glob, Grep
|
|
10
16
|
version: 1.0.0
|
|
11
17
|
author: Intent Solutions <jeremy@intentsolutions.io>
|
|
12
18
|
license: MIT
|
|
13
|
-
|
|
14
|
-
|
|
19
|
+
tags:
|
|
20
|
+
- legal
|
|
21
|
+
- contracts
|
|
22
|
+
- comparison
|
|
23
|
+
- redline
|
|
24
|
+
- negotiation
|
|
25
|
+
- diff
|
|
26
|
+
compatibility: Designed for Claude Code, also compatible with Codex and OpenClaw
|
|
15
27
|
---
|
|
16
|
-
|
|
17
28
|
# Contract Compare — Version Comparison and Favorability Analysis
|
|
18
29
|
|
|
19
30
|
Side-by-side contract comparison skill that identifies every change between two
|
|
@@ -1,19 +1,29 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: contract-review
|
|
3
|
-
description:
|
|
4
|
-
|
|
3
|
+
description: 'Orchestrates a comprehensive multi-agent contract review that analyzes
|
|
4
|
+
|
|
5
5
|
risk, plain-English translation, missing protections, and compliance
|
|
6
|
+
|
|
6
7
|
in parallel. Use when a user shares a contract and wants a full review,
|
|
8
|
+
|
|
7
9
|
safety score, or executive summary. Trigger with "/contract-review" or
|
|
10
|
+
|
|
8
11
|
"review this contract".
|
|
12
|
+
|
|
13
|
+
'
|
|
9
14
|
allowed-tools: Read, Glob, Grep, Task
|
|
10
15
|
version: 1.0.0
|
|
11
16
|
author: Intent Solutions <jeremy@intentsolutions.io>
|
|
12
17
|
license: MIT
|
|
13
|
-
|
|
14
|
-
|
|
18
|
+
tags:
|
|
19
|
+
- legal
|
|
20
|
+
- contracts
|
|
21
|
+
- review
|
|
22
|
+
- risk
|
|
23
|
+
- orchestration
|
|
24
|
+
- multi-agent
|
|
25
|
+
compatibility: Designed for Claude Code, also compatible with Codex and OpenClaw
|
|
15
26
|
---
|
|
16
|
-
|
|
17
27
|
# Contract Review — Multi-Agent Orchestrator
|
|
18
28
|
|
|
19
29
|
Flagship contract review skill that spawns five parallel analysis agents, then
|
|
@@ -1,19 +1,29 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: freelancer-review
|
|
3
|
-
description:
|
|
4
|
-
|
|
3
|
+
description: 'Reviews contracts from a freelancer''s perspective across 14 evaluation
|
|
4
|
+
|
|
5
5
|
lenses including misclassification risk, IP ownership, payment terms,
|
|
6
|
+
|
|
6
7
|
kill fees, and non-compete scope. Use when a freelancer or independent
|
|
8
|
+
|
|
7
9
|
contractor needs to evaluate a client agreement. Trigger with
|
|
10
|
+
|
|
8
11
|
"/freelancer-review" or "review this contract as a freelancer".
|
|
12
|
+
|
|
13
|
+
'
|
|
9
14
|
allowed-tools: Read, Glob, Grep
|
|
10
15
|
version: 1.0.0
|
|
11
16
|
author: Intent Solutions <jeremy@intentsolutions.io>
|
|
12
17
|
license: MIT
|
|
13
|
-
|
|
14
|
-
|
|
18
|
+
tags:
|
|
19
|
+
- legal
|
|
20
|
+
- contracts
|
|
21
|
+
- freelancer
|
|
22
|
+
- contractor
|
|
23
|
+
- misclassification
|
|
24
|
+
- gig-economy
|
|
25
|
+
compatibility: Designed for Claude Code, also compatible with Codex and OpenClaw
|
|
15
26
|
---
|
|
16
|
-
|
|
17
27
|
# Freelancer Review — Independent Contractor Contract Analysis
|
|
18
28
|
|
|
19
29
|
Specialized contract review that evaluates agreements through 14 freelancer-
|
|
@@ -1,19 +1,29 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: missing-protections
|
|
3
|
-
description:
|
|
4
|
-
|
|
3
|
+
description: 'Audits a contract against type-specific protection checklists to find
|
|
4
|
+
|
|
5
5
|
gaps, then provides ready-to-insert clause language for each missing
|
|
6
|
+
|
|
6
7
|
protection. Use when a user wants to know what protections are absent
|
|
8
|
+
|
|
7
9
|
from their contract. Trigger with "/missing-protections" or "what
|
|
10
|
+
|
|
8
11
|
protections is this contract missing".
|
|
12
|
+
|
|
13
|
+
'
|
|
9
14
|
allowed-tools: Read, Glob, Grep
|
|
10
15
|
version: 1.0.0
|
|
11
16
|
author: Intent Solutions <jeremy@intentsolutions.io>
|
|
12
17
|
license: MIT
|
|
13
|
-
|
|
14
|
-
|
|
18
|
+
tags:
|
|
19
|
+
- legal
|
|
20
|
+
- contracts
|
|
21
|
+
- gap-analysis
|
|
22
|
+
- protections
|
|
23
|
+
- compliance
|
|
24
|
+
- checklist
|
|
25
|
+
compatibility: Designed for Claude Code, also compatible with Codex and OpenClaw
|
|
15
26
|
---
|
|
16
|
-
|
|
17
27
|
# Missing Protections — Contract Gap Finder
|
|
18
28
|
|
|
19
29
|
Audits a contract against a comprehensive checklist of protections that should
|
|
@@ -111,6 +121,7 @@ templates (CC BY 4.0) and widely accepted market standards.
|
|
|
111
121
|
Section 8.3")
|
|
112
122
|
|
|
113
123
|
7. **Summarize the protection coverage score:**
|
|
124
|
+
|
|
114
125
|
```
|
|
115
126
|
Universal protections present: X / 15
|
|
116
127
|
Type-specific protections present: Y / Z
|
|
@@ -1,16 +1,24 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: nda-generator
|
|
3
|
-
description:
|
|
4
|
-
|
|
3
|
+
description: 'Generates custom non-disclosure agreements with plain English annotations.
|
|
4
|
+
|
|
5
5
|
Use when creating an NDA for business discussions, hiring, vendor relationships,
|
|
6
|
+
|
|
6
7
|
or partnerships. Supports mutual, one-way, employee, and vendor variants.
|
|
8
|
+
|
|
7
9
|
Trigger with "/nda-generator" or "create an NDA for our partnership".
|
|
10
|
+
|
|
11
|
+
'
|
|
8
12
|
allowed-tools: Read, Write, Glob, Grep
|
|
9
13
|
version: 1.0.0
|
|
10
14
|
author: Intent Solutions <jeremy@intentsolutions.io>
|
|
11
15
|
license: MIT
|
|
12
|
-
|
|
13
|
-
|
|
16
|
+
tags:
|
|
17
|
+
- legal
|
|
18
|
+
- nda
|
|
19
|
+
- confidentiality
|
|
20
|
+
- document-generation
|
|
21
|
+
compatibility: Designed for Claude Code, also compatible with Codex and OpenClaw
|
|
14
22
|
---
|
|
15
23
|
# NDA Generator
|
|
16
24
|
|
|
@@ -155,6 +163,7 @@ Generate a single Markdown file named `NDA-{Party1}-{Party2}-{YYYY-MM-DD}.md` wi
|
|
|
155
163
|
Request: "Create a mutual NDA between Acme Corp and Beta LLC for exploring a joint venture"
|
|
156
164
|
|
|
157
165
|
Result: `NDA-AcmeCorp-BetaLLC-2026-04-02.md` with:
|
|
166
|
+
|
|
158
167
|
- Mutual obligations mirrored for both parties
|
|
159
168
|
- Scope: financial data, technical specifications, customer lists, strategic plans
|
|
160
169
|
- 2-year term, 3-year survival period
|
|
@@ -166,6 +175,7 @@ Result: `NDA-AcmeCorp-BetaLLC-2026-04-02.md` with:
|
|
|
166
175
|
Request: "Generate an employee NDA for a new software engineer joining our startup in California"
|
|
167
176
|
|
|
168
177
|
Result: `NDA-TechStartup-JaneDoe-2026-04-02.md` with:
|
|
178
|
+
|
|
169
179
|
- One-way structure (company discloses to employee)
|
|
170
180
|
- DTSA whistleblower immunity notice included
|
|
171
181
|
- No non-compete clause (California restriction noted)
|
|
@@ -1,16 +1,24 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: negotiate
|
|
3
|
-
description:
|
|
4
|
-
|
|
3
|
+
description: 'Analyzes contracts for unfavorable or risky clauses and generates prioritized
|
|
4
|
+
|
|
5
5
|
counter-proposals with replacement language. Use when reviewing a contract before
|
|
6
|
+
|
|
6
7
|
signing, preparing for a negotiation, or responding to unfavorable terms.
|
|
8
|
+
|
|
7
9
|
Trigger with "/negotiate" or "generate counter-proposals for this contract".
|
|
10
|
+
|
|
11
|
+
'
|
|
8
12
|
allowed-tools: Read, Glob, Grep
|
|
9
13
|
version: 1.0.0
|
|
10
14
|
author: Intent Solutions <jeremy@intentsolutions.io>
|
|
11
15
|
license: MIT
|
|
12
|
-
|
|
13
|
-
|
|
16
|
+
tags:
|
|
17
|
+
- legal
|
|
18
|
+
- negotiation
|
|
19
|
+
- contracts
|
|
20
|
+
- counter-proposal
|
|
21
|
+
compatibility: Designed for Claude Code, also compatible with Codex and OpenClaw
|
|
14
22
|
---
|
|
15
23
|
# Contract Negotiation Strategy Generator
|
|
16
24
|
|
|
@@ -141,6 +149,7 @@ Generate a single Markdown file named `NEGOTIATION-STRATEGY-{contract-name}.md`
|
|
|
141
149
|
Request: "Analyze this vendor agreement and generate counter-proposals — we're the customer"
|
|
142
150
|
|
|
143
151
|
Result: Strategy document identifying 12 clauses across 3 tiers:
|
|
152
|
+
|
|
144
153
|
- MUST-CHANGE: Unlimited liability for customer (cap at 12 months fees), auto-renewal
|
|
145
154
|
without 60-day notice window
|
|
146
155
|
- SHOULD-CHANGE: NET-60 payment terms (propose NET-30 with 2% early payment discount),
|
|
@@ -1,19 +1,29 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: plain-english
|
|
3
|
-
description:
|
|
4
|
-
|
|
3
|
+
description: 'Translates every clause of a contract into plain language at an 8th-grade
|
|
4
|
+
|
|
5
5
|
reading level and flags deliberately confusing language patterns. Use when
|
|
6
|
+
|
|
6
7
|
a user says "explain this contract", "what does this mean", or needs a
|
|
8
|
+
|
|
7
9
|
non-lawyer to understand an agreement. Trigger with "/plain-english" or
|
|
10
|
+
|
|
8
11
|
"translate this contract to plain English".
|
|
12
|
+
|
|
13
|
+
'
|
|
9
14
|
allowed-tools: Read, Glob, Grep
|
|
10
15
|
version: 1.0.0
|
|
11
16
|
author: Intent Solutions <jeremy@intentsolutions.io>
|
|
12
17
|
license: MIT
|
|
13
|
-
|
|
14
|
-
|
|
18
|
+
tags:
|
|
19
|
+
- legal
|
|
20
|
+
- contracts
|
|
21
|
+
- plain-language
|
|
22
|
+
- readability
|
|
23
|
+
- translation
|
|
24
|
+
- accessibility
|
|
25
|
+
compatibility: Designed for Claude Code, also compatible with Codex and OpenClaw
|
|
15
26
|
---
|
|
16
|
-
|
|
17
27
|
# Plain English — Legalese to Plain Language Translator
|
|
18
28
|
|
|
19
29
|
Translates every material clause in a contract into clear, jargon-free language
|
|
@@ -146,6 +156,7 @@ attorney.
|
|
|
146
156
|
> reputation — even if they knew these losses were possible.
|
|
147
157
|
|
|
148
158
|
**Flags:**
|
|
159
|
+
|
|
149
160
|
- :warning: **WATCH OUT** — This means if their software deletes your data,
|
|
150
161
|
they owe you nothing for the data itself or the business impact. Only direct
|
|
151
162
|
damages (like a refund of fees paid) would apply.
|
|
@@ -166,6 +177,7 @@ attorney.
|
|
|
166
177
|
> to your custom work too.
|
|
167
178
|
|
|
168
179
|
**Flags:**
|
|
180
|
+
|
|
169
181
|
- :lock: **HIDDEN OBLIGATION** — This definition makes your custom work subject
|
|
170
182
|
to the vendor's terms about "Services" throughout the contract.
|
|
171
183
|
- :boom: **CONTRADICTS EXPECTATIONS** — Most people would expect "Services" to
|
|
@@ -1,16 +1,28 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: privacy-generator
|
|
3
|
-
description:
|
|
4
|
-
|
|
3
|
+
description: 'Generates comprehensive privacy policies by scanning websites for data
|
|
4
|
+
collection
|
|
5
|
+
|
|
5
6
|
signals including cookies, forms, payment processors, and third-party scripts.
|
|
6
|
-
|
|
7
|
+
|
|
8
|
+
Use when launching a website or app that collects user data and needs GDPR/CCPA
|
|
9
|
+
compliance.
|
|
10
|
+
|
|
7
11
|
Trigger with "/privacy-generator" or "create a privacy policy for my website".
|
|
12
|
+
|
|
13
|
+
'
|
|
8
14
|
allowed-tools: Read, Write, Glob, Grep, WebFetch
|
|
9
15
|
version: 1.0.0
|
|
10
16
|
author: Intent Solutions <jeremy@intentsolutions.io>
|
|
11
17
|
license: MIT
|
|
12
|
-
|
|
13
|
-
|
|
18
|
+
tags:
|
|
19
|
+
- legal
|
|
20
|
+
- privacy-policy
|
|
21
|
+
- gdpr
|
|
22
|
+
- ccpa
|
|
23
|
+
- data-protection
|
|
24
|
+
- cookies
|
|
25
|
+
compatibility: Designed for Claude Code, also compatible with Codex and OpenClaw
|
|
14
26
|
---
|
|
15
27
|
# Privacy Policy Generator
|
|
16
28
|
|
|
@@ -184,6 +196,7 @@ Generate a single Markdown file named `PRIVACY-POLICY-{company}-{YYYY-MM-DD}.md`
|
|
|
184
196
|
Request: "Generate a privacy policy for https://example-app.com"
|
|
185
197
|
|
|
186
198
|
Result: `PRIVACY-POLICY-ExampleApp-2026-04-02.md` detecting:
|
|
199
|
+
|
|
187
200
|
- Google Analytics 4 (behavioral data, IP address)
|
|
188
201
|
- Stripe payment processing (financial data)
|
|
189
202
|
- Intercom chat widget (identifiers, conversation content)
|
|
@@ -197,6 +210,7 @@ Result: `PRIVACY-POLICY-ExampleApp-2026-04-02.md` detecting:
|
|
|
197
210
|
Request: "Create privacy policy for my WordPress blog with Mailchimp newsletter"
|
|
198
211
|
|
|
199
212
|
Result: `PRIVACY-POLICY-MyBlog-2026-04-02.md` detecting:
|
|
213
|
+
|
|
200
214
|
- WordPress cookies (session, comment author)
|
|
201
215
|
- Mailchimp email collection (consent-based)
|
|
202
216
|
- Google Fonts (IP address to Google servers)
|
|
@@ -205,7 +219,7 @@ Result: `PRIVACY-POLICY-MyBlog-2026-04-02.md` detecting:
|
|
|
205
219
|
|
|
206
220
|
## Resources
|
|
207
221
|
|
|
208
|
-
-
|
|
222
|
+
- ICO Privacy Notice Code of Practice — UK data protection authority
|
|
209
223
|
- [California Attorney General CCPA Guidance](https://oag.ca.gov/privacy/ccpa) — Official CCPA regulations
|
|
210
224
|
- [FTC Data Security Guidance](https://www.ftc.gov/business-guidance/privacy-security) — Federal data protection standards
|
|
211
225
|
- [GDPR Full Text (EUR-Lex)](https://eur-lex.europa.eu/eli/reg/2016/679/oj) — Official GDPR regulation
|
|
@@ -1,18 +1,27 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: risk-analysis
|
|
3
|
-
description:
|
|
4
|
-
|
|
3
|
+
description: 'Performs deep clause-by-clause risk scoring across 10 categories with
|
|
4
|
+
|
|
5
5
|
poison pill detection and financial exposure estimation. Use when a user
|
|
6
|
+
|
|
6
7
|
needs to understand the specific risks in a contract before signing.
|
|
8
|
+
|
|
7
9
|
Trigger with "/risk-analysis" or "what are the risks in this contract".
|
|
10
|
+
|
|
11
|
+
'
|
|
8
12
|
allowed-tools: Read, Glob, Grep
|
|
9
13
|
version: 1.0.0
|
|
10
14
|
author: Intent Solutions <jeremy@intentsolutions.io>
|
|
11
15
|
license: MIT
|
|
12
|
-
|
|
13
|
-
|
|
16
|
+
tags:
|
|
17
|
+
- legal
|
|
18
|
+
- contracts
|
|
19
|
+
- risk
|
|
20
|
+
- analysis
|
|
21
|
+
- due-diligence
|
|
22
|
+
- compliance
|
|
23
|
+
compatibility: Designed for Claude Code, also compatible with Codex and OpenClaw
|
|
14
24
|
---
|
|
15
|
-
|
|
16
25
|
# Risk Analysis — Clause-by-Clause Risk Scoring
|
|
17
26
|
|
|
18
27
|
Standalone deep-dive skill that scores every material clause in a contract
|
|
@@ -1,16 +1,25 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: terms-generator
|
|
3
|
-
description:
|
|
4
|
-
|
|
3
|
+
description: 'Generates comprehensive terms of service by analyzing a website or application
|
|
4
|
+
|
|
5
5
|
to detect business type, data collection, and user interactions. Use when launching
|
|
6
|
+
|
|
6
7
|
a website, app, or SaaS product that needs terms of service with GDPR/CCPA compliance.
|
|
8
|
+
|
|
7
9
|
Trigger with "/terms-generator" or "create terms of service for my website".
|
|
10
|
+
|
|
11
|
+
'
|
|
8
12
|
allowed-tools: Read, Write, Glob, Grep, WebFetch
|
|
9
13
|
version: 1.0.0
|
|
10
14
|
author: Intent Solutions <jeremy@intentsolutions.io>
|
|
11
15
|
license: MIT
|
|
12
|
-
|
|
13
|
-
|
|
16
|
+
tags:
|
|
17
|
+
- legal
|
|
18
|
+
- terms-of-service
|
|
19
|
+
- compliance
|
|
20
|
+
- gdpr
|
|
21
|
+
- ccpa
|
|
22
|
+
compatibility: Designed for Claude Code, also compatible with Codex and OpenClaw
|
|
14
23
|
---
|
|
15
24
|
# Terms of Service Generator
|
|
16
25
|
|
|
@@ -166,6 +175,7 @@ Generate a single Markdown file named `TERMS-OF-SERVICE-{company}-{YYYY-MM-DD}.m
|
|
|
166
175
|
Request: "Create terms of service for https://example-saas.com — we're a project management tool"
|
|
167
176
|
|
|
168
177
|
Result: `TERMS-OF-SERVICE-ExampleSaaS-2026-04-02.md` with:
|
|
178
|
+
|
|
169
179
|
- 16 sections with SaaS-specific provisions
|
|
170
180
|
- Payment terms for subscription model (detected via Stripe integration)
|
|
171
181
|
- GDPR provisions (EU users detected via multi-language support)
|
|
@@ -178,6 +188,7 @@ Result: `TERMS-OF-SERVICE-ExampleSaaS-2026-04-02.md` with:
|
|
|
178
188
|
Request: "Generate ToS for my Shopify store selling handmade jewelry"
|
|
179
189
|
|
|
180
190
|
Result: `TERMS-OF-SERVICE-HandmadeJewels-2026-04-02.md` with:
|
|
191
|
+
|
|
181
192
|
- E-commerce focused provisions (returns, shipping, product descriptions)
|
|
182
193
|
- Payment terms referencing Shopify Payments / PayPal
|
|
183
194
|
- No user-generated content section (simplified)
|