A configurable, branded PDF skill for CompleteTech LLC Agentic Development Services Agreements.
Part of the CompleteTech LLC agentic services skill library. This skill generates branded agreement artifacts for bounded agentic development services using verified provider, client, project, and governance facts.
- Skill key:
agentic-contract-skill - Version-ready metadata:
1.0.0 - Homepage: https://github.com/CompleteTech-LLC/agentic-contract-skill
- README: https://github.com/CompleteTech-LLC/agentic-contract-skill#readme
- Runtime binaries:
python3 - Python packages:
reportlab>=4.0,jinja2>=3.1 - Intended registry/discovery tags:
latest,complete-tech,codex-skill,agentic-development,agentic-workflows,contract,agreement,pdf-generator - License: repository code, templates, and documentation use MIT; ClawHub publishing is intentionally skipped for now.
- Brand assets: CompleteTech LLC names, logos, seals, and brand assets are reserved; see
BRAND_ASSETS.md.
flowchart LR
A[Provider and client facts] --> B[Config and overrides]
C[Agentic development terms] --> B
B --> D[Agreement template render]
D --> E[Contract PDF]
D --> F[Filled Markdown]
D --> G[Addressed envelope]
classDef source fill:#eef6ff,stroke:#3778c2,color:#102a43;
classDef process fill:#fff7e6,stroke:#c97a12,color:#3d2600;
classDef output fill:#eefaf0,stroke:#2f8f46,color:#12351d;
class A,C source;
class B,D process;
class E,F,G output;
pip install -r requirements.txt
python generate_contract.py --config config.ini \
--out output/agentic_development_contract_demo.pdfThe contract generator creates:
- A PDF contract at the
--outpath. - A filled Markdown source file beside the PDF unless
--markdown-outis provided. - A separate printable #10 envelope PDF unless disabled.
Example files: Markdown · PDF · DOCX · Envelope PDF.
Agreement package: Northwind Trading Co. — Customer Support Email Triage Agent (Pilot)
python generate_contract.py \
--config config.ini examples/northwind_support_triage.ini \
--out assets/examples/example.pdf \
--markdown-out assets/examples/example.md \
--envelope-out assets/examples/example-envelope.pdfExample package (realistic demonstration data):
- Contract:
ADSA-2026-0142, an 8-week, USD 28,000 fixed-fee Agentic Development Services Agreement between CompleteTech LLC and Northwind Trading Co. - System: bounded customer support email-triage agent — classify, draft, and route inbound support email.
- Governance: human approval required before any customer-facing send; sandbox-only until acceptance.
- Delivery inputs: approved service summary, evaluation plan, monitoring plan, excluded uses, fee, and payment terms.
- Packaging handoff: use
agentic-envelope-skillfor final recipient metadata, attachment manifest, and delivery-readiness review.
Pass multiple INI files; later files override earlier files:
python generate_contract.py \
--config config.ini examples/minimum_client_override.ini \
--out output/acme_contract.pdf \
--envelope-out output/acme_envelope.pdfSkip the envelope for one run:
python generate_contract.py --config config.ini --out output/no_envelope_contract.pdf --no-envelopeassets/logo.png- CompleteTech LLC primary logo, used on contract cover and letterhead.
In [branding]:
watermark_enabled = yes
watermark_text = DEMO DRAFT
cover_page_enabled = yes
letterhead_enabled = yes
header_enabled = yes
footer_enabled = yes
envelope_enabled = yesThe contract template is a demonstration template, not legal advice. Replace it with counsel-reviewed terms before any real engagement.
Code, templates, and documentation are licensed under the MIT License. CompleteTech LLC names, logos, seals, and brand assets are reserved and are not licensed for reuse except to identify this project. See LICENSE and BRAND_ASSETS.md.

