Token导航 LogoToken导航TokenDH.com
效率external-serviceclawhub未标认证来源可访问clear审计提醒

toolweb-compliance-management工具网合规管理

Agent Skill

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

总安装

3,208

周安装

135

GitHub Stars

公开资料未说明

下载量

1,123
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install toolweb-compliance-management

简介

toolweb-compliance-management 是多框架合规评估系统,用于检查组织与标准的一致性。

  • 适合在 OpenClaw 中自动化审计准备,减少人工核查工作量。
  • 通过 clawhub 安装后,Agent 可输出差距分析报告和整改建议清单。
  • 合规状态受政策变动影响较大,建议建立持续监控机制而非一次性评估。
  • 适用宿主包括 OpenClaw,接入前应确认版本、权限和运行环境要求。

SKILL.md

name
Compliance Management Platform
description
Multi-framework compliance assessment and management system for evaluating organizational adherence to security and regulatory standards.

Overview

The Compliance Management Platform is a comprehensive API for conducting multi-framework compliance assessments across your organization. Built for security professionals, compliance officers, and enterprise teams, this platform enables systematic evaluation of controls against industry-standard frameworks including ISO 27001, NIST CSF, SOC 2, and more.

This tool streamlines the compliance assessment workflow by providing centralized access to framework definitions, control specifications, and assessment execution. Organizations can evaluate their security posture against multiple frameworks simultaneously, track responses to specific controls, and generate compliance reports that demonstrate adherence to regulatory and industry standards.

Ideal users include security teams implementing compliance programs, organizations preparing for audits or certifications, managed service providers supporting multiple clients, and enterprises managing multi-framework compliance obligations across diverse business units.

Usage

Request: Perform a comprehensive compliance assessment against ISO 27001 and NIST frameworks.

{
  "assessment": {
    "frameworks": ["ISO27001", "NIST_CSF"],
    "organizationProfile": {
      "name": "Acme Corporation",
      "industry": "Technology",
      "employees": 250,
      "dataClassification": "Confidential"
    },
    "controlResponses": {
      "A.5.1": {
        "implemented": true,
        "evidence": "Policy documented in InfoSec handbook",
        "status": "compliant"
      },
      "AC-1": {
        "implemented": true,
        "evidence": "Access control procedures established",
        "status": "compliant"
      }
    },
    "sessionId": "session_12345",
    "timestamp": "2024-01-15T10:30:00Z"
  },
  "sessionId": "session_12345",
  "userId": 42,
  "timestamp": "2024-01-15T10:30:00Z"
}

Response: Assessment results with compliance scores and gap analysis.

{
  "assessmentId": "assessment_67890",
  "status": "completed",
  "frameworks": {
    "ISO27001": {
      "score": 78,
      "controlsAssessed": 114,
      "controlsCompliant": 89,
      "gaps": [
        {
          "controlId": "A.12.1",
          "title": "Cryptography",
          "severity": "high",
          "remediation": "Implement encryption standards across data at rest and in transit"
        }
      ]
    },
    "NIST_CSF": {
      "score": 82,
      "categories": {
        "Identify": 85,
        "Protect": 80,
        "Detect": 75,
        "Respond": 88,
        "Recover": 80
      }
    }
  },
  "timestamp": "2024-01-15T10:31:45Z",
  "expiresAt": "2024-04-15T10:31:45Z"
}

Endpoints

GET /

Health Check Endpoint

Verifies that the Compliance Management Platform API is operational and responsive.

Parameters: None

Response:

  • 200 OK: Service is operational

POST /api/compliance/assess

Perform Comprehensive Compliance Assessment

Executes a multi-framework compliance assessment based on organization profile and control responses. Evaluates adherence to selected compliance frameworks and generates detailed gap analysis and remediation recommendations.

Parameters:

NameTypeRequiredDescription
assessmentComplianceAssessmentYesAssessment object containing framework selection, organization profile, and control response data
assessment.frameworksArray[String]YesList of framework identifiers to assess against (e.g., "ISO27001", "NIST_CSF", "SOC2")
assessment.organizationProfileObjectYesOrganization metadata including name, industry, size, and data classification level
assessment.controlResponsesObjectYesMapping of control IDs to implementation status, evidence, and compliance status
assessment.sessionIdStringYesUnique session identifier for tracking assessment context
assessment.timestampStringYesISO 8601 timestamp of assessment creation
sessionIdStringYesSession identifier for request tracking and audit logging
userIdInteger or NullNoIdentifier of the user initiating the assessment
timestampStringYesISO 8601 timestamp of the request

Response:

  • 200 OK: Assessment completed successfully with results, scores, and gap analysis
  • 422 Unprocessable Entity: Validation error in request body (see HTTPValidationError schema)

GET /api/compliance/frameworks

Get List of All Supported Frameworks

Retrieves metadata and descriptions for all supported compliance frameworks available on the platform.

Parameters: None

Response:

  • 200 OK: Array of framework objects with IDs, names, descriptions, and applicable industries

GET /api/compliance/framework/{framework_id}

Get Detailed Framework Information

Retrieves comprehensive details about a specific compliance framework including objectives, scope, applicability, and implementation guidance.

Parameters:

NameTypeRequiredDescription
framework_idStringYesUnique identifier of the framework (e.g., "ISO27001", "NIST_CSF", "SOC2", "GDPR")

Response:

  • 200 OK: Framework details including description, objectives, domains/categories, and references
  • 422 Unprocessable Entity: Invalid framework_id format or missing parameter

GET /api/compliance/controls/{framework_id}

Get All Controls for Specific Framework

Retrieves the complete control catalog for a specified framework, including control IDs, titles, descriptions, and implementation guidance.

Parameters:

NameTypeRequiredDescription
framework_idStringYesUnique identifier of the framework (e.g., "ISO27001", "NIST_CSF", "SOC2", "GDPR")

Response:

  • 200 OK: Array of control objects with IDs, titles, descriptions, categories, severity levels, and implementation details
  • 422 Unprocessable Entity: Invalid framework_id format or missing parameter

Pricing

PlanCalls/DayCalls/MonthPrice
Free550Free
Developer20500$39/mo
Professional2005,000$99/mo
Enterprise100,0001,000,000$299/mo

About

ToolWeb.in - 200+ security APIs, CISSP & CISM, platforms: Pay-per-run, API Gateway, MCP Server, OpenClaw, RapidAPI, YouTube.

References

  • Kong Route: https://api.mkkpro.com/compliance/management-platform
  • API Docs: https://api.mkkpro.com:8103/docs

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

87.82%
按下载量换算986

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

通过

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

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

来源信息

继续浏览同类 Skills