A OpenCMIS TCK harness to assess CMIS Standard conformity.
Find a file
2026-05-07 11:56:14 +02:00
docs first working guide-board architecture core 2026-05-07 11:56:14 +02:00
extensions first working guide-board architecture core 2026-05-07 11:56:14 +02:00
profiles first working guide-board architecture core 2026-05-07 11:56:14 +02:00
src/guide_board first working guide-board architecture core 2026-05-07 11:56:14 +02:00
tests first working guide-board architecture core 2026-05-07 11:56:14 +02:00
workplans first working guide-board architecture core 2026-05-07 11:56:14 +02:00
.custodian-brief.md chore(consistency): sync task status from DB [auto] 2026-05-07 11:13:28 +02:00
.gitignore core architecture blueprint 2026-05-07 10:53:53 +02:00
INTENT.md core architecture blueprint 2026-05-07 10:53:53 +02:00
LICENSE Initial commit 2026-05-07 06:02:53 +00:00
pyproject.toml first working guide-board architecture core 2026-05-07 11:56:14 +02:00
README.md first working guide-board architecture core 2026-05-07 11:56:14 +02:00

guide-board

guide-board is a certification and compliance preparation framework. It turns standards, conformance, regulatory, and repository-quality claims into structured evidence that can be reviewed, repeated, compared, and used during assessments.

The root project owns the framework contracts. Domain-specific work lives in extensions.

Local Baseline

The first core is intentionally dependency-light. From a clean checkout:

PYTHONPATH=src python3 -m guide_board extensions list
PYTHONPATH=src python3 -m guide_board extensions validate
PYTHONPATH=src python3 -m guide_board profile validate-target profiles/targets/sample-repository.json
PYTHONPATH=src python3 -m guide_board profile validate-assessment profiles/assessments/sample-noop.json
PYTHONPATH=src python3 -m guide_board plan \
  --target profiles/targets/sample-repository.json \
  --assessment profiles/assessments/sample-noop.json
PYTHONPATH=src python3 -m guide_board run \
  --target profiles/targets/sample-repository.json \
  --assessment profiles/assessments/sample-noop.json
PYTHONPATH=src python3 -m unittest discover -s tests

The sample-noop extension exercises the guide-board contracts without invoking an external harness. open-cmis-tck is the first real seed extension.

See: