Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sanketshevkar/cicero-mirror
Mirror repo for my fork of cicero. (GSOC 2021 - Accord Project)
https://github.com/sanketshevkar/cicero-mirror
Last synced: about 1 month ago
JSON representation
Mirror repo for my fork of cicero. (GSOC 2021 - Accord Project)
- Host: GitHub
- URL: https://github.com/sanketshevkar/cicero-mirror
- Owner: sanketshevkar
- License: apache-2.0
- Created: 2021-04-13T04:16:28.000Z (almost 4 years ago)
- Default Branch: gsoc-demo
- Last Pushed: 2021-04-18T09:37:18.000Z (almost 4 years ago)
- Last Synced: 2024-11-07T08:51:03.615Z (3 months ago)
- Language: JavaScript
- Size: 7.45 MB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
# This is a mirror repo of the fork for cicero. This is a part of my GSOC 2021 proposal. To see the changes made to this repo in action, visit [this repository](https://github.com/sanketshevkar/TemplateContractSigning). You can view the latest commits on this mirror repo to see the changes made to add template signing as well as contract signing features. Also, the proposal gives a deailed explanation for these changes made.
## 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 using `lerna`:
* [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-engine](https://github.com/accordproject/cicero/tree/master/packages/cicero-engine) : A Node.js VM based execution engine for Accord Project legal templates
* [cicero-server](https://github.com/accordproject/cicero/tree/master/packages/cicero-server): Exposes the Cicero Engine as a RESTful service
* [cicero-test](https://github.com/accordproject/cicero/tree/master/packages/cicero-test) : Cucumber based testing for 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 [Slack channel][apslack] 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/
[apslack]: https://accord-project-slack-signup.herokuapp.com[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