Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/accordproject/template-archive
Smart Legal Contracts & Templating System
https://github.com/accordproject/template-archive
accord-project blockchain cicero cicero-engine clause contracts corda digital-asset ethereum hyperledger legal legal-templates legaltech parse smartcontracts templates tezos
Last synced: 3 days ago
JSON representation
Smart Legal Contracts & Templating System
- Host: GitHub
- URL: https://github.com/accordproject/template-archive
- Owner: accordproject
- License: apache-2.0
- Created: 2017-11-02T05:49:45.000Z (about 7 years ago)
- Default Branch: main
- Last Pushed: 2024-01-11T03:04:29.000Z (10 months ago)
- Last Synced: 2024-11-06T05:53:07.042Z (4 days ago)
- Topics: accord-project, blockchain, cicero, cicero-engine, clause, contracts, corda, digital-asset, ethereum, hyperledger, legal, legal-templates, legaltech, parse, smartcontracts, templates, tezos
- Language: JavaScript
- Homepage: https://accordproject.org/projects/cicero/
- Size: 10.2 MB
- Stars: 281
- Watchers: 23
- Forks: 119
- Open Issues: 87
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
- jimsghstars - accordproject/template-archive - Smart Legal Contracts & Templating System (JavaScript)
README
## Introduction
Cicero allows you to define natural language contract and clause templates that can be executed by a computer. These could be relatively simple things like `if the goods are more than {{DAYS}} late, then notify the supplier of the goods, with the message {{MESSAGE}}.` or more elaborate natural language and logic such as computing interest on a loan, or calculating penalties based on IoT sensor readings.
You can browse the library of Open Source Cicero contract and clause templates at: https://templates.accordproject.org.
Cicero is an Open Source implementation of the [Accord Project Template Specification][apspec]. It defines the structure of natural language templates, bound to a data model, that can be executed using request/response JSON messages.
You can read the latest user documentation here: http://docs.accordproject.org.
## Clause Templates
Using Cicero you can take any existing natural language text (typically a clause or a contract) and declaratively bind it to a data model. Cicero generates a parser to parse and validate source text, extracting machine readable/computable data. The Cicero engine can then be used to execute a clause (an instance of a template) against a JSON payload. Accord Project templates can be used to add computable functionality to any document.
## Structure of the Code Repository
Top level repository (cicero), with sub packages. Each sub-package is published as an independent npm module managed as npm packages:
* [cicero-cli](https://github.com/accordproject/cicero/tree/master/packages/cicero-cli) : Command line interface (for parsing, execution, creating archives) for Accord Project legal templates
* [cicero-core](https://github.com/accordproject/cicero/tree/master/packages/cicero-core) : Core classes to manage the grammar, models and logic of Accord Project legal templates
* [cicero-tools](https://github.com/accordproject/cicero/tree/master/packages/cicero-tools) : Tools for generating code (UML, Java, etc.) from Accord Project legal templates
* [generator-cicero-template](https://github.com/accordproject/cicero/tree/master/packages/generator-cicero-template): Utility to create a self-contained directory for a new Accord Project legal template## Installation
To install the command-line interface:
```
npm install -g @accordproject/cicero-cli
```---
Accord Project is an open source, non-profit, initiative working to transform contract management and contract automation by digitizing contracts. Accord Project operates under the umbrella of the [Linux Foundation][linuxfound]. The technical charter for the Accord Project can be found [here][charter].
## Learn More About Accord Project
### [Overview][apmain]
### [Documentation][apdoc]
## Contributing
The Accord Project technology is being developed as open source. All the software packages are being actively maintained on GitHub and we encourage organizations and individuals to contribute requirements, documentation, issues, new templates, and code.
Find out what’s coming on our [blog][apblog].
Join the Accord Project Technology Working Group [Discord channel][apdiscord] to get involved!
For code contributions, read our [CONTRIBUTING guide][contributing] and information for [DEVELOPERS][developers].
### README Badge
Using Accord Project? Add a README badge to let everyone know: [![accord project](https://img.shields.io/badge/powered%20by-accord%20project-19C6C8.svg)](https://www.accordproject.org/)
```
[![accord project](https://img.shields.io/badge/powered%20by-accord%20project-19C6C8.svg)](https://www.accordproject.org/)
```Accord Project source code files are made available under the [Apache License, Version 2.0][apache].
Accord Project documentation files are made available under the [Creative Commons Attribution 4.0 International License][creativecommons] (CC-BY-4.0).Copyright 2018-2019 Clause, Inc. All trademarks are the property of their respective owners. See [LF Projects Trademark Policy](https://lfprojects.org/policies/trademark-policy/).
[linuxfound]: https://www.linuxfoundation.org
[charter]: https://github.com/accordproject/governance/blob/master/accord-project-technical-charter.md
[apmain]: https://accordproject.org/
[apblog]: https://medium.com/@accordhq
[apdoc]: https://docs.accordproject.org/
[apdiscord]: https://discord.com/invite/Zm99SKhhtA[contributing]: https://github.com/accordproject/cicero/blob/master/CONTRIBUTING.md
[developers]: https://github.com/accordproject/cicero/blob/master/DEVELOPERS.md[apache]: https://github.com/accordproject/cicero/blob/master/LICENSE
[creativecommons]: http://creativecommons.org/licenses/by/4.0/[apspec]: https://docs.accordproject.org/docs/accordproject-template.html