Skip to content

docs(9-ai-sessions): add Compliance section for the lc-compliance plugin#229

Merged
steveatlc merged 1 commit into
refractionPOINT:masterfrom
steveatlc:docs/9-ai-sessions-compliance
May 15, 2026
Merged

docs(9-ai-sessions): add Compliance section for the lc-compliance plugin#229
steveatlc merged 1 commit into
refractionPOINT:masterfrom
steveatlc:docs/9-ai-sessions-compliance

Conversation

@steveatlc
Copy link
Copy Markdown
Contributor

Summary

Documents the lc-compliance Claude Code plugin shipping in refractionPOINT/lc-ai. The plugin has two halves and both are covered:

  • Case-reviewer agents (one per framework, D&R-driven AI Sessions) classify in-scope cases against control citations on case_created events and write audit-grade documentation directly into the case.
  • Four interactive Claude Code skills (compliance-lookup, compliance-gap, compliance-deploy, compliance-baseline-deploy) for ad-hoc control lookups, gap analysis against live orgs, guided reviewer-agent deployment, and full rule-baseline deployment.

Covered frameworks: CMMC v2, NIST SP 800-53 Rev 5, PCI DSS v4.0, HIPAA Security Rule, SOC 2, ISO/IEC 27001:2022, CIS Controls v8.

What this PR contains

New files — docs/9-ai-sessions/compliance/

File Purpose
index.md Overview, two-shape model (agent + skills), quickstart
installation.md Plugin install, prerequisites, first-deploy sequence (with per-framework scope-tag table)
frameworks.md Per-framework citation formats, accepted scope tags, verification levels, framework-specific skill args (--baseline for NIST 800-53, --ig for CIS v8)
skills.md Full reference for all four skills with arguments and examples
case-reviewer-agent.md Agent lifecycle, scoped permissions, scope check, evidence model, classification tags, customization
gap-analysis.md Report anatomy (sections A–G), remediation paths, multi-tenant note

Nav placement

Compliance is nested as a sub-section under AI Sessions (after API Reference), not promoted to a top-level tab:

- AI Sessions:
    # ... existing entries unchanged ...
    - API Reference: 9-ai-sessions/api-reference.md
    - Compliance:
        - Overview: 9-ai-sessions/compliance/index.md
        - Installation: 9-ai-sessions/compliance/installation.md
        - Frameworks: 9-ai-sessions/compliance/frameworks.md
        - Skills Reference: 9-ai-sessions/compliance/skills.md
        - Case-Reviewer Agent: 9-ai-sessions/compliance/case-reviewer-agent.md
        - Gap Analysis: 9-ai-sessions/compliance/gap-analysis.md

The case-reviewer agent is literally a D&R-driven AI Session and the four skills are Claude Code tooling, so the semantic fit is inside the existing AI Sessions group; this also keeps the top-level nav at 10 tabs rather than worsening the existing horizontal-overflow situation.

Modified existing pages — cross-link surface

To make the new section discoverable from natural parent contexts, seven existing pages get conservative additive edits. Each adds one or two See Also / Related entries pointing at the relevant Compliance page. No other prose changes; no deletions.

Page Edit
9-ai-sessions/index.md Adds Compliance to the D&R-driven use-case bullet list and to the Documentation list at the bottom.
9-ai-sessions/dr-sessions.md New ## See Also section framing the case-reviewer agent as a canonical D&R-driven session example.
5-integrations/extensions/limacharlie/cases.md Two new entries in the existing ## See Also (the compliance reviewer operates on cases).
5-integrations/extensions/limacharlie/integrity.md Two new entries in ## Related Articles (FIM rules ship as part of every framework baseline).
5-integrations/extensions/limacharlie/exfil.md New ## See Also section (exfil rules ship as part of every framework baseline).
2-sensors-deployment/sensor-tags.md One new entry in ## See Also pointing at the per-framework scope-tag conventions.
7-administration/config-hive/secrets.md New ## See Also section. Surfaces previously-implicit cross-references to Adapters, Outputs, and AI Sessions alongside the new Compliance Installation reference.

Validation

  • mkdocs build and mkdocs build --strict both pass.
  • pymarkdown scan passes on all changed files with the repo's standard rule disables (MD013, MD033, MD041, MD046, MD060, MD024).
  • 23 internal cross-link probes (every new inbound and outbound compliance link) verified 200 against a local mkdocs serve.

