{"id":13708087,"url":"https://github.com/accordproject/template-archive","last_synced_at":"2026-03-07T23:06:31.936Z","repository":{"id":26566573,"uuid":"109222968","full_name":"accordproject/template-archive","owner":"accordproject","description":"Smart Legal Contracts \u0026 Templating System","archived":false,"fork":false,"pushed_at":"2025-03-29T11:20:01.000Z","size":10264,"stargazers_count":294,"open_issues_count":77,"forks_count":128,"subscribers_count":21,"default_branch":"main","last_synced_at":"2025-05-15T21:07:35.080Z","etag":null,"topics":["accord-project","blockchain","cicero","cicero-engine","clause","contracts","corda","digital-asset","ethereum","hyperledger","legal","legal-templates","legaltech","parse","smartcontracts","templates","tezos"],"latest_commit_sha":null,"homepage":"https://accordproject.org/projects/cicero/","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/accordproject.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2017-11-02T05:49:45.000Z","updated_at":"2025-05-14T13:33:14.000Z","dependencies_parsed_at":"2023-09-04T03:13:23.289Z","dependency_job_id":"50aa86ea-857e-4036-a6a4-8a8d3767d9f6","html_url":"https://github.com/accordproject/template-archive","commit_stats":{"total_commits":997,"total_committers":36,"mean_commits":"27.694444444444443","dds":0.6519558676028084,"last_synced_commit":"ddd4df439856a96da574f43829cd60d257540c8a"},"previous_names":["accordproject/cicero"],"tags_count":151,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/accordproject%2Ftemplate-archive","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/accordproject%2Ftemplate-archive/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/accordproject%2Ftemplate-archive/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/accordproject%2Ftemplate-archive/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/accordproject","download_url":"https://codeload.github.com/accordproject/template-archive/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":254422798,"owners_count":22068681,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["accord-project","blockchain","cicero","cicero-engine","clause","contracts","corda","digital-asset","ethereum","hyperledger","legal","legal-templates","legaltech","parse","smartcontracts","templates","tezos"],"created_at":"2024-08-02T22:01:55.668Z","updated_at":"2026-03-07T23:06:31.867Z","avatar_url":"https://github.com/accordproject.png","language":"JavaScript","funding_links":[],"categories":["JavaScript","Document Automation \u0026 Drafting"],"sub_categories":["Commercial AI Research Platforms"],"readme":"\u003cp align=\"center\"\u003e\n  \u003ca href=\"https://www.accordproject.org/projects/cicero\"\u003e\n    \u003cimg src=\"./cicero.png\" alt=\"Cicero logo\"\u003e\n  \u003c/a\u003e\n\u003c/p\u003e\n\n\u003cp align=\"center\"\u003e\n  \u003ca href=\"./LICENSE\"\u003e\u003cimg src=\"https://img.shields.io/github/license/accordproject/cicero?color=bright-green\" alt=\"GitHub license\"\u003e\u003c/a\u003e\n  \u003ca href=\"https://badge.fury.io/js/%40accordproject%2Fcicero-cli\"\u003e\u003cimg src=\"https://badge.fury.io/js/%40accordproject%2Fcicero-cli.svg\" alt=\"npm version\"\u003e\u003c/a\u003e\n  \u003ca href=\"https://accord-project-slack-signup.herokuapp.com/\"\u003e\n    \u003cimg src=\"https://img.shields.io/badge/Accord%20Project-Join%20Slack-blue\" alt=\"Join the Accord Project Slack\"/\u003e\n  \u003c/a\u003e\n\u003c/p\u003e\n\n## Introduction\n\nCicero 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.\n\nYou can browse the library of Open Source Cicero contract and clause templates at: https://templates.accordproject.org.\n\nCicero 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.\n\nYou can read the latest user documentation here: http://docs.accordproject.org.\n\n## Clause Templates\n\nUsing 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.\n\n## Structure of the Code Repository\n\nTop level repository (cicero), with sub packages. Each sub-package is published as an independent npm module managed as npm packages:\n* [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\n* [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\n* [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\n\n## Installation\n\nTo install the command-line interface:\n\n```\nnpm install -g @accordproject/cicero-cli\n```\n\n---\n\n\u003cp align=\"center\"\u003e\n  \u003ca href=\"https://www.accordproject.org/\"\u003e\n    \u003cimg src=\"assets/APLogo.png\" alt=\"Accord Project Logo\" width=\"400\" /\u003e\n  \u003c/a\u003e\n\u003c/p\u003e\n\n\u003cp align=\"center\"\u003e\n  \u003ca href=\"./LICENSE\"\u003e\n    \u003cimg src=\"https://img.shields.io/github/license/accordproject/cicero?color=bright-green\" alt=\"GitHub license\"\u003e\n  \u003c/a\u003e\n  \u003ca href=\"https://accord-project-slack-signup.herokuapp.com/\"\u003e\n    \u003cimg src=\"https://img.shields.io/badge/Accord%20Project-Join%20Slack-blue\" alt=\"Join the Accord Project Slack\"/\u003e\n  \u003c/a\u003e\n\u003c/p\u003e\n\nAccord 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].\n\n## Learn More About Accord Project\n\n### [Overview][apmain]\n\n### [Documentation][apdoc]\n\n## Contributing\n\nThe 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.\n\nFind out what’s coming on our [blog][apblog].\n\nJoin the Accord Project Technology Working Group [Discord channel][apdiscord] to get involved!\n\nFor code contributions, read our [CONTRIBUTING guide][contributing] and information for [DEVELOPERS][developers].\n\n### README Badge\n\nUsing 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/)\n\n```\n[![accord project](https://img.shields.io/badge/powered%20by-accord%20project-19C6C8.svg)](https://www.accordproject.org/)\n```\n\n## License \u003ca name=\"license\"\u003e\u003c/a\u003e\n\nAccord Project source code files are made available under the [Apache License, Version 2.0][apache].\nAccord Project documentation files are made available under the [Creative Commons Attribution 4.0 International License][creativecommons] (CC-BY-4.0).\n\nCopyright 2018-2019 Clause, Inc. All trademarks are the property of their respective owners. See [LF Projects Trademark Policy](https://lfprojects.org/policies/trademark-policy/).\n\n[linuxfound]: https://www.linuxfoundation.org\n[charter]: https://github.com/accordproject/governance/blob/master/accord-project-technical-charter.md\n[apmain]: https://accordproject.org/\n[apblog]: https://medium.com/@accordhq\n[apdoc]: https://docs.accordproject.org/\n[apdiscord]: https://discord.com/invite/Zm99SKhhtA\n\n[contributing]: https://github.com/accordproject/cicero/blob/master/CONTRIBUTING.md\n[developers]: https://github.com/accordproject/cicero/blob/master/DEVELOPERS.md\n\n[apache]: https://github.com/accordproject/cicero/blob/master/LICENSE\n[creativecommons]: http://creativecommons.org/licenses/by/4.0/\n\n[apspec]: https://docs.accordproject.org/docs/accordproject-template.html\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faccordproject%2Ftemplate-archive","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Faccordproject%2Ftemplate-archive","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faccordproject%2Ftemplate-archive/lists"}