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

toolweb-kubernetes-hardeningtoolweb Kubernetes hardening 部署

Agent Skill

用于辅助云资源、部署、容器、基础设施和运维自动化任务。它适合让 Agent 检查配置、整理部署步骤、分析资源状态、生成排障思路或辅助云服务接入。使用时需要明确目标环境、账号权限、区域和资源组,区分本地测试与生产操作;涉及删除资源、重启服务、修改网络或权限配置时,应先确认影响范围。

总安装

5,762

周安装

245

GitHub Stars

公开资料未说明

下载量

2,019
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install toolweb-kubernetes-hardening

简介

Kubernetes集群安全强化建议和配置生成。

  • 适用于云原生环境安全加固和合规检查。
  • 提供RBAC配置、网络策略和镜像安全建议。
  • 需输入集群版本和安全需求定制方案。
  • 重要配置变更前应备份现有状态。toolweb-kubernetes-hardening 属于开发类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
Kubernetes Hardening Tool
description
Generates security hardening recommendations and configurations for Kubernetes clusters based on specified hardening options.

Overview

The Kubernetes Hardening Tool is a security-focused API that generates comprehensive hardening recommendations and configurations for Kubernetes environments. Designed for DevSecOps teams, security engineers, and infrastructure professionals, this tool automates the process of identifying and implementing security best practices across Kubernetes clusters.

The tool accepts detailed hardening preferences and contextual information, then returns tailored security configurations and recommendations. It integrates seamlessly into CI/CD pipelines, infrastructure-as-code workflows, and security compliance frameworks, enabling organizations to maintain consistent, audit-ready Kubernetes security postures.

Ideal users include security teams implementing CIS Kubernetes Benchmarks, platform engineers building secure multi-tenant clusters, and compliance-focused organizations requiring documented hardening strategies.

Usage

Sample Request

{
  "sessionId": "sess_abc123def456",
  "userId": 1001,
  "timestamp": "2024-01-15T14:30:00Z",
  "hardeningOptions": {
    "rbac": ["enable-strict-policies", "service-account-isolation"],
    "network": ["deny-all-ingress", "deny-all-egress", "enable-network-policies"],
    "pod-security": ["restrict-privileged-containers", "enforce-read-only-filesystem"],
    "audit": ["enable-audit-logging", "log-authentication-events"]
  }
}

Sample Response

{
  "status": "success",
  "sessionId": "sess_abc123def456",
  "timestamp": "2024-01-15T14:30:15Z",
  "hardeningConfigurations": {
    "rbac": {
      "policies": [
        {
          "kind": "ClusterRole",
          "name": "restricted-viewer",
          "rules": [
            {
              "apiGroups": [""],
              "resources": ["pods"],
              "verbs": ["get", "list"]
            }
          ]
        }
      ],
      "serviceAccounts": ["default-restricted"]
    },
    "network": {
      "networkPolicies": [
        {
          "apiVersion": "networking.k8s.io/v1",
          "kind": "NetworkPolicy",
          "metadata": { "name": "deny-all-ingress" },
          "spec": {
            "podSelector": {},
            "policyTypes": ["Ingress"]
          }
        }
      ]
    },
    "pod-security": {
      "policies": [
        {
          "apiVersion": "policy/v1beta1",
          "kind": "PodSecurityPolicy",
          "metadata": { "name": "restricted" },
          "spec": {
            "privileged": false,
            "readOnlyRootFilesystem": true
          }
        }
      ]
    },
    "audit": {
      "auditPolicy": {
        "apiVersion": "audit.k8s.io/v1",
        "kind": "Policy",
        "rules": [
          {
            "level": "RequestResponse",
            "omitStages": ["RequestReceived"],
            "resources": ["secrets"]
          }
        ]
      }
    }
  },
  "recommendations": [
    "Enable Pod Security Standards in addition to deprecated PodSecurityPolicy",
    "Implement OPA/Gatekeeper for policy enforcement",
    "Configure encrypted secrets at rest"
  ]
}

Endpoints

POST /api/hardening/generate

Generates comprehensive Kubernetes hardening configurations and security recommendations based on provided hardening options and session context.

Method: POST

Path: /api/hardening/generate

Description: Analyzes the specified hardening options and generates Kubernetes security configurations including RBAC policies, network policies, pod security policies, and audit logging settings.

Parameters

NameTypeRequiredDescription
sessionIdstringYesUnique session identifier for tracking and auditing purposes
userIdinteger or nullYesUser identifier associated with the hardening request; can be null for anonymous requests
timestampstringYesISO 8601 formatted timestamp of the request
hardeningOptionsobjectYesMap of hardening categories to arrays of specific hardening options to apply
hardeningOptions.rbacarray of stringsConditionalRBAC hardening options (e.g., "enable-strict-policies", "service-account-isolation")
hardeningOptions.networkarray of stringsConditionalNetwork policy options (e.g., "deny-all-ingress", "enable-network-policies")
hardeningOptions.pod-securityarray of stringsConditionalPod security options (e.g., "restrict-privileged-containers", "enforce-read-only-filesystem")
hardeningOptions.auditarray of stringsConditionalAudit logging options (e.g., "enable-audit-logging", "log-authentication-events")

Response

Success (200): Returns a JSON object containing:

  • status: Operation status indicator
  • sessionId: Echo of the input session ID
  • timestamp: Response timestamp
  • hardeningConfigurations: Object with generated Kubernetes manifests and configurations organized by category
  • recommendations: Array of additional security recommendations and best practices

Validation Error (422): Returns an HTTPValidationError object with:

  • detail: Array of validation errors, each containing:

- loc: Array indicating the location of the error in the request - msg: Human-readable error message - type: Error classification

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/hardening/kubernetes
  • API Docs: https://api.mkkpro.com:8126/docs

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

89.51%
按下载量换算1,807

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

external-service

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

安装前确认

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

来源信息

继续浏览同类 Skills