first working guide-board architecture core
This commit is contained in:
parent
360236ff71
commit
be3ab87c6a
34 changed files with 1536 additions and 2 deletions
14
extensions/sample-noop/INTENT.md
Normal file
14
extensions/sample-noop/INTENT.md
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
# INTENT
|
||||
|
||||
## Extension Name
|
||||
|
||||
`sample-noop`
|
||||
|
||||
## Purpose
|
||||
|
||||
`sample-noop` is a tiny guide-board extension used to prove that the core can
|
||||
discover extensions, validate profiles, and build run plans without depending on
|
||||
CMIS or any external test harness.
|
||||
|
||||
It should stay boring. Its job is to exercise the guide-board contracts before
|
||||
real extension adapters add domain-specific runners and normalizers.
|
||||
36
extensions/sample-noop/extension.json
Normal file
36
extensions/sample-noop/extension.json
Normal file
|
|
@ -0,0 +1,36 @@
|
|||
{
|
||||
"id": "sample-noop",
|
||||
"name": "Sample No-Op Extension",
|
||||
"version": "0.1.0",
|
||||
"extension_type": "procedural_evidence",
|
||||
"lifecycle_status": "incubating",
|
||||
"supported_frameworks": [
|
||||
"guide-board.sample-readiness.v0"
|
||||
],
|
||||
"authorities": [
|
||||
"guide-board"
|
||||
],
|
||||
"profile_schemas": [
|
||||
"target-profile",
|
||||
"assessment-profile"
|
||||
],
|
||||
"check_groups": [
|
||||
{
|
||||
"id": "profile-shape",
|
||||
"name": "Profile Shape",
|
||||
"check_type": "manual",
|
||||
"requirement_refs": [
|
||||
"guide-board.sample-readiness.v0.profile-shape"
|
||||
],
|
||||
"runner_ref": null
|
||||
}
|
||||
],
|
||||
"preflight_runner": null,
|
||||
"runner_entrypoints": [],
|
||||
"normalizers": [],
|
||||
"mappings": [],
|
||||
"report_fragments": [],
|
||||
"dependencies": [],
|
||||
"restricted_assets": [],
|
||||
"certification_boundary": "Development-only sample extension. It produces no certification or compliance conclusion."
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue