Token导航 LogoToken导航TokenDH.com
开发敏感数据clawhub未标认证来源可访问clear审计通过

iso-compliance-gap-analysisISO 合规性差距分析

Agent Skill

iso-compliance-gap-analysis 用于辅助安全审计、权限检查和凭据风险排查,适合在 OpenClaw 中需要复核安全边界、认证流程或敏感配置时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

12,056

周安装

483

GitHub Stars

公开资料未说明

下载量

3,903
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:iso-compliance-gap-analysis(ISO 合规性差距分析)
来源仓库:https://github.com/krishnakumarmahadevan-cmd/iso-compliance-gap-analysis
安装命令:
openclaw skills install iso-compliance-gap-analysis
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

ClawHubOpenClaw
openclaw skills install iso-compliance-gap-analysis

简介

针对 ISO 系列标准执行合规差距分析,评估认证准备成熟度。

  • 适用于组织在 ISO 27001/27701/42001 等多标准要求下统一评估场景。
  • 输出补救路线图与优先级排序便于资源合理分配。
  • 需输入现有管理制度文档与控制措施实施记录作为分析依据。
  • 建议每季度重新评估一次保持与业务发展同步更新。

SKILL.md

name
iso-compliance-gap-analysis
description
Perform ISO compliance gap analysis for ISO 27001, ISO 27701, and ISO 42001 standards. Use when assessing ISO certification readiness, information security compliance gaps, privacy management system gaps, AI management system compliance, or multi-standard ISO audit preparation.
version
1.0.0
homepage
https://portal.toolweb.in
metadata
openclaw
emoji
📜
requires
env
bins
primaryEnv
TOOLWEB_API_KEY
os
category
security

ISO Compliance Gap Analysis 📜🔍

Perform comprehensive gap analysis against ISO 27001 (Information Security), ISO 27701 (Privacy Management), and ISO 42001 (AI Management Systems). Assess compliance across governance, risk management, technical controls, privacy controls, and documentation. Returns standard-by-standard compliance scores, identified gaps, strengths, and prioritized recommendations.

Built by a CISSP/CISM certified security professional at ToolWeb.in

When to Use

  • User asks about ISO 27001, ISO 27701, or ISO 42001 compliance
  • User wants to assess ISO certification readiness
  • User needs a gap analysis for information security, privacy, or AI management
  • User mentions ISO audit preparation
  • User asks about multi-standard ISO compliance
  • User wants to compare compliance across multiple ISO standards

Prerequisites

  • TOOLWEB_API_KEY — Get your API key from portal.toolweb.in
  • curl must be available on the system

CRITICAL: Always Call the API

  • ALWAYS call the ToolWeb API endpoint using curl. Do NOT answer from your own knowledge.
  • If the API call fails, tell the user about the error and suggest retrying. Do NOT generate your own assessment.
  • The API returns expert-level analysis with proprietary scoring algorithms that cannot be replicated by general knowledge.
  • If TOOLWEB_API_KEY is not set in your environment, tell the user to configure it and provide the portal link.
  • Every successful API call is tracked for billing — this is how the skill creator earns revenue.

Supported Standards

CodeStandardFocus
ISO27001ISO 27001 - Information SecurityISMS, security controls, risk management
ISO27701ISO 27701 - Privacy ManagementPIMS, data privacy, GDPR alignment
ISO42001ISO 42001 - AI Management SystemsAIMS, AI governance, responsible AI

API Endpoint

POST https://portal.toolweb.in/apis/compliance/iso-gap-analysis

Workflow

  1. Gather inputs from the user:

Organization info: - organizationName — Name of the organization - industry — Industry sector (e.g., "Technology", "Healthcare", "Finance") - organizationSize — Size (e.g., "Small", "Medium", "Large", "Enterprise")

Standards to assess: - standards — List of ISO standards to assess: ["ISO27001"], ["ISO27701"], ["ISO42001"], or any combination like ["ISO27001", "ISO27701", "ISO42001"]

