Token导航 LogoToken导航TokenDH.com
运维external-serviceclawhub未标认证来源可访问clear审计通过

toolweb-network-security-skillstoolweb 网络安全技能

Agent Skill

用于辅助安全审计、权限检查、凭据风险、认证流程和常见漏洞排查。它适合让 Agent 梳理敏感配置、检查依赖风险、分析鉴权逻辑或生成安全复核清单。使用时不能把工具输出直接当最终结论,涉及密钥、令牌、用户数据或生产系统时,应先确认最小权限、脱敏方式和操作边界。

总安装

3,256

周安装

133

GitHub Stars

公开资料未说明

下载量

1,053
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install toolweb-network-security-skills

简介

网络安全专业人员技能评估和路线图生成。

  • 适合技术人员能力诊断和发展规划。
  • 提供技能矩阵、学习资源和认证建议。
  • 需输入工作经验和技术方向进行评估。
  • 建议定期重新评估跟踪技能增长。toolweb-network-security-skills 属于运维类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
Network & Security Skills Assessment Generator API
description
Generates comprehensive skill assessments and personalized learning roadmaps for network and security professionals.

Overview

The Network & Security Skills Assessment Generator API is a comprehensive platform designed to evaluate technical competencies and create tailored career development pathways. Built for security professionals, students, and organizations, this API generates detailed skill assessments, personalized learning roadmaps, and certification guidance based on individual experience levels and career goals.

The API leverages a modular curriculum covering network security, cybersecurity, cloud security, and infrastructure domains. It supports multiple experience levels (beginner, intermediate, advanced), integrates with major certification frameworks, and provides both theoretical knowledge checks and hands-on lab scenarios. Organizations use this tool for talent assessment, employee development planning, and competitive skill gap analysis.

Ideal users include cybersecurity training providers, corporate HR departments, educational institutions, and individual professionals seeking structured career advancement in security roles.

Usage

Sample Request

{
  "candidate_name": "Jane Smith",
  "organization": "Acme Corp",
  "current_role": "Junior Network Administrator",
  "experience_level": "intermediate",
  "target_career": "Network Security Engineer",
  "selected_modules": [
    "network_fundamentals",
    "firewall_management",
    "intrusion_detection",
    "vpn_configuration"
  ],
  "skill_ratings": {
    "network_fundamentals": 4,
    "firewall_management": 3,
    "intrusion_detection": 2,
    "vpn_configuration": 3
  },
  "target_certifications": [
    "CISSP",
    "CEH"
  ],
  "preferred_vendors": [
    "Cisco",
    "Palo Alto Networks"
  ],
  "include_labs": true,
  "include_questions": true,
  "weekly_study_hours": 15
}

Sample Response

{
  "success": true,
  "assessment_html": "<html><body><h1>Skill Assessment Report: Jane Smith</h1><p>Based on selected modules and self-ratings, your current competency profile shows strong fundamentals with growth opportunities in advanced threat detection...</p></body></html>",
  "roadmap_html": "<html><body><h1>Personalized Learning Roadmap</h1><p>Month 1-2: Deep dive into IDS/IPS architecture and deployment (20 hours). Month 3-4: Advanced firewall policy design and VPN protocols (18 hours)...</p></body></html>",
  "certification_html": "<html><body><h1>Certification Pathway</h1><p>CISSP: 18 months (prerequisite: 5 years security experience). CEH: 6-8 months (recommended after completing modules on network security fundamentals)...</p></body></html>",
  "labs_html": "<html><body><h1>Hands-On Lab Scenarios</h1><p>Lab 1: Configure Cisco ASA Firewall Rules. Lab 2: Deploy and Tune Snort IDS. Lab 3: Set up Site-to-Site VPN...</p></body></html>",
  "questions_html": "<html><body><h1>Knowledge Checks</h1><p>Question 1: What is the primary function of a firewall? A) Content filtering B) Network access control... (Correct: B)</p></body></html>",
  "generated_at": "2024-01-15T14:32:00Z"
}

Endpoints

GET /

Summary: Root endpoint

Returns basic API information and status.

Parameters: None

Response:

Content-Type: application/json
{}

GET /api/modules

Summary: Get Modules

Retrieves a list of all available assessment modules (network security, firewall management, intrusion detection, VPN configuration, etc.).

Parameters: None

Response:

Content-Type: application/json
{}

GET /api/careers

Summary: Get Careers

Lists all available career paths and roles in the security domain (Network Security Engineer, Security Architect, Incident Response Analyst, etc.).

Parameters: None

Response:

Content-Type: application/json
{}

GET /api/certifications

Summary: Get Certifications

Returns a catalog of supported certifications (CISSP, CEH, CCNA Security, Security+, etc.) with prerequisite information.

Parameters: None

Response:

Content-Type: application/json
{}

POST /api/generate-assessment

Summary: Generate Assessment

Creates a comprehensive skill assessment and personalized learning roadmap based on candidate profile and selected modules.

Request Body (application/json):

ParameterTypeRequiredDescription
candidate_namestringYesCandidate/Student name
organizationstringNoOrganization or Institution (default: empty string)
current_rolestringYesCurrent job role or student status
experience_levelstringYesExperience level: beginner, intermediate, or advanced
target_careerstringYesTarget career path
selected_modulesarray[string]YesArray of module keys to assess
skill_ratingsobjectNoSelf-rated skills on 1-5 scale (default: {})
target_certificationsarray[string]NoArray of target certification names (default: [])
preferred_vendorsarray[string]NoArray of preferred technology vendors (default: [])
include_labsbooleanNoInclude hands-on lab scenarios (default: true)
include_questionsbooleanNoInclude knowledge checks and questions (default: true)
weekly_study_hoursintegerNoWeekly study hours available (default: 10)

Response (200):

FieldTypeDescription
successbooleanRequest succeeded
assessment_htmlstringHTML-formatted skill assessment report
roadmap_htmlstringHTML-formatted personalized learning roadmap
certification_htmlstringHTML-formatted certification guidance
labs_htmlstring or nullHTML-formatted lab scenarios (if requested)
questions_htmlstring or nullHTML-formatted knowledge checks (if requested)
generated_atstringISO 8601 timestamp of generation

Error Response (422): Returns validation errors if required fields are missing or invalid.


GET /api/module/{module_key}

Summary: Get Module Details

Retrieves detailed information about a specific assessment module including topics, learning outcomes, and prerequisite skills.

Parameters:

ParameterTypeLocationRequiredDescription
module_keystringpathYesUnique identifier for the module (e.g., "network_fundamentals")

Response:

Content-Type: application/json
{}

Error Response (422): Returns validation error if module_key is invalid or not provided.

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/network-security-skills
  • API Docs: https://api.mkkpro.com:8158/docs

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

96.22%
按下载量换算1,013

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

external-service

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

安装前确认

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

来源信息

继续浏览同类 Skills