#polkadot #reports #automate #schema #on-chain #rendering #evidence

bin+lib collective

A CLI to automate work around Polkadot collective work reports

4 releases (2 breaking)

new 0.4.0 Apr 24, 2024
0.2.0 Apr 9, 2024
0.1.1 Feb 18, 2024
0.1.0 Feb 18, 2024

#1993 in Magic Beans

Download history 187/week @ 2024-02-14 65/week @ 2024-02-21 20/week @ 2024-02-28 2/week @ 2024-03-06 3/week @ 2024-03-13 8/week @ 2024-03-27 81/week @ 2024-04-03 49/week @ 2024-04-10

138 downloads per month

GPL-3.0-only

560KB
2K SLoC

Collective Evidence Reports

Provides a way to create evidence reports for Polkadot On-Chain collectives. Reports are machine readable and can be rendered. This is just a proposed format - it is not required to do it this way.

The rendered HTML/PDF output of a work-evidence can look like this:

Example

Or a Request for Admission to a Collective:

Example

Creating Evidence - Manually

The main part of this repository is the schema file. It provides a guideline to what information should be provided in a work report for a System Collective.

The most straight-forward way is to copy the template and fill it out manually. Thats it, no CLI needed! Although without editor support and validation it will be difficult.

If you want editor support and auto-complete for the fields, then you can download the schema file and configure it in your editor. Its explained for VsCode below.
There is a validate evidence subcommand available to check that the evidence files conform to the schema.

VS Code Schema Integration

Open your settings.json file and insert the following, or extend this section. You need to replace the path with the path of the schema. This is just an example:

"yaml.schemas": {
	"/Users/oliver/Documents/work/collective-cli/schema/evidence_report.json": "*.evidence",
},
 "files.associations": {
	"*.evidence": "yaml",
},

Creating Evidence - Interactive

You can install the CLI like this:

cargo install --git https://github.com/super-collective/collective-cli

Running collective new evidence will prompt you with a few basic questions. These will be stored in a config file and are available on the next run.

Rendering Evidence

The CLI can convert .evidence files into HTML. It is also possible to further convert the HTML files into PDF with:

# https://github.com/michaelrsweet/htmldoc
htmldoc --webpage -f example/example.pdf example/example.html
# https://github.com/ilaborie/html2pdf
html2pdf example/example.html

Creating a Request for Admission - Interactive

There is a new join-request subcommand that you can use to create a request for admission. It is also possible to fill out the adapt the example file manually. Currently there is no schema for this, so the only way to validate it is with check join-request --files ...

asciicast

This should create a file in the join_request/ directory of your collective. You can also render this into html with render join-request ...

TODO

  • Add schema for join_request.
  • Add e2e tests. First attempt with this did not work for interactive CLI, see tests.

License

GPL-3.0-only, see LICENSE.

Dependencies

~19–32MB
~561K SLoC