首页龙虾技能列表 › AI Governance, Security & Ethics Readiness Assessment — 技能工具

AI Governance, Security & Ethics Readiness Assessment — 技能工具

v1.0.0

Assess organizational maturity across AI Governance, Security, and Ethics & Compliance domains.

0· 61·0 当前·0 累计
by @krishnakumarmahadevan-cmd (ToolWeb)·MIT-0
下载技能包
License
MIT-0
最后更新
2026/4/3
安全扫描
VirusTotal
无害
查看报告
OpenClaw
可疑
medium confidence
The skill's stated purpose (organizational AI governance/security/ethics assessment) matches the provided API schema and examples, but key operational details are missing (no server/auth info, unknown source) which could lead to sensitive assessment data being sent to an unknown endpoint if the agent acts on these instructions.
评估建议
This skill appears to be an API specification for an AI governance/security/ethics assessment and is internally consistent, but exercise caution before sending any real organizational data. Confirm the service host and its ownership (there is no homepage or server URL in the files), and confirm how authentication and data handling are performed. If you plan to use it, either (a) provide a trusted internal/base URL and credentials, (b) test with non-sensitive sample data first, or (c) host the as...
详细分析 ▾
用途与能力
Name, description, SKILL.md examples, and the openapi.json all align: the skill is an assessment service that accepts assessment data and returns maturity scores and recommendations. No unrelated dependencies, credentials, or binaries are requested.
指令范围
The SKILL.md provides request/response examples and endpoint paths (e.g., POST /api/ai-gse/assess) but does not specify a base URL/host or any authentication mechanism. Because the instructions describe submitting potentially sensitive organizational assessment data, the lack of explicit server and auth details is a concern: an agent executing these instructions might attempt to transmit data to an unspecified destination or make unsafe assumptions about where to send data.
安装机制
No install spec and no code files beyond the documentation/openapi spec. This instruction-only form minimizes on-disk code risk.
凭证需求
The skill declares no required environment variables, credentials, or config paths. Nothing requested is disproportionate to a read-only assessment API specification.
持久化与权限
Skill is not always-on, is user-invocable, and allows model invocation (platform default). It does not request persistent system changes or access to other skills' configs.
安全有层次,运行前请审查代码。

License

MIT-0

可自由使用、修改和再分发,无需署名。

运行时依赖

无特殊依赖

版本

latestv1.0.02026/4/3

Initial release of the AI Governance, Security & Ethics Readiness Assessment tool: - Provides a structured assessment for organizational maturity in AI Governance, Security, and Ethics & Compliance. - Offers detailed maturity scores, findings, and tailored recommendations based on submitted evidence. - Includes endpoints to submit assessments, retrieve pillar/category data, and check service status. - Supports benchmarking and roadmap creation for CISOs, chief data officers, compliance teams, and AI/ML leads. - Clearly defined API schema, usage examples, and transparent pricing plans.

● 无害

安装命令 点击复制

官方npx clawhub@latest install toolweb-ai-governance-security-ethics-readiness-assessment
镜像加速npx clawhub@latest install toolweb-ai-governance-security-ethics-readiness-assessment --registry https://cn.clawhub-mirror.com

技能文档

The AI Governance, Security & Ethics Readiness Assessment tool evaluates your organization's preparedness across three critical pillars: AI Governance frameworks, Security posture, and Ethics & Compliance standards. This assessment provides a structured methodology to identify maturity levels, gaps, and actionable recommendations for building trustworthy AI systems.

Organizations deploying AI solutions face increasing regulatory scrutiny and operational risks. This tool enables security teams, compliance officers, and AI leaders to benchmark their current state against industry best practices and establish a roadmap for improvement. The assessment captures evidence-based data across governance structures, security controls, and ethical safeguards to generate comprehensive readiness reports.

Ideal users include CISOs, Chief Data Officers, AI/ML leads, compliance teams, and enterprise architects seeking to align AI initiatives with security and regulatory requirements.

Usage

Example Assessment Request:

{
  "assessmentData": {
    "ai_governance": {
      "policy_framework": "documented",
      "risk_assessment_process": "implemented",
      "approval_workflows": "in_place",
      "audit_trail": "enabled"
    },
    "ai_security": {
      "model_validation": "automated",
      "data_encryption": "aes256",
      "access_controls": "rbac",
      "threat_monitoring": "active"
    },
    "ai_ethics_compliance": {
      "bias_testing": "ongoing",
      "transparency_documentation": "complete",
      "regulatory_alignment": "gdpr_compliant",
      "stakeholder_review": "quarterly"
    },
    "sessionId": "sess_12345abcde",
    "timestamp": "2024-01-15T10:30:00Z"
  },
  "sessionId": "sess_12345abcde",
  "userId": 1001,
  "timestamp": "2024-01-15T10:30:00Z"
}

