/create-contract - Enterprise Contract Generation
SkillDev toolsGenerate a customer-specific enterprise service agreement by filling in the standard template with deal details.
Available today. Use it from your connected AI after setup.
No other account needed.
Connect ahel once, and every AI you use reads what you have installed.
Then ask your AI: use the /create-contract - Enterprise Contract Generation skill
What this skill tells your AI
The instructions your AI receives, as published by getnao/sylph in .claude/skills/create-contract/SKILL.md and read by ahel’s review.
MCP connectors
None required. This skill operates on local repo files only.
Generate a customer-specific Enterprise Service Agreement by filling in the standard template with deal-specific details.
Architecture: The template lives in legal/templates/:
enterprise-service-agreement.md- source of truth (readable, diffable)generate-docx.js- Node.js script that produces a formatted.docxfrom the template (npm install docx && node generate-docx.js)
Customer-specific contracts are generated locally and never committed to git.
Important: This produces a draft contract. All contracts must be reviewed by qualified legal counsel before signing.
Invocation
/create-contract <proposal file or deal details>
Workflow
Step 1: Collect Deal-Specific Fields
The template uses [TO COMPLETE] placeholders for all customer-specific information. Collect these from the user's input (proposal, CRM record, or conversation):
Customer details:
- Customer legal name
- Jurisdiction and corporate form
- Principal place of business address
- Registry and registration number (if applicable)
- Signatory name and title
Commercial terms:
- Enterprise license fee (annual, USD)
- Implementation services fee (one-time, USD)
- Year 1 total
- Renewal fee after Year 1
- Number of implementation days
- Number of follow-up months
- Initial term length (months)
Scope:
- Number of tables in initial scope
- Data sources
- Billing contact email
- Technical contacts
If details are missing, prompt the user. For unknown legal entity details, use [TO COMPLETE] placeholders and flag them.
Step 2: Generate the Customer Contract
- Read the template from
legal/templates/enterprise-service-agreement.md - Fill in all
[TO COMPLETE]placeholders with the actual deal values - Save the filled contract to
legal/_drafts/YYYY-MM-DD_<customer-slug>-enterprise-contract.md
Step 3: Generate the formatted .docx
- Run the docx generator to produce a formatted Word document:
cd legal/templates && node generate-docx.js - The generator reads the same template and produces
enterprise-service-agreement.docxwith proper formatting (headers, footers, logo, tables, page breaks) - Move the generated docx to the drafts folder:
mv legal/templates/enterprise-service-agreement.docx legal/_drafts/YYYY-MM-DD_<customer-slug>-enterprise-contract.docx
Step 4: Review Checklist
Before handing off, verify:
- All
[TO COMPLETE]placeholders have been filled - Pricing matches the proposal exactly
- Term and renewal terms are correct
- Scope of services matches what was proposed
- Implementation deliverables are listed
- Customer legal name and address are correct
Step 5: Summary
Output a deal summary:
- Parties and key contacts
- Total contract value (Year 1 and recurring)
- Key terms (term length, implementation scope)
- Files generated and their locations
- Next steps: legal review, then send for signature
Notes
- Never fabricate customer legal entity details - use
[TO COMPLETE] - Customer-specific files go in
legal/_drafts/and are gitignored
Self-improvement
After the CAO reviews and approves a contract:
- Move the final contract from
legal/_drafts/tolegal/_published/ - Diff what was drafted vs what the CAO (or legal counsel) changed - identify patterns in clause edits
- Update
legal/_insights.mdwith what was changed and why (e.g. "removed auto-renewal for this deal type", "added data residency clause for EU clients") - If the edits reveal a recurring pattern, update
legal/templates/enterprise-service-agreement.mdto reflect the new standard position - If a contract structure works particularly well for a deal type, save it to
legal/_examples/as a reference
Signals
- GitHub stars
- 196
- Forks
- 58
- Last commit
- May 2026
Advanced
- Catalog kind
- skill
- Gateway key
create-contract- Source
- github.com/getnao/sylph