Token导航 LogoToken导航TokenDH.com
研究检索执行命令clawhub未标认证来源可访问clear审计提醒

secopsai-skill塞科赛技能

Agent Skill

secopsai-skill 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

8,861

周安装

355

GitHub Stars

1

下载量

2,868
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install secopsai-skill

简介

OpenClaw 审计日志的对话式 SecOps。运行实时检测管道、检查结果、对事件进行分类并获取缓解指导——所有这些都可以通过聊天进行。

SKILL.md

name
secopsai
description
Conversational SecOps for OpenClaw audit logs. Run the live detection pipeline, inspect findings, triage incidents, and get mitigation guidance — all from chat.

SecOpsAI Skill for OpenClaw

This skill lets an OpenClaw agent:

  • Run the secopsai OpenClaw detection pipeline
  • List and summarise findings from the local SOC store
  • Investigate and close findings by ID with the native triage workflow
  • Run the native triage orchestrator, inspect queued actions, and apply approved actions
  • Get structured mitigation steps for any finding
  • Run a local-first threat intelligence (IOC) pipeline and match IOCs against OpenClaw replay
  • Review PyPI and npm package releases for supply-chain compromise
  • Suggest false-positive actions for suspicious supply-chain findings

Assumptions

  • secopsai is installed at ~/secopsai, preferably via a transparent repo checkout / manual setup flow such as:

- git clone https://github.com/Techris93/secopsai.git ~/secopsai - cd ~/secopsai && python3 -m venv .venv && source .venv/bin/activate && pip install -r requirements.txt

  • OpenClaw audit logs are present at ~/.openclaw/logs/ on the same host.
  • The agent has access to an exec tool to run shell commands.
  • The virtualenv at ~/secopsai/.venv is used for all commands.

If installation guidance is needed, prefer pointing users to the GitHub repo/manual setup path first. Only mention the hosted installer as an optional shortcut, not the default recommendation.


Safety defaults (read this)

This skill can run shell commands and can modify the local SOC store when performing triage.

  • Prefer read-only operations by default (list/show/check).
  • Before any write/triage action (triage close, triage orchestrate, triage apply-action), require explicit user confirmation.
  • If you enable scheduled jobs, ensure they run under a controlled account and that automated writes are intended.
  • Backup the SOC DB (data/openclaw/findings/openclaw_soc.db) before enabling unattended automation.

Command Mappings

1. Show findings

User phrases:

  • "show findings"
  • "show today's findings"
  • "list findings"
  • "what findings do we have"

Exec command:

cd "$HOME/secopsai" && source .venv/bin/activate && \
  secopsai list --severity info --json --cache-ttl 60

(--json also works before the subcommand, e.g. secopsai --json list ....)

Agent behaviour:

  • Parse the JSON payload from secopsai list (field: findings).
  • For each finding, extract: finding_id, severity, status, disposition, title.
  • Reply with:

- Total count - Count by severity (HIGH / MEDIUM / LOW / INFO) - List of HIGH (and MEDIUM) findings with ID and title


2. Run daily pipeline

User phrases:

  • "run daily pipeline"
  • "run secops scan"
  • "refresh findings"
  • "run live"

Exec command:

cd "$HOME/secopsai" && source .venv/bin/activate && \
  secopsai refresh --json && \
  secopsai list --severity high --json --cache-ttl 300

Agent behaviour:

  • Run the pipeline once (refresh) and then list current high-severity findings.
  • From the list JSON output, highlight NEW or HIGH/CRITICAL findings (based on

first_seen/last_seen fields when available).

Example reply:

Daily SecOps summary: 3 high-severity findings. - HIGH: OCF-C9D2523C770B6731 — OpenClaw Dangerous Exec / Tool Burst (status=open) - HIGH: OCF-62FA8D1D3578BF6E — OpenClaw Sensitive Config (status=open) Reply triage OCF-... to mark as reviewed, or mitigate OCF-... for remediation steps.

3. Investigate a finding

User phrases:

  • investigate SCM-<ID>
  • triage OCF-<ID>
  • investigate EXFIL-<ID>

Exec command:

cd "$HOME/secopsai" && source .venv/bin/activate && \
  secopsai triage investigate <FINDING_ID> --search-root "$HOME/secopsai" --json

Agent behaviour:

  • Summarise:

- recommended disposition - dependency presence - policy matches - verdict explanation - next actions

  • For supply-chain findings, if helpful, follow with:
cd "$HOME/secopsai" && source .venv/bin/activate && \
  secopsai supply-chain suggest-fp-action <FINDING_ID> --search-root "$HOME/secopsai" --json

4. Close a finding (WRITE)

Important: this modifies the local SOC store. Confirm with the user before running.

User phrases:

  • close SCM-<ID> as expected_behavior
  • close OCF-<ID> as needs_review note "..."

Exec command pattern:

cd "$HOME/secopsai" && source .venv/bin/activate && \
  secopsai triage close <FINDING_ID> --disposition <TYPE> --note "<analyst note>" --json

Agent behaviour:

Confirm back with the final status and disposition.


5. Show a single finding in detail

User phrases:

  • show OCF-<ID>
  • details OCF-<ID>

Exec command:

cd "$HOME/secopsai" && source .venv/bin/activate && \
  secopsai show OCF-<ID> --json

Agent behaviour:

Parse and summarise the JSON: title, severity, status, disposition, rule IDs, number of events, first/last seen. Prefer the structured fields from secopsai show and avoid re-parsing raw text.


6. Run the triage orchestrator (WRITE)

Important: this can auto-close clearly safe findings. Confirm with the user before running.

User phrases:

  • run triage orchestrator
  • orchestrate findings
  • process open findings

Exec command:

cd "$HOME/secopsai" && source .venv/bin/activate && \
  secopsai triage orchestrate --search-root "$HOME/secopsai" --limit 20 --json

Agent behaviour:

  • Summarise:

- processed - auto_applied - queued - top per-finding outcomes

  • If queued actions exist, offer:
cd "$HOME/secopsai" && source .venv/bin/activate && \
  secopsai triage queue --json

and, after approval:

cd "$HOME/secopsai" && source .venv/bin/activate && \
  secopsai triage apply-action ACT-0001 --yes --json

7. Check for malware or exfil

User phrases:

  • "check malware"
  • "check exfil"
  • "check both"
  • "any malware findings?"

Exec command pattern:

cd "$HOME/secopsai" && source .venv/bin/activate && \
  secopsai check --type <malware|exfil|both> --severity medium --json --cache-ttl 60

Agent behaviour:

Parse the JSON (check payload: findings_total, matched_count, high_or_above, top_matches) and reply with a compact summary:

Malware check: 2 matching findings (1 HIGH). Top: OCF-C9D2523C770B6731, HIGH — OpenClaw Dangerous Exec / Policy Denials.

8. Mitigate a finding (recommended actions)

User phrases:

  • mitigate OCF-<ID>
  • show mitigation OCF-<ID>
  • what should I do for OCF-<ID>

Exec command:

cd "$HOME/secopsai" && source .venv/bin/activate && \
  secopsai mitigate OCF-<ID> --json --cache-ttl 60

Expected JSON fields: finding_id, title, severity, status, disposition, rule_ids, recommended_actions (list of strings).

Agent behaviour:

Reply with a numbered list of the recommended_actions. Example:

Mitigation steps for OCF-C9D2523C770B6731 (HIGH — OpenClaw Dangerous Exec / Tool Burst): 1. Identify which agent or skill issued the dangerous execs and confirm business justification. 2. If unauthorized, disable or restrict that skill/tool configuration in OpenClaw. 3. Rotate any secrets used in the commands (tokens, SSH keys, API keys). 4. Add stricter policy/approval requirements for high-risk exec operations.

If recommended_actions is empty or missing:

No curated mitigation steps are available yet for this finding. Recommended next steps: review the associated events, confirm if the behaviour is expected, and restrict any over-permissive skills or credentials used.

Threat Intel (IOCs)

7. Refresh IOC feeds

User phrases:

  • "refresh intel"
  • "update iocs"
  • "pull threat intel"

Exec command:

cd "$HOME/secopsai" && source .venv/bin/activate && \
  secopsai intel refresh --json

Agent behaviour:

  • Parse JSON and report total IOCs and any feed errors.
  • Do not call external paid enrichment APIs by default.

8. Match IOCs against OpenClaw replay

User phrases:

  • "match intel"
  • "check iocs"
  • "any intel matches"

Exec command:

cd "$HOME/secopsai" && source .venv/bin/activate && \
  secopsai intel match --limit-iocs 500 --json

Agent behaviour:

  • Parse matched_findings.
  • If matches exist, list the top 3 TI-... finding IDs and titles and offer show TI-....

Supply Chain Monitoring

9. Scan a package release

User phrases:

  • "scan this PyPI package release"
  • "check this npm package version"
  • "review package diff"

Exec command:

cd "$HOME/secopsai" && source .venv/bin/activate && \
  secopsai supply-chain scan --ecosystem pypi --package requests --version 2.32.0 --json

Agent behaviour:

  • Parse result.verdict, result.finding_id, and result.report_path.
  • If verdict is malicious, offer show <finding_id>.

10. Scan recent top-package releases

User phrases:

  • "check recent package releases"
  • "run supply chain monitor"
  • "scan recent PyPI and npm releases"

Exec command:

cd "$HOME/secopsai" && source .venv/bin/activate && \
  secopsai supply-chain once --top 1000 --lookback 600 --json

Agent behaviour:

  • Parse total_scanned, malicious, benign, errors, and results.
  • If malicious findings exist, list the SCM-... IDs and package versions.

Daily Summary (OpenClaw cron)

Configure an OpenClaw cron job to drive the secopsai CLI and produce a concise chat summary.

  • Schedule: 30 7 * * * (07:30 local)
  • Action (systemEvent text):
[SECOPS_DAILY_SUMMARY_TRIGGER] Run the SecOpsAI pipeline and summarise new/high
findings for this chat.

Suggested steps for the agent:
1) cd "$HOME/secopsai" && source .venv/bin/activate
2) secopsai refresh --json
3) secopsai list --severity high --json --cache-ttl 300
4) Focus on high/critical findings first_seen in the last 24h.
5) Post a compact summary back into this conversation.

When this fires the agent should:

  1. Execute the secopsai commands via exec.
  2. Parse the JSON findings payload from secopsai list --severity high --json.
  3. Post a summary: total count, HIGH/CRITICAL breakdown, and top finding IDs with

titles and status.

  1. Invite the user to triage OCF-... or mitigate OCF-... any flagged item.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

93.14%
按下载量换算2,671

安全审计

VirusTotal

可疑

ClawScan

通过

Static analysis

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 openclaw skills install secopsai-skill 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

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

来源信息

继续浏览同类 Skills