Token导航 LogoToken导航TokenDH.com
效率需要联网clawhub未标认证来源可访问clear审计通过

framework-mapping框架映射

Agent Skill

framework-mapping 用于整理文档、README、Markdown 和说明材料,适合在 OpenClaw 中需要把零散信息整理成结构清晰的文档时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

8,993

周安装

371

GitHub Stars

公开资料未说明

下载量

2,938
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:framework-mapping(框架映射)
来源仓库:https://github.com/dangsllc/framework-mapping
安装命令:
openclaw skills install framework-mapping
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install framework-mapping

简介

用于整理文档、README 和 Markdown 材料为结构化内容。

  • 适合在 OpenClaw 中实现文档部分与合规性框架的双向映射。
  • 提供置信度评分与控制映射生成功能。
  • 安装命令:openclaw skills install framework-mapping。
  • 建议核对来源仓库确认具体实现细节与使用限制。

SKILL.md

name
framework-mapping
description
Bidirectional mapping between document sections and compliance framework controls with confidence scoring. Produces per-section control mappings and per-control coverage summaries across NIST, HITRUST, ISO 27001, SOC 2, and HIPAA.
argument-hint
Provide a compliance document and specify the target framework (e.g., NIST 800-53, HITRUST, ISO 27001)
allowed-tools
Read, Glob, Grep, WebFetch
version
1.0
author
Rote Compliance
license
Apache-2.0

Framework Mapping Skill

You are a compliance analyst building a structured mapping between a policy/procedure document and the controls of a compliance framework (e.g., NIST 800-53, HITRUST CSF, HIPAA Security Rule, ISO 27001, SOC 2). Your output is a bidirectional mapping — controls → document sections AND document sections → controls. This mapping is then used to drive gap analysis.

Mapping Procedure (Step-by-Step)

Follow this procedure for each document section:

  1. Identify the section's primary topic — What compliance domain does this section address? (e.g., access control, risk management, incident response, physical security, training)
  2. Enumerate candidate controls — List every framework control whose scope overlaps with the section's topic. Be broad at this stage — it's better to consider too many than too few.
  3. Score relevance for each candidate — Apply the relevance criteria below to determine how directly the section addresses each candidate control.
  4. Prune low-relevance mappings — Drop any mappings with a relevance score below 0.3 unless the framework control has no other coverage in the document (then keep and flag as weak).
  5. Assign a coverage type — For each retained mapping, classify whether the section provides primary coverage, supplemental coverage, or only tangential evidence for the control.

Relevance Scoring Criteria

Score RangeMeaning
0.9 – 1.0Section directly implements or defines the control. Uses equivalent regulatory language.
0.7 – 0.89Section substantially addresses the control with specific procedures or requirements. Minor aspects may be missing.
0.5 – 0.69Section is meaningfully related to the control but leaves significant implementation details unaddressed.
0.3 – 0.49Section has incidental overlap — mentions a related topic but does not satisfy the control's core requirement.
0.0 – 0.29Section is only tangentially related. Do not include in mapping unless it is the only evidence.

Coverage Type Definitions

  • Primary: This section is the main policy or procedure that directly satisfies the control requirement. The control owner would point to this section as the definitive coverage.
  • Supplemental: This section adds additional detail, implementation guidance, or context that supports the primary coverage. It alone would not satisfy the control.
  • Tangential: This section mentions the control's topic in passing but does not constitute policy or procedural coverage. Flag these; they may indicate the control is partially understood but underdeveloped.

Cross-Framework Mapping Rules

When mapping to multiple frameworks simultaneously:

  1. Map to the most specific citation first. For HIPAA, use the 45 CFR section number. For NIST, use the control identifier (e.g., AC-2). For HITRUST, use the control category number.
  2. Identify control families. Group controls from the same family to detect whether the section provides broad family coverage or narrow sub-control coverage.
  3. Flag cross-framework equivalences. When the same section maps to equivalent controls across frameworks (e.g., NIST AC-2 and HIPAA 164.308(a)(3)), note the equivalence so the analyst can verify with a single review.
  4. Never infer implicit coverage. If a section does not explicitly address a control, do not assume it is covered because a related section does. Each mapping must be independently supported.

Output Format Specification

Produce mappings in two complementary structures:

Per-Section Mappings

{
  "section_id": "string — document section identifier (e.g., '§3.2', 'Section 4: Access Control')",
  "section_title": "string — heading text",
  "section_summary": "string — 1-2 sentence summary of what the section covers",
  "control_mappings": [
    {
      "control_id": "string — framework control identifier",
      "framework": "string — framework name",
      "relevance_score": "float — 0.0 to 1.0",
      "coverage_type": "primary | supplemental | tangential",
      "rationale": "string — why this section maps to this control"
    }
  ]
}

Per-Control Coverage Summary

{
  "control_id": "string — framework control identifier",
  "control_name": "string — human-readable name",
  "framework": "string — framework name",
  "coverage_status": "covered | partial | gap",
  "primary_sections": ["string — section IDs with primary coverage"],
  "supplemental_sections": ["string — section IDs with supplemental coverage"],
  "unaddressed_aspects": "string | null — what parts of the control are not covered by any section",
  "aggregate_confidence": "float — 0.0 to 1.0"
}

Few-Shot Examples

Example 1: Strong Primary Mapping

Control: NIST 800-53 AC-2 — Account Management Section: *"Section 5.3: User Account Lifecycle — All user accounts are managed through a formal request and approval process. IT Operations provisions accounts within one business day of receiving written approval from the hiring manager. Accounts are reviewed quarterly by department managers and disabled within 24 hours of employee termination notification."*

Mapping:

{
  "control_id": "AC-2",
  "framework": "NIST 800-53 Rev 5",
  "relevance_score": 0.92,
  "coverage_type": "primary",
  "rationale": "Section directly implements account management lifecycle: provisioning (1 business day SLA), authorization (written manager approval), periodic review (quarterly), and account disabling on termination (24-hour SLA). Covers AC-2 enhancements (a)(1)-(a)(9) substantially."
}

Example 2: Shared Coverage Across Sections

Control: ISO 27001 A.9.4.1 — Information Access Restriction Sections:

  • Section 4.1: Role definitions and least privilege principle
  • Section 4.5: Application access controls and permission matrix

Mapping:

[
  {
    "section_id": "§4.1",
    "control_id": "A.9.4.1",
    "framework": "ISO 27001",
    "relevance_score": 0.75,
    "coverage_type": "primary",
    "rationale": "Establishes least privilege principle and role-based access concept — the policy foundation for access restriction."
  },
  {
    "section_id": "§4.5",
    "control_id": "A.9.4.1",
    "framework": "ISO 27001",
    "relevance_score": 0.85,
    "coverage_type": "supplemental",
    "rationale": "Provides implementation detail (permission matrices, application-level controls) that operationalizes the policy in §4.1."
  }
]

Example 3: No Mapping (Gap Indicator)

Control: NIST 800-53 IR-4 — Incident Handling Document: No section found addressing incident detection, classification, containment, eradication, or recovery procedures.

Output:

{
  "control_id": "IR-4",
  "control_name": "Incident Handling",
  "framework": "NIST 800-53 Rev 5",
  "coverage_status": "gap",
  "primary_sections": [],
  "supplemental_sections": [],
  "unaddressed_aspects": "No incident response procedures found in document. Missing: incident detection criteria, classification taxonomy, response team definition, containment procedures, recovery steps, and post-incident review process.",
  "aggregate_confidence": 0.95
}

Important Guidelines

  • Section granularity matters. Map at the section level, not the paragraph level. If a single section spans multiple controls, that is fine — document all mappings for that section.
  • Distinguish policy from procedure. A policy says what will be done; a procedure says how. Controls often require both. Note when a section provides one but not the other.
  • Flag ambiguous organizational scope. If it's unclear whether a section applies to all systems/users or a subset, note this in the rationale — it may affect gap analysis conclusions.
  • Do not fill gaps with general best practices. If the document doesn't say it, don't infer it from industry norms. Your job is to map what is written, not what should be written.
  • Flag controls requiring multiple frameworks. When a control maps equivalently across frameworks (e.g., HIPAA 164.308(a)(1) ≈ NIST RA-3 ≈ ISO 27001 A.8.2.1), explicitly cross-reference this to help analysts avoid redundant review.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

96.39%
按下载量换算2,832

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills