oscal-document-workbench-expert

oscal-document-workbench-expert is a skill for Claude Code from oscal-compass-lab/compliance-trestle-skills. It costs 37 tokens per session (517 once invoked), scanned A, original, Apache-2.0.

A workflow for turning older security-plan files, such as PDFs and DOCX documents, into traceable and validated OSCAL workspaces. OSCAL is a standard format for describing cybersecurity controls and system security information.

In plain words
What is it for?
Use it to extract legacy documents, map their content into an OSCAL System Security Plan (SSP), update the plan with reviewed evidence, and validate the resulting files.
Why use it?
It helps preserve where each piece of converted information came from and highlights content that needs review, reducing unsupported or untraceable updates.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Needs its repository: it runs a file that does not travel with it, so clone the repository first. The line is bash plugins/document-transform/oscal-document-workbench/scripts/extract-legacy-doc.sh input/old-ssp.docx --output workspaces/acme/extracted.

Part of the oscal-document-workbench plugin — 1 skill, 8 commands shipped together

Good fit Use it to extract legacy documents, map their content into an OSCAL System Security Plan (SSP), update the plan with reviewed evidence, and validate the resulting files.

Compare 6 skills from other repositories ↓
Install

Getting it into your agent

It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.

Clone the repo
git clone --depth 1 https://github.com/oscal-compass-lab/compliance-trestle-skills
agentmods
npx agentmods add skills/oscal-compass-lab/compliance-trestle-skills/oscal-document-workbench-expert

Made for: Claude Code.

Or install oscal-document-workbench, the plugin that ships this one along with the rest of its 1 skill, 8 commands.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for oscal-document-workbench-expert

README.md
[![agentmods](https://agentmods.dev/badge/skills/oscal-compass-lab/compliance-trestle-skills/oscal-document-workbench-expert/github.svg)](https://agentmods.dev/skills/oscal-compass-lab/compliance-trestle-skills/oscal-document-workbench-expert)
Your own site
<a href="https://agentmods.dev/skills/oscal-compass-lab/compliance-trestle-skills/oscal-document-workbench-expert"><img src="https://agentmods.dev/badge/skills/oscal-compass-lab/compliance-trestle-skills/oscal-document-workbench-expert/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for oscal-document-workbench-expert

Your own site · 80×15
<a href="https://agentmods.dev/skills/oscal-compass-lab/compliance-trestle-skills/oscal-document-workbench-expert"><img src="https://agentmods.dev/badge/skills/oscal-compass-lab/compliance-trestle-skills/oscal-document-workbench-expert.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 37 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 517 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00037 $0.00517
Opus 5 $0.00018 $0.00259
Sonnet 5 $0.00007 $0.00103
Haiku 4.5 $0.00004 $0.00052

Measured 12d ago against content hash 486162b8718b, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

oscal-document-workbench-expert scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 12d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

plugins/document-transform/oscal-document-workbench/skills/oscal-document-workbench-expert/SKILL.md · 44 lines

How it starts

The opening of the file, as written. The whole thing — 44 lines — stays where its author put it; the contents beside it link to each section on GitHub.

oscal-document-workbench-expert

Use this skill when a user wants to modernize legacy compliance documents into OSCAL. Use it also to maintain an OSCAL SSP with agent help.

Required behavior

  1. Keep original source files unchanged.
  2. Make or update a source traceability map.
  3. Map content into OSCAL only when there is source support or an explicit user assertion.
  4. Mark uncertain content as needs_review.
  5. Validate generated OSCAL structurally with available tools.
  6. Make an import summary and an unmapped-items report.

Composition

  • Use agent-skills/oscal-document-engineering/SKILL.md for portable workflow details.
  • Use root Compliance Trestle commands and trestle validate for OSCAL validation and workspace checks.
  • Use official FedRAMP or OSCAL converters outside this repository when source material matches those specialized tools.
  • Use reviewed evidence packages to update control narratives and POA&M content.
  • Preserve source traceability.

Typical sequence

bash plugins/document-transform/oscal-document-workbench/scripts/extract-legacy-doc.sh input/old-ssp.docx --output workspaces/acme/extracted
bash plugins/document-transform/oscal-document-workbench/scripts/bootstrap-trestle-workspace.sh workspaces/acme --profile fedramp-moderate
bash plugins/document-transform/oscal-document-workbench/scripts/fetch-oscal-baseline.sh workspaces/acme/trestle-workspace --baseline moderate
bash plugins/document-transform/oscal-document-workbench/scripts/draft-ssp-from-extraction.sh workspaces/acme --baseline-profile fedramp-rev5-moderate --overwrite
bash plugins/document-transform/oscal-document-workbench/scripts/build-review-queue.sh workspaces/acme/extracted/source-map.csv --output workspaces/acme/reports/review-queue.md
bash plugins/document-transform/oscal-document-workbench/scripts/validate-oscal-package.sh workspaces/acme/trestle-workspace --output workspaces/acme/reports/validation-report.json

Skip baseline fetch and --baseline-profile for offline stub models. Skip the FedRAMP heading-map assumptions for non-FedRAMP sources.

Read the full file on GitHub · 44 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 12d ago First seen · 44 lines · 37 tokens per session scan A 486162b8718b

Subscribe to this mod's changes

oscal-document-workbench-expert is a skill published in the GitHub repository oscal-compass-lab/compliance-trestle-skills (16 stars, last pushed 1mo ago), licensed Apache-2.0. It adds 37 tokens to every session and 517 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

audit-export

Export the full CocoAudit trail as a stakeholder-ready compliance document.

Snowflake-Labs/cocoplus · 15 tokens

akf-trust-metadata-v2

AKF — The AI Native File Format workflow skill. Use this skill when the user needs The AI native file format. EXIF for AI — stamps every file with trust scores, source provenance, and compliance metadata. Embeds into 20+ formats (DOCX, PDF, images, code). EU AI Act, SOX, HIPAA auditing and the operator should preserve…

diegosouzapw/awesome-omni-skills · 100 tokens

court-sms

A workflow that reads court text messages or delivery links, extracts case details, downloads court documents, and files them in the matching case folder.

ThomasMoreAI/legal-skills-open · 54 tokens

chinese-copyright-application

A document-generation toolkit for preparing Chinese software copyright registration materials from a software project’s code and documentation. It supports applications for web apps, mobile apps, desktop software, and WeChat mini programs.

ThomasMoreAI/legal-skills-open · 102 tokens

chinese-copyright-application-okooo5km

A document-generation tool for preparing Chinese software copyright registration materials from a software project. It creates a Markdown application form and LaTeX source files for a source-code document, user manual, and design description.

ThomasMoreAI/legal-skills-open · 179 tokens

nist-800-53

Use when the user asks about NIST SP 800-53 Rev. 5 from an engineering perspective — selecting baselines, tailoring controls, modeling control inheritance from cloud providers and shared services, emitting OSCAL artifacts, or implementing controls in IaC and code rather than running them as a documentation exercise.…

grcwarlock/compliance-as-code · 76 tokens