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

toolweb-ir-readinessToolweb IR 准备情况

Agent Skill

toolweb-ir-readiness 用于补充效率相关能力,适合在 OpenClaw 中需要让 Agent 承接效率相关任务时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

3,255

周安装

137

GitHub Stars

公开资料未说明

下载量

1,140
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install toolweb-ir-readiness

简介

事件响应能力成熟度评估框架工具。适用宿主包括 OpenClaw,接入前应确认版本、权限和运行环境要求。

  • 适用于安全团队能力建设和改进规划。
  • 提供阶段性评估和改进建议。toolweb-ir-readiness 属于效率类 Skill,可作为该场景下的辅助能力补充。
  • 需输入现有流程和资源配置评估指标。
  • 建议结合演练结果持续优化响应机制。

SKILL.md

name
IR Readiness Assessment
description
Comprehensive evaluation of incident response capabilities with maturity scoring and phase-based assessment framework.

Overview

The IR Readiness Assessment API provides organizations with a structured, comprehensive evaluation of their incident response capabilities. This tool enables security teams to benchmark their IR maturity against industry standards, identify capability gaps, and track improvement over time through scored assessments across defined IR phases.

Built for security professionals who need to understand and improve their organization's ability to detect, respond to, and recover from security incidents, this API delivers objective maturity scoring based on detailed questionnaire responses. The assessment framework covers the full incident response lifecycle and provides actionable insights aligned with NIST, SANS, and industry best practices.

Ideal users include Chief Information Security Officers (CISOs), incident response managers, security consultants, and organizations undergoing compliance audits or maturity improvement programs.

Usage

Example Request

{
  "sessionId": "ir-assessment-2024-001",
  "userId": 12345,
  "timestamp": "2024-01-15T10:30:00Z",
  "assessmentData": {
    "sessionId": "ir-assessment-2024-001",
    "timestamp": "2024-01-15T10:30:00Z",
    "responses": {
      "q1_preparation": 4,
      "q2_detection": 3,
      "q3_containment": 3,
      "q4_eradication": 2,
      "q5_recovery": 2,
      "q6_lessons_learned": 1,
      "q7_tools_integration": 4,
      "q8_team_training": 2
    }
  }
}

Example Response

{
  "sessionId": "ir-assessment-2024-001",
  "userId": 12345,
  "timestamp": "2024-01-15T10:30:00Z",
  "maturityScore": 2.625,
  "maturityLevel": "Defined",
  "phaseScores": {
    "preparation": 4.0,
    "detection": 3.0,
    "containment": 3.0,
    "eradication": 2.0,
    "recovery": 2.0,
    "lessons_learned": 1.0
  },
  "assessment_summary": {
    "overall_maturity": "Defined",
    "strengths": ["Strong preparation capabilities", "Good detection mechanisms"],
    "gaps": ["Eradication processes need improvement", "Recovery procedures incomplete"],
    "recommendations": [
      "Develop formalized eradication procedures",
      "Enhance recovery plan documentation",
      "Increase team training frequency"
    ]
  },
  "complianceMapping": {
    "nist_csf": "Respond.RP",
    "iso27035": "Maturity Level 2"
  }
}

Endpoints

GET /

Health Check Endpoint

Verifies API availability and basic connectivity.

Method: GET

Path: /

Parameters: None

Response: JSON object confirming service status.


POST /api/ir-assessment/evaluate

Evaluate IR Readiness Assessment

Processes assessment responses and returns comprehensive maturity scoring, phase-based breakdowns, gap analysis, and recommendations.

Method: POST

Path: /api/ir-assessment/evaluate

Parameters:

NameTypeRequiredDescription
sessionIdstringYesUnique identifier for the assessment session
userIdintegerNoIdentifier of the user conducting the assessment
timestampstringYesISO 8601 timestamp of the assessment submission
assessmentDataobjectYesContainer for assessment response data
assessmentData.sessionIdstringYesSession identifier matching parent sessionId
assessmentData.timestampstringYesTimestamp of assessment data capture
assessmentData.responsesobjectYesKey-value pairs where keys are question identifiers and values are integer scores (typically 1-5)

Response Schema:

  • sessionId (string): Assessment session identifier
  • userId (integer, nullable): User who conducted the assessment
  • timestamp (string): Response generation timestamp
  • maturityScore (number): Overall maturity score (0-5 scale)
  • maturityLevel (string): Maturity rating (e.g., "Initial", "Repeatable", "Defined", "Managed", "Optimized")
  • phaseScores (object): Scores for each IR phase (preparation, detection, containment, eradication, recovery, lessons_learned)
  • assessment_summary (object): Contains overall_maturity, strengths, gaps, and recommendations arrays
  • complianceMapping (object): Alignment with NIST CSF and ISO 27035 maturity models

GET /api/ir-assessment/phases

Retrieve Phase Definitions

Returns definitions of all IR phases included in the assessment framework.

Method: GET

Path: /api/ir-assessment/phases

Parameters: None

Response Schema:

JSON object containing phase definitions, including:

  • Phase identifiers and names
  • Description of scope and objectives for each phase
  • Key control areas and evaluation criteria
  • Typical timeline and resource requirements

GET /api/ir-assessment/maturity-levels

Retrieve Maturity Level Definitions

Returns framework definitions for maturity levels and scoring thresholds.

Method: GET

Path: /api/ir-assessment/maturity-levels

Parameters: None

Response Schema:

JSON object containing:

  • Maturity level names and identifiers
  • Score ranges for each level
  • Characteristics and capabilities at each maturity stage
  • Progression pathways and typical improvement recommendations

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/security/ir-readiness
  • API Docs: https://api.mkkpro.com:8107/docs

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

75.01%
按下载量换算855

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

通过

权限和风险

external-service

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

安装前确认

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

来源信息

继续浏览同类 Skills