research
Start or resume an academic research project — idea through literature, methodology, writing, feedback, and publishing
Scaffold a new framework plugin from the SCF crosswalk (Stub or Reference depth)
> /plugin marketplace add GRCEngClub/claude-grc-engineeringHow it fires
How this command gets triggered: by you, by Claude, or both.
/scaffold-frameworkContext preview
What this command does when you run it.
Scaffold a new framework plugin from the SCF crosswalk (Stub or Reference depth)
description: Scaffold a new framework plugin from the SCF crosswalk (Stub or Reference depth)
Generates a new framework plugin directory under `plugins/frameworks/<slug>/` from templates, filling in framework metadata from the SCF crosswalk ({{SCF_FRAMEWORK_ID}} → 249 possible frameworks).
Turns the usual half-day of hand-authoring `plugin.json` + `SKILL.md` + `commands/*.md` + `README.md` + marketplace registration into a one-command operation. The output is intentionally a starting point, not a finished plugin — you add the framework-specific expertise (`TODO:` markers throughout the templates point at what to fill in).
/grc-engineer:scaffold-framework <scf-framework-id-or-label> [options]
| Argument | Required | Notes | |---|---|---| | `<scf-framework-id-or-label>` | yes | Either the raw SCF ID (e.g. `apac-sgp-pdpa-2012`) or a human label (`"Singapore PDPA"`, `"Brazil LGPD"`). The script resolves aliases via `scf-client.js`. | | `--depth=stub\|reference` | optional | Template depth. Default `stub`. Full-depth plugins are authored manually — Full isn't scaffolded because the framework-specific workflow commands are the whole point. | | `--slug=<name>` | optional | Override the auto-derived plugin directory name. Default strips the SCF region prefix and year suffix (`americas-bra-lgpd-2018` → `bra-lgpd`). | | `--no-register` | optional | Skip writing to `.claude-plugin/marketplace.json`. Useful when preparing changes to stage manually. | | `--force` | optional | Overwrite an existing plugin directory. Used for idempotent re-scaffolding. | | `--offline` | optional | Use cached SCF data only (no network). Fails if cache misses. | | `--dry-run` | optional | Print the actions that would be taken; don't touch the filesystem. |
plugins/frameworks/<slug>/ ├── .claude-plugin/plugin.json # Plugin metadata + framework_metadata block ├── commands/assess.md # Routes to /grc-engineer:gap-assessment ├── skills/<slug>-expert/SKILL.md # Framework identity + TODO sections └── README.md # Install + level-up instructions
Plus a new entry in `.claude-plugin/marketplace.json` (unless `--no-register`).
Stub, plus:
plugins/frameworks/<slug>/ ├── commands/scope.md # Applicability determination ├── commands/evidence-checklist.md # Evidence baseline by control family └── skills/... # Richer SKILL.md with TODO scaffolding
Full depth (framework-specific workflow commands, persona-specific UX) is not auto-scaffolded — add those commands manually when promoting a Reference plugin to Full.
# Stub scaffold from SCF ID node plugins/grc-engineer/scripts/scaffold-framework.js apac-sgp-pdpa-2012 # Reference depth with a custom slug node plugins/grc-engineer/scripts/scaffold-framework.js "Singapore PDPA" \ --depth=reference --slug=singapore-pdpa # Preview without writing node plugins/grc-engineer/scripts/scaffold-framework.js americas-bra-lgpd-2018 --dry-run # Staging workflow: scaffold files but skip marketplace.json until human review node plugins/grc-engineer/scripts/scaffold-framework.js emea-che-fadp-2023 --no-register
Framework metadata (display name, region, country, SCF control counts) comes from the [SCF API](https://grcengclub.github.io/scf-api/) (`api/crosswalks.json` and per-framework `api/crosswalks/<id>.json`). Cached locally under `~/.cache/claude-grc/scf/<version>/` per CC BY-ND 4.0 terms — cached data is redistributed verbatim, never modified.
See [`docs/SCF-ATTRIBUTION.md`](../../../docs/SCF-ATTRIBUTION.md) for licensing detail.
1. Edit `skills/<slug>-expert/SKILL.md` — fill in the `TODO:` sections with framework-specific context. 2. At Reference depth, edit `commands/assess.md`, `commands/scope.md`, `commands/evidence-checklist.md` for framework-specific guidance. 3. Commit. Markdown lint + CODEOWNERS review run on every PR. 4. Claim the matching issue in the [framework coverage tracker](https://github.com/GRCEngClub/claude-grc-engineering/issues/12).
Open-source GRC Engineering resource for Claude. claude-grc-engineering turns technical evidence from cloud, SaaS, code, and security tools into framework-aligned findings, gap reports, remediation guidance, evidence packages, and OSCAL workflows.
Repo: GRCEngClub/claude-grc-engineering
Start or resume an academic research project — idea through literature, methodology, writing, feedback, and publishing
Query AWS for compliance-relevant configuration across IAM, S3, CloudTrail, EBS, and emit findings conforming to the v1 contract.
Install the frdocx-to-froscal-ssp Python pipeline and verify its dependencies. Idempotent.
Retrieve a single AWS Secrets Manager secret value to stdout or a 0600-permission file. Opt-in retrieval mode — never writes to the findings cache.
Run testssl.sh against one or more HTTPS endpoints and emit v1 Findings mapped to SOC 2, NIST 800-53, PCI DSS 4.0.1, ISO 27001, and SCF controls.