Help us improve
Share bugs, ideas, or general feedback.
From compliance-trestle
Explains OSCAL assessment plans (SAP) and results (SAR) models in Compliance Trestle, including key components, fields, JSON structures, and workspace locations for security assessments.
npx claudepluginhub ethanolivertroy/compliance-trestle-skills --plugin compliance-trestleHow this skill is triggered — by the user, by Claude, or both
Slash command
/compliance-trestle:trestle-assessmentThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
OSCAL defines two assessment-related models:
Guides OSCAL document selection (SSP, Profile, AR, POA&M), authoring, validation error fixes, schema versioning, and integrations with FedRAMP, eMASS, Compliance Trestle.
Provides senior GRC analyst expertise across 15 frameworks including NIST 800-53, FedRAMP, FISMA, CMMC, SOC 2, ISO 27001. Supports control lookups, cross-mapping, document review, audit prep, compliance workflows.
Guides conversion of FedRAMP Rev 5 DOCX SSP templates to OSCAL 1.2.0 JSON, covering metadata, system characteristics, inventory, and control implementations. Use after filling templates for machine-readable compliance outputs.
Share bugs, ideas, or general feedback.
OSCAL defines two assessment-related models:
Defines what will be assessed, how, when, and by whom. Corresponds to a Security Assessment Plan in FedRAMP/NIST terminology.
{
"assessment-plan": {
"uuid": "...",
"metadata": { "title": "...", "version": "..." },
"import-ssp": { "href": "#..." },
"local-definitions": {
"activities": [],
"objectives-and-methods": []
},
"reviewed-controls": {
"control-selections": [
{ "include-controls": [{ "control-id": "ac-1" }] }
]
},
"assessment-subjects": [],
"assessment-assets": {
"assessment-platforms": []
},
"tasks": []
}
}
| Field | Purpose |
|---|---|
import-ssp | References the SSP being assessed |
reviewed-controls | Controls in scope for this assessment |
assessment-subjects | Systems, components, or inventories being assessed |
assessment-assets | Tools and platforms used for assessment |
tasks | Scheduled assessment activities |
local-definitions.activities | Assessment activities and their steps |
local-definitions.objectives-and-methods | Assessment objectives tied to controls |
assessment-plans/
└── my-assessment/
└── assessment-plan.json
Documents the outcomes of a security assessment, including findings, observations, and risk determinations.
{
"assessment-results": {
"uuid": "...",
"metadata": { "title": "...", "version": "..." },
"import-ap": { "href": "#..." },
"results": [
{
"uuid": "...",
"title": "Assessment Round 1",
"start": "2024-01-15T00:00:00Z",
"end": "2024-01-30T00:00:00Z",
"reviewed-controls": {},
"findings": [],
"observations": [],
"risks": []
}
]
}
}
| Field | Purpose |
|---|---|
import-ap | References the assessment plan |
results | One or more assessment result sets |
results[].findings | Individual assessment findings per control |
results[].observations | Evidence and observations collected |
results[].risks | Identified risks with severity |
results[].attestations | Assessor attestation statements |
{
"uuid": "...",
"title": "AC-1 Finding",
"description": "...",
"target": {
"type": "objective-id",
"target-id": "ac-1",
"status": { "state": "not-satisfied" }
},
"related-observations": [{ "observation-uuid": "..." }],
"related-risks": [{ "risk-uuid": "..." }]
}
| State | Meaning |
|---|---|
satisfied | Control objective is met |
not-satisfied | Control objective is not met (generates POA&M entry) |
assessment-results/
└── my-assessment-results/
└── assessment-results.json
trestle import -f assessment-plan.json -o my-assessment
trestle import -f assessment-results.json -o my-results
trestle validate -t assessment-plan -n my-assessment
trestle validate -t assessment-results -n my-results
Assessment models support split/merge like other OSCAL models:
trestle split -t assessment-results -n my-results -e 'assessment-results.results'
trestle merge -t assessment-results -n my-results -e 'results'
Catalog → Profile → SSP → Assessment Plan → Assessment Results → POA&M
import-sspimport-apAssessment models do not have trestle author generate/assemble commands. Unlike catalogs, profiles, component definitions, and SSPs, assessment plans and assessment results use a JSON-based workflow:
create → split → edit JSON → merge → validate
Direct JSON editing via the split/merge cycle is the correct approach for these models.