Ontology Long-lived Integration Via ACIMOV Workflow
An Agile methodology for ontology development named ACIMOV has been proposed in 2023.
This methodology is an extension of SAMOD with some improvements, including:
- the possibility to develop modular ontologies
- ensuring alignment to selected reference ontologies
- a wider collaboration between product owners, domain experts and ontology developers
This repository is a python library meant for providing tools in an Acimov ontology development context.
Olivaw proposes:
- command lines that make an Acimov development easier
- composite actions that can directly be called in workflows from any Acimov project
- a pre-commit hook that should prevent the biggest mistakes that could be pushed in an Acimov repository
The test reports are first represented using the EARL vocabulary and then exported in the markdown format.
Examples of reports generated from existing ontology projects can be found in the olivaw reports examples folder.
A template repository also exist in order for an ontology project to begin with the accurate repository architecture, workflows, template special files (primee, code of conduct, contributing, etc) so check the acimov olivaw repository template.
In order to get all the available features in olivaw, check the olivaw functional documentation.
Moreover the project, from the project structure itself to the details about any module, function and constants, is documented, so check the olivaw technical documentation.
Olivaw proposes different test tools all powered by Corese, check Corese website and Corese repository.
Olivaw is affiliated to the Wimmics reasearch team, check the other Wimmics projects.
If a bug is to be found or a feature to be proposed, please use olivaw issue menu.
Olivaw needs python 3.10 or greater and java version 11 or greater.
Using a virtual environment would be a good idea, check anaconda navigator or equivalent such as miniconda or venv.
First prepare a python environment version 3.10 or greater (3.11 if pre-commit hook is meant to be used).
Then install the library from pipy:
pip install olivaw==0.0.5
It can also be installed using this command:
pip install git+https://github.com/Wimmics/[email protected]
This tool is meant to work on an Acimov structured repository.
The acimov olivaw repository template can be used to create a new project or be used to adapt an existing project to this structure.
This repository contains:
- the folders:
.acimov/
resources/
primer/
src/
domains/
use-cases/
- a
README.md
file at the root folder
This framework proposes automatically updated badges at the top of the README.md on each branch.
To make this work a personnal access token with the gist
scope is required.
- First go to the Github access token generation webpage.
- Then create a personnal access token with only the
gist
scope. Copy/paste this token somewhere because it will never be shown again. - Then go to
{repository_url}/settings/secrets/actions
, create a new repository secret namedGIST_SECRET
and paste the key
Finally this library needs a parameters.json
file in the .acimov/
folder that should contain parameters related to the repository.
Use this command to generate one:
olivaw init repo
Just follow the instructions (the personnal access token with gist
scope will be asked again).
After the execution of the command file named parameters.json
in the .acimov/
folder should have appeared and also badges added to the top of the repository README.md
file with an initialized gist on gist website.
These parameters can eventually be customized using the olivaw parameters documentation.
The olivaw commands are now available inside the repository!
There are three usages of olivaw that are complementary:
- the command line allows the developper to run tests on client side on demand and provides tools for everyday development
- the actions can regularly make a health check of a branch on server side and manage the project badges
- the pre-commit hook can test on client side a commit and block it if a blocking error is to be found in the staged files
Here is only a short overview of the main commands. Check the olivaw command line documentation for more details about the available commands.
Anywhere in the repository use this command to launch a model test:
olivaw test model
This command is for launching data test
olivaw test data
This command is for launching query test
olivaw test query
Here is an overview of the actions available. For more details see the olivaw Github Actions documentation.
Each actions of this chapter involve to create a .yaml
file located in {repository_path}/.github/workflows/
.
In ./github/worflows/
folder, add a test.yaml
file containing this:
name: test
on: push
jobs:
test:
permissions:
contents: write
runs-on: ubuntu-latest
steps:
- uses: Wimmics/olivaw/[email protected]
with:
repository: ${{ github.repository }}
ref: ${{ github.ref }}
gist-secret: ${{ secrets.GIST_SECRET }}
Then, after each push on the repository an actions will be triggered and after some time, in the .acimov/output/
folder should have appeared:
- RDF files written in the turtle format representing the result of the test, written with the EARL vocabulary
- markdown files representing in a human readable way the previous turtle files
In ./github/worflows/
folder, add a init-branch.yaml
file containing this:
name: init-branch
on: create
jobs:
model-test:
permissions:
contents: write
runs-on: ubuntu-latest
steps:
- uses: Wimmics/olivaw/[email protected]
with:
repository: ${{ github.repository }}
ref: ${{ github.ref }}
gist-secret: ${{ secrets.GIST_SECRET }}
Then on each time a branch is published, the actions should create new gists and update the badges in the README.md without anything left to do for the developper.
Pre-commit is a framework that allows on client side to connect programs to git events such as commit, push, merge, etc.
A pre-commit hook is available in this repository to prevent the developper to push big mistakes on the server.
To use it should need first need to install pre-commit. Create a fresh new python 3.11 environment for the tool to work properly.
Once the new environment set, install pre-commit with this command:
pip install pre-commit
Then add a file named .pre-commit-config.yaml
at the root of the repository containing this:
default_language_version:
python: python3
repos:
- repo: https://github.com/Wimmics/olivaw
rev: v0.0.5
hooks:
- id: olivaw-test
Then use this command at the root of the repository:
pre-commit install
Finally add the .pre-commit-config.yaml
file to the commit:
git add .pre-commit-config.yaml
Now, each time a commit is made, the staged files will be tested and the commit will be blocked if any blocking error is to be found in any of those files.
The test takes a few seconds and pre-commit needs a moment to prepare the hook on the very first use.
There is also the olivaw pre-commit hook documentation.
This repository is one result of the hMAS ontology project and therefore a part of HyperAgents ANR/SNF project. Check the contributors file of the project.
Please cite as the GitHub repository metadata proposes and/or check the citation file.
Don't hesitate to report an issue or make a pull request at will.