Example Response:

{
  "status": "success",
  "sessionId": "sess_12345abcde",
  "assessment_results": {
    "ai_governance": {
      "maturity_level": "level_3",
      "score": 78,
      "status": "strong",
      "findings": [
        {
          "category": "policy_framework",
          "rating": "compliant",
          "evidence": "documented and reviewed annually"
        }
      ]
    },
    "ai_security": {
      "maturity_level": "level_3",
      "score": 81,
      "status": "strong",
      "findings": [
        {
          "category": "model_validation",
          "rating": "compliant",
          "evidence": "automated testing in CI/CD pipeline"
        }
      ]
    },
    "ai_ethics_compliance": {
      "maturity_level": "level_2",
      "score": 65,
      "status": "developing",
      "findings": [
        {
          "category": "bias_testing",
          "rating": "partial",
          "evidence": "testing in progress, needs expansion"
        }
      ]
    },
    "overall_maturity": "level_3",
    "overall_score": 75,
    "recommendations": [
      "Enhance bias detection frameworks across all model families",
      "Implement continuous ethics monitoring",
      "Establish stakeholder review cadence for high-impact models"
    ],
    "timestamp": "2024-01-15T10:30:15Z"
  }
}

Endpoints

GET /

Summary: Root endpoint Description: Returns service status and basic API information.

Parameters: None

Response:

{
  "service": "AI Governance, Security & Ethics Assessment",
  "version": "1.0.0",
  "status": "operational"
}

POST /api/ai-gse/assess

Summary: Assess GSE Description: Submit organizational assessment data across AI Governance, Security, and Ethics domains. Returns detailed maturity scores, findings, and recommendations.

Parameters:

NameTypeRequiredDescription
assessmentDataAssessmentDataYesAssessment responses containing ai_governance, ai_security, and ai_ethics_compliance objects; each with domain-specific attributes. sessionId and timestamp required.
sessionIdstringYesUnique identifier for this assessment session.
userIdinteger or nullNoOptional identifier for the user conducting the assessment.
timestampstringYesISO 8601 timestamp when assessment was submitted.
Request Body Schema (AssessmentData):

FieldTypeRequiredDescription
ai_governanceobjectNoGovernance framework data (policy_framework, risk_assessment_process, approval_workflows, audit_trail, etc.).
ai_securityobjectNoSecurity posture data (model_validation, data_encryption, access_controls, threat_monitoring, etc.).
ai_ethics_complianceobjectNoEthics and compliance data (bias_testing, transparency_documentation, regulatory_alignment, stakeholder_review, etc.).
sessionIdstringYesSession identifier matching parent request.
timestampstringYesTimestamp of assessment data.
Response (200 OK):
{
  "status": "success",
  "sessionId": "string",
  "assessment_results": {
    "ai_governance": {
      "maturity_level": "level_1|level_2|level_3|level_4|level_5",
      "score": 0-100,
      "status": "string",
      "findings": []
    },
    "ai_security": {
      "maturity_level": "string",
      "score": 0-100,
      "status": "string",
      "findings": []
    },
    "ai_ethics_compliance": {
      "maturity_level": "string",
      "score": 0-100,
      "status": "string",
      "findings": []
    },
    "overall_maturity": "string",
    "overall_score": 0-100,
    "recommendations": [],
    "timestamp": "string"
  }
}

Response (422 Validation Error):

{
  "detail": [
    {
      "loc": ["body", "field_name"],
      "msg": "error description",
      "type": "error_type"
    }
  ]
}

GET /api/ai-gse/pillars

Summary: Get Pillars Description: Retrieve framework structure and available assessment categories for all three pillars (Governance, Security, Ethics & Compliance).

Parameters: None

Response (200 OK):

{
  "pillars": [
    {
      "name": "AI Governance",
      "description": "Organizational frameworks and policies",
      "categories": [
        "policy_framework",
        "risk_assessment_process",
        "approval_workflows",
        "audit_trail"
      ]
    },
    {
      "name": "AI Security",
      "description": "Security controls and threat management",
      "categories": [
        "model_validation",
        "data_encryption",
        "access_controls",
        "threat_monitoring"
      ]
    },
    {
      "name": "AI Ethics & Compliance",
      "description": "Ethical safeguards and regulatory alignment",
      "categories": [
        "bias_testing",
        "transparency_documentation",
        "regulatory_alignment",
        "stakeholder_review"
      ]
    }
  ]
}

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.toolweb.in/compliance/ai-governance-security-ethics
  • API Docs: https://api.toolweb.in:8172/docs
数据来源:ClawHub ↗ · 中文优化:龙虾技能库
OpenClaw 技能定制 / 插件定制 / 私有工作流定制

免费技能或插件可能存在安全风险,如需更匹配、更安全的方案,建议联系付费定制

了解定制服务