Out of scope (deliberate)

  • No use-case landing page under 1-getting-started/use-cases/. A compliance.md use-case page could plausibly sit alongside incident-response.md, mssp-msp-mdr.md, enterprises.md, etc., but writing one is content work distinct from this cross-linking pass. Flagged as future follow-up.
  • No asset additions under docs/assets/images/. No new screenshots or diagrams beyond the inline Mermaid sequence already in case-reviewer-agent.md.
  • No mkdocs.yml redirect entries. These pages have no Readme.io predecessors, so redirect_maps doesn't need updating.

🤖 Generated with Claude Code

Documents the `lc-compliance` Claude Code plugin shipping in
refractionPOINT/lc-ai. The plugin has two halves and both are covered:

- Case-reviewer agents (one per framework, D&R-driven AI Sessions) that
  classify in-scope cases against control citations on `case_created`
  events and write audit-grade documentation directly into the case.
- Four interactive Claude Code skills (`compliance-lookup`,
  `compliance-gap`, `compliance-deploy`, `compliance-baseline-deploy`)
  for ad-hoc control lookups, gap analysis against live orgs, guided
  reviewer-agent deployment, and full rule-baseline deployment.

Covered frameworks: CMMC v2, NIST SP 800-53 Rev 5, PCI DSS v4.0, HIPAA
Security Rule, SOC 2, ISO/IEC 27001:2022, CIS Controls v8.

## New files

`docs/9-ai-sessions/compliance/`:
- index.md (overview, two-shape model, quickstart)
- installation.md (plugin install, prerequisites, first-deploy sequence)
- frameworks.md (per-framework citation formats, scope tags, verification
  levels, framework-specific skill args)
- skills.md (full reference for all four skills with arguments and examples)
- case-reviewer-agent.md (agent lifecycle, permissions, scope check,
  evidence model, classifications, customization)
- gap-analysis.md (report anatomy, remediation paths, multi-tenant note)

## Nav

Compliance is nested as a sub-section under AI Sessions (after API
Reference), not promoted to a top-level tab. The case-reviewer agent is
literally a D&R-driven AI Session and the four skills are Claude Code
tooling, so the semantic fit is inside the existing AI Sessions group;
this also keeps the top-level nav at 10 tabs.

## Cross-link surface (modified existing pages)

To make the new section discoverable from natural parent contexts, seven
existing pages get conservative additive edits — each adds one or two
"See Also" / "Related" entries pointing at the relevant Compliance page:

- `9-ai-sessions/index.md` — adds Compliance to D&R-driven use cases and
  the Documentation list.
- `9-ai-sessions/dr-sessions.md` — new See Also section framing the
  case-reviewer agent as the canonical D&R-driven session example.
- `5-integrations/extensions/limacharlie/cases.md` — two new See Also
  entries (compliance reviewer operates on cases).
- `5-integrations/extensions/limacharlie/integrity.md` — two new Related
  Articles entries (FIM rules ship as part of every framework baseline).
- `5-integrations/extensions/limacharlie/exfil.md` — new See Also section
  (exfil rules ship as part of every framework baseline).
- `2-sensors-deployment/sensor-tags.md` — new See Also entry pointing at
  the per-framework scope-tag conventions on the Frameworks page.
- `7-administration/config-hive/secrets.md` — new See Also section
  including the existing implicit adapter/output/AI Sessions references,
  with the Compliance installation step added.

## Validation

- `mkdocs build` passes (also tried with --strict; only pre-existing
  use-case "not in nav" warnings).
- `pymarkdown scan` passes on all changed files with the repo's standard
  rule disables (MD013, MD033, MD041, MD046, MD060, MD024).
- 23 internal cross-link probes (every inbound and outbound compliance
  link) verified 200 against a local mkdocs serve.

## Source

Content is generated from the public release at
[refractionPOINT/lc-ai](https://github.com/refractionPOINT/lc-ai),
specifically `marketplace/plugins/lc-compliance/`. Plugin version 1.0.2.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
@steveatlc steveatlc merged commit 8aa099e into refractionPOINT:master May 15, 2026
2 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant