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

toolweb-cissply工具网 cissply

Agent Skill

toolweb-cissply 用于辅助前端页面、组件、样式和交互逻辑开发,适合在 OpenClaw 中需要维护前端项目、生成组件或检查界面实现时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

2,799

周安装

119

GitHub Stars

公开资料未说明

下载量

981
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install toolweb-cissply

简介

toolweb-cissply 是 CISSP 考试准备测验 API,支持随机题目、进度跟踪与实时评分。

  • 适合在 OpenClaw 中辅助安全专业人员备考,强化知识薄弱环节。
  • 通过 clawhub 安装后,Agent 可提供交互式练习模式和错题本功能。
  • 题库更新频率影响学习效果,建议选择定期同步最新考纲的版本。
  • 适用宿主包括 OpenClaw,接入前应确认版本、权限和运行环境要求。

SKILL.md

name
CISSPly API
description
A CISSP exam preparation quiz API that delivers randomized questions, tracks session progress, and evaluates answers in real-time.

Overview

CISSPly API is a specialized quiz platform designed to help security professionals prepare for the Certified Information Systems Security Professional (CISSP) certification exam. The API manages quiz sessions, delivers curated questions from a secure question bank, and provides instant evaluation of answers with detailed performance metrics.

Built by security experts with CISSP and CISM credentials, CISSPly combines robust session management with intelligent question distribution to create an effective study tool. The platform supports custom quiz lengths, tracks time-on-task metrics, and delivers comprehensive scoring analysis to help users identify knowledge gaps across CISSP domains.

Ideal users include cybersecurity professionals pursuing CISSP certification, training organizations delivering exam prep programs, and individuals seeking structured, API-driven learning platforms with granular performance tracking.

Usage

Example: Start a Quiz Session

Request:

{
  "sessionId": "user-12345-session-001",
  "numQuestions": 50
}

cURL:

curl -X POST https://api.toolweb.in/tools/cissply/api/quiz/start \
  -H "Content-Type: application/json" \
  -d '{
    "sessionId": "user-12345-session-001",
    "numQuestions": 50
  }'

Response:

{
  "sessionId": "user-12345-session-001",
  "totalQuestions": 50,
  "questions": [
    {
      "questionId": 1,
      "text": "Which of the following is a primary function of the CISSP certification?",
      "options": [
        "Validates cybersecurity knowledge",
        "Provides coding expertise",
        "Certifies network administration",
        "Ensures software development skills"
      ],
      "category": "Security and Risk Management"
    },
    {
      "questionId": 2,
      "text": "What does CIA stand for in information security?",
      "options": [
        "Confidentiality, Integrity, Availability",
        "Central Intelligence Agency",
        "Compliance, Integration, Audit",
        "Cryptography, Identity, Authorization"
      ],
      "category": "Security and Risk Management"
    }
  ],
  "status": "started",
  "timestamp": "2024-01-15T10:30:00Z"
}

Example: Submit Quiz Answers

Request:

{
  "sessionId": "user-12345-session-001",
  "answers": [0, 2, 1, 3, null],
  "timeTaken": 1800
}

cURL:

curl -X POST https://api.toolweb.in/tools/cissply/api/quiz/submit \
  -H "Content-Type: application/json" \
  -d '{
    "sessionId": "user-12345-session-001",
    "answers": [0, 2, 1, 3, null],
    "timeTaken": 1800
  }'

Response:

{
  "sessionId": "user-12345-session-001",
  "totalQuestions": 5,
  "correctAnswers": 3,
  "score": 60,
  "timeTaken": 1800,
  "results": [
    {
      "questionId": 1,
      "userAnswer": 0,
      "correctAnswer": 0,
      "isCorrect": true,
      "category": "Security and Risk Management"
    },
    {
      "questionId": 2,
      "userAnswer": 2,
      "correctAnswer": 0,
      "isCorrect": false,
      "category": "Security and Risk Management"
    }
  ],
  "categoryPerformance": {
    "Security and Risk Management": 60,
    "Access Control": 100,
    "Cryptography": 50
  },
  "timestamp": "2024-01-15T10:40:00Z"
}

Endpoints

GET /

Summary: Root

Returns basic service information.

Parameters: None

Response: Service metadata and available endpoints.


GET /health

Summary: Health Check

Health check endpoint to verify service availability and status.

Parameters: None

Response: Health status indicator.


POST /api/quiz/start

Summary: Start Quiz

Initiates a new quiz session with randomized questions.

Parameters:

NameTypeRequiredDescription
sessionIdstringYesUnique identifier for the quiz session
numQuestionsintegerYesNumber of questions to include in the quiz (1-100)

Request Body Schema:

{
  "sessionId": "string",
  "numQuestions": 0
}

Response: Quiz session object with randomized questions, metadata, and session status.

Status Codes:

  • 200: Quiz session started successfully
  • 422: Validation error (invalid parameters)

POST /api/quiz/submit

Summary: Submit Quiz

Submits completed quiz answers and receives immediate evaluation.

Parameters:

NameTypeRequiredDescription
sessionIdstringYesSession identifier from the started quiz
answersarray[integer \null]YesArray of answer indices; use null for unanswered questions
timeTakenintegerYesTime spent on quiz in seconds

Request Body Schema:

{
  "sessionId": "string",
  "answers": [0, 1, null, 2],
  "timeTaken": 1800
}

Response: Detailed results including score, correct/incorrect answers, category breakdown, and performance metrics.

Status Codes:

  • 200: Quiz evaluated successfully
  • 422: Validation error (mismatched answer count or invalid session)

POST /api/quiz/evaluate

Summary: Evaluate Quiz

Evaluates quiz answers and returns detailed results and analysis.

Parameters:

NameTypeRequiredDescription
dataobjectYesQuiz evaluation data (flexible schema)

Request Body Schema:

{
  "sessionId": "string",
  "answers": [0, 1, 2],
  "timeTaken": 1800
}

Response: Comprehensive evaluation results with scoring breakdown by domain and recommendation data.

Status Codes:

  • 200: Evaluation completed successfully
  • 422: Validation error

POST /api/admin/reload

Summary: Reload Questions

Reloads question database from Excel source files (admin-only endpoint).

Parameters: None

Authentication: Admin credentials required

Response: Confirmation of question reload with updated question count and categories.

Status Codes:

  • 200: Questions reloaded successfully
  • 403: Unauthorized (admin credentials required)

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/tools/cissply
  • API Docs: https://api.toolweb.in:8175/docs

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

77.41%
按下载量换算759

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

通过

权限和风险

external-service

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

安装前确认

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

来源信息

继续浏览同类 Skills