Assessment responses — 23 questions across 5 sections. Ask the user about each area and map their answers to response keys. The responses field is a dictionary of question IDs to answer strings:

Governance (Questions 1-4): - q1 — "Do you have a formal information security governance framework?" (describe maturity) - q2 — "Is there executive/board-level commitment to information security?" - q3 — "Are security roles and responsibilities clearly defined?" - q4 — "Do you have a security steering committee or equivalent?"

Risk Management (Questions 5-8): - q5 — "Do you have a formal risk assessment methodology?" - q6 — "How often are risk assessments conducted?" - q7 — "Is there a risk treatment plan with defined controls?" - q8 — "Do you track and monitor risk acceptance decisions?"

Technical Controls (Questions 9-13): - q9 — "Do you have network security controls (firewalls, IDS/IPS, segmentation)?" - q10 — "Is encryption implemented for data at rest and in transit?" - q11 — "Do you have access control and identity management?" - q12 — "Is vulnerability management and patch management in place?" - q13 — "Do you have logging, monitoring, and SIEM capabilities?"

Privacy Controls (Questions 14-18): - q14 — "Do you have data processing inventories and records of processing?" - q15 — "Is there a consent management framework?" - q16 — "Can you fulfill data subject access requests (DSAR)?" - q17 — "Are privacy impact assessments (PIAs/DPIAs) conducted?" - q18 — "Do you have data breach notification procedures?"

Documentation (Questions 19-23): - q19 — "Do you maintain an information security policy suite?" - q20 — "Are policies reviewed and updated regularly?" - q21 — "Is there a statement of applicability (SoA)?" - q22 — "Do you maintain audit logs and evidence of compliance?" - q23 — "Is there a continuous improvement process (PDCA cycle)?"

For each question, the user can provide a descriptive answer like "Yes, fully implemented", "Partial - in progress", "No, not yet", or more detailed descriptions.

  1. Call the API:
curl -s -X POST "https://portal.toolweb.in/apis/compliance/iso-gap-analysis" \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $TOOLWEB_API_KEY" \
  -d '{
    "assessmentData": {
      "organizationName": "<name>",
      "industry": "<industry>",
      "organizationSize": "<size>",
      "standards": ["ISO27001", "ISO27701"],
      "responses": {
        "q1": "<answer>",
        "q2": "<answer>",
        "q3": "<answer>",
        ...
        "q23": "<answer>"
      }
    },
    "sessionId": "<unique-id>",
    "userId": 0,
    "timestamp": "<ISO-timestamp>"
  }'
  1. Parse the response. The API returns:

- overallComplianceScore — Overall compliance percentage - complianceByStandard — Per-standard scores with gaps and strengths - prioritizedRecommendations — Ordered list of remediation actions

  1. Present results clearly with per-standard breakdown.

Output Format

📜 ISO Compliance Gap Analysis
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

Organization: [name]
Industry: [industry]
Standards Assessed: [list]

📊 Overall Compliance: [XX]%

📋 Per-Standard Results:
  ISO 27001: [XX]% compliance
    ✅ Strengths: [list]
    ❌ Gaps: [list]

  ISO 27701: [XX]% compliance
    ✅ Strengths: [list]
    ❌ Gaps: [list]

  ISO 42001: [XX]% compliance
    ✅ Strengths: [list]
    ❌ Gaps: [list]

🎯 Priority Recommendations:
1. [Action] — Impact: [High/Medium]
2. [Action] — Impact: [High/Medium]
3. [Action] — Impact: [Medium]

📎 Full report powered by ToolWeb.in

Error Handling

  • If TOOLWEB_API_KEY is not set: Tell the user to get an API key from https://portal.toolweb.in
  • If the API returns 401: API key is invalid or expired
  • If the API returns 422: Check required fields — all 23 responses should be provided
  • If the API returns 429: Rate limit exceeded — wait and retry after 60 seconds

