# Cui Marker

> Detect, classify, and mark Controlled Unclassified Information (CUI) per 32 CFR Part 2002. Scans documents and ArangoDB collections for CUI indicators, applies proper markings, and tracks CUI flow through the system.

- Skill: `majiayu000/cui-marker` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds add majiayu000/cui-marker`
- Raw SKILL.md: https://api.skillmd.com/api/skills/majiayu000/cui-marker/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Security
- Author: majiayu000 (https://skillmd.com/u/majiayu000)
- Updated: 2026-09-09
- Page: https://skillmd.com/skills/majiayu000/cui-marker

---


# CUI Marker

Detect, classify, and mark Controlled Unclassified Information per 32 CFR Part 2002.
Without this skill, CUI documents enter uncontrolled ArangoDB collections with no
marking, no distribution controls, and no audit trail — a compliance failure.

## Commands

| Command | Description |
|---------|-------------|
| `./run.sh scan <path>` | Scan file/directory for CUI indicators |
| `./run.sh scan --collection <name>` | Scan ArangoDB collection for unmarked CUI |
| `./run.sh mark <doc_id> --category <cat>` | Apply CUI marking to document |
| `./run.sh mark <doc_id> --auto` | Auto-detect and apply appropriate marking |
| `./run.sh verify <doc_id>` | Verify document has proper CUI markings |
| `./run.sh categories` | List CUI categories and subcategories |
| `./run.sh report` | Generate CUI inventory report |
| `./run.sh flow <doc_id>` | Trace CUI flow through system |
| `./run.sh audit` | Audit all collections for unmarked CUI |

## CUI Categories (Relevant to DIB)

| Category | Subcategory | Indicators |
|----------|-------------|------------|
| CTI | Controlled Technical Information | Engineering specs, test data, drawings |
| EXPT | Export Controlled | ITAR/EAR controlled data |
| PROPIN | Proprietary Business | Contractor proprietary, trade secrets |
| PRVCY | Privacy | PII, PHI |
| PROCURE | Procurement & Acquisition | Source selection, bid/proposal |
| INTEL | Intelligence | Threat data, assessments |
| INFOSEC | Information Security | Vulnerability data, pen test results |

## CUI Marking Format (per NARA CUI Registry)

```
CUI//SP-CTI
CUI//SP-EXPT
CUI//REL TO USA, AUS, GBR
CUI//NOFORN
```

Documents receive:
1. **Banner marking** — top/bottom of each page
2. **Portion marking** — individual paragraphs containing CUI
3. **Distribution statement** — who can receive
4. **Destruction notice** — how to dispose

## Detection Patterns

The scanner uses regex + LLM classification for:
- Technical data indicators (specifications, test procedures, drawings)
- Export control markers (ITAR, EAR, USML categories)
- PII patterns (SSN, DoD ID, clearance levels)
- Procurement language (source selection, FOUO markers)
- Legacy markings (FOUO, SBU, LES) that need CUI conversion