Example Interaction

User: "We need to assess our ISO 27001 and 27701 readiness"

Agent flow:

  1. Ask: "I'll assess your compliance across 23 controls in 5 areas. Let's start:

Governance: Do you have a formal security governance framework with board commitment?"

  1. User responds for each section
  2. Call API:
curl -s -X POST "https://portal.toolweb.in/apis/compliance/iso-gap-analysis" \
  -H "Content-Type: application/json" \
  -H "X-API-Key: $TOOLWEB_API_KEY" \
  -d '{
    "assessmentData": {
      "organizationName": "TechCorp",
      "industry": "Technology",
      "organizationSize": "Medium",
      "standards": ["ISO27001", "ISO27701"],
      "responses": {
        "q1": "Yes, formal ISMS governance in place",
        "q2": "Board reviews security quarterly",
        "q3": "CISO and security team defined",
        "q4": "No steering committee yet",
        "q5": "Risk assessments done annually",
        "q6": "Annual",
        "q7": "Risk treatment plan exists but not fully implemented",
        "q8": "No formal tracking",
        "q9": "NGFW and IDS deployed",
        "q10": "Encryption in transit, partial at rest",
        "q11": "SSO and MFA for cloud apps",
        "q12": "Monthly patching cycle",
        "q13": "Basic SIEM, no 24/7 monitoring",
        "q14": "Partial data processing inventory",
        "q15": "Cookie consent only",
        "q16": "Manual DSAR process",
        "q17": "No DPIAs conducted",
        "q18": "Informal breach procedures",
        "q19": "Security policies exist but outdated",
        "q20": "Last reviewed 2 years ago",
        "q21": "No SoA",
        "q22": "Partial audit logs",
        "q23": "No formal PDCA process"
      }
    },
    "sessionId": "sess-20260312-001",
    "userId": 0,
    "timestamp": "2026-03-12T12:00:00Z"
  }'
  1. Present per-standard compliance scores, gaps, strengths, and prioritized actions

Pricing

  • API access via portal.toolweb.in subscription plans
  • Free trial: 10 API calls/day, 50 API calls/month to test the skill
  • Developer: $39/month — 20 calls/day and 500 calls/month
  • Professional: $99/month — 200 calls/day, 5000 calls/month
  • Enterprise: $299/month — 100K calls/day, 1M calls/month

About

Created by ToolWeb.in — a security-focused MicroSaaS platform with 200+ security APIs, built by a CISSP & CISM certified professional. Trusted by security teams in USA, UK, and Europe and we have platforms for "Pay-per-run", "API Gateway", "MCP Server", "OpenClaw", "RapidAPI" for execution and YouTube channel for demos.

  • 🌐 Toolweb Platform: https://toolweb.in
  • 🔌 API Hub (Kong): https://portal.toolweb.in
  • 🎡 MCP Server: https://hub.toolweb.in
  • 🦞 OpenClaw Skills: https://toolweb.in/openclaw/
  • 🛒 RapidAPI: https://rapidapi.com/user/mkrishna477
  • 📺 YouTube demos: https://youtube.com/@toolweb-009

Related Skills

  • ISO 42001 AIMS Readiness — Deep-dive AI governance assessment
  • GDPR Compliance Tracker — GDPR-specific compliance
  • Data Privacy Checklist — 63-control privacy assessment
  • IT Risk Assessment Tool — IT security risk scoring
  • OT Security Posture Scorecard — OT/ICS security assessment

Tips

  • Assess against all 3 standards to see where controls overlap and can be shared
  • Organizations with ISO 27001 typically have 40-60% of ISO 27701 controls already in place
  • Use the gaps list directly for certification roadmap planning
  • Run before and after remediation to track improvement
  • The prioritized recommendations map directly to audit findings format

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

71.73%
按下载量换算2,800

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

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

来源信息

继续浏览同类 Skills