Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计通过

securevibes-scanner安全振动扫描仪

Agent Skill

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

总安装

22,058

周安装

910

GitHub Stars

公开资料未说明

下载量

7,207
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install securevibes-scanner

简介

基于人工智能驱动的应用程序安全扫描工具,可检测代码漏洞与生成威胁模型。

  • 适用于开发阶段的安全自查、架构评审或第三方组件风险排查任务。
  • 通过 clawhub 安装后直接运行扫描任务,输出结构化安全报告。
  • 需确认是否访问源代码、依赖项路径及是否产生外部网络请求。
  • securevibes-scanner 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
securevibes-scanner
description
Run AI-powered application security scans on codebases. Use when asked to scan code for security vulnerabilities, generate threat models, review code for security issues, run incremental security scans, or set up continuous security monitoring via cron. Supports full scans (one-shot) and incremental scans (cron-driven, only new commits).

SecureVibes Scanner

AI-native security platform that detects vulnerabilities using Claude AI. Multi-subagent pipeline: assessment → threat modeling → code review → report generation → optional DAST. Supports incremental scanning for continuous monitoring.

Prerequisites

  1. Install the CLI: pipx install securevibes (preferred) or uv tool install securevibes. Avoid pip install — it can create stale shims if you have multiple Python environments.
  2. Authenticate with Anthropic (one of):

- Max/Pro subscription (recommended): If you're authenticated via Claude Code or Claude CLI OAuth, no API key is needed. The Claude Agent SDK picks up your OAuth session automatically. When running inside OpenClaw, leave ANTHROPIC_API_KEY unset or blank — the SDK handles auth. - API key: export ANTHROPIC_API_KEY=your-key-here (from console.anthropic.com)

Security Notes

  • Always use the scripts/scan.sh wrapper for full scans — it validates paths and rejects shell metacharacters before invoking securevibes.
  • Never interpolate unsanitized user input into shell commands.
  • The wrapper uses realpath to resolve paths safely and rejects any path containing ;, |, &, $, backticks, or other metacharacters.
  • Scan targets must be local directories. Clone remote repos to a known safe location first, then pass the resolved path to the wrapper.
  • DAST scans make network requests to the --target-url you provide. Only use against apps you own or have permission to test.

Execution Model

Full scans take 10-30 minutes across 4 phases. Run them as background jobs (cron or subagent), not inline.

Incremental scans take 2-10 minutes — they only scan commits since the last run.

Full Scan (One-Shot)

Running a Scan

  1. Clone the target repo to a local directory
  2. Run the wrapper script: bash scripts/scan.sh /path/to/repo --force --debug
  3. Results appear in /path/to/repo/.securevibes/

Background Execution (Recommended)

For OpenClaw users, schedule scans as cron jobs:

  • Use sessionTarget: "isolated" with payload.kind: "agentTurn"
  • Set payload.timeoutSeconds: 2700 (45 minutes) to allow all phases to complete
  • Use delivery.mode: "announce" to get notified when done

The agentTurn message should instruct the subagent to:

  1. cd into the repo and git pull for latest code
  2. Clean previous .securevibes/ artifacts
  3. Run securevibes scan . --force via the wrapper script
  4. Read and summarize the results from .securevibes/scan_report.md

Incremental Scan (Continuous Monitoring)

The incremental scanner (ops/incremental_scan.py) tracks the last-scanned commit and only scans new commits. Designed for cron-driven continuous security monitoring.

How It Works

  1. Tracks an anchor commit in .securevibes/incremental_state.json
  2. On each run: fetches remote, compares HEAD to anchor
  3. If new commits exist: runs securevibes pr-review on the diff
  4. Updates anchor to new HEAD after successful scan
  5. If no new commits: exits cleanly (no scan, no cost)

Setup

Step 1: Run an initial full scan (if not already done)

The incremental scanner requires .securevibes/SECURITY.md and .securevibes/THREAT_MODEL.json to exist. These come from an initial full scan:

securevibes scan <repo-path> --model sonnet

Skip this step if the repo already has a .securevibes/ directory with these files.

Step 2: Bootstrap incremental state

Run the wrapper once to seed the anchor commit (no scan runs, just records current HEAD):

python3 ops/incremental_scan.py --repo <repo-path> --remote origin --branch main

This creates .securevibes/incremental_state.json with status: "bootstrap".

Step 3: Configure the cron

For OpenClaw users, create a cron job:

openclaw cron create \
  --name "securevibes-incremental" \
  --cron "*/30 * * * *" \
  --tz "America/Los_Angeles" \
  --agent main \
  --session isolated \
  --timeout-seconds 900 \
  --announce \
  --message "Run incremental security scan: python3 <skill-path>/ops/incremental_scan.py --repo <repo-path> --remote origin --branch main --model sonnet --severity medium --scan-timeout-seconds 600. Read .securevibes/incremental_scan.log for results. If new findings, summarize them."

Replace <skill-path> with the installed skill path and <repo-path> with the target repo.

Step 4: Verify

# Check state
cat <repo-path>/.securevibes/incremental_state.json

# After first scheduled run, check logs
tail -10 <repo-path>/.securevibes/incremental_scan.log

# Check findings
cat <repo-path>/.securevibes/PR_VULNERABILITIES.json

Incremental Scanner Options

python3 ops/incremental_scan.py [options]
OptionDescription
--repoRepository path (default: .)
--branchBranch to track (default: main)
--remoteGit remote (default: origin)
--modelClaude model: sonnet, haiku (default: sonnet)
--severityMinimum severity: critical, high, medium, low
--scan-timeout-secondsTimeout per scan command (default: 900)
--git-timeout-secondsTimeout for git operations (default: 60)
--rewrite-policyHistory rewrite handling: reset_warn, strict_fail, since_date
--sinceOverride: scan commits since this date (ISO or YYYY-MM-DD)

Operational Guarantees

  • File lock at .securevibes/.incremental_scan.lock prevents overlapping runs
  • Atomic state writes (fsync + os.replace) prevent corruption
  • Structured logging at .securevibes/incremental_scan.log
  • Run records saved to .securevibes/incremental_runs/ (one JSON per run)

Rewrite Policy

When last_seen_sha is not an ancestor of the new remote HEAD (e.g., force push):

PolicyBehavior
reset_warnReset anchor to new HEAD, continue
strict_failFail and keep current anchor
since_dateRun a --since <today> scan for visibility, keep previous anchor

Full Scan Commands Reference

Scan

securevibes scan <path> [options]

OptionDescription
-f, --formatmarkdown (default), json, text, table
-o, --outputCustom output path
-s, --severityFilter: critical, high, medium, low
-m, --modelClaude model (e.g., sonnet, haiku)
--subagentRun one phase: assessment, threat-modeling, code-review, report-generator, dast
--resume-fromResume from a specific phase onwards
--dastEnable dynamic testing (requires --target-url)
--target-urlURL for DAST (e.g., http://localhost:3000)
--forceSkip prompts, overwrite existing artifacts
--quietMinimal output
--debugVerbose diagnostics

Report

securevibes report <path> — Display a previously saved scan report.

Mapping Requests to Actions

User SaysAction
"Scan this for security issues"Full scan: bash scripts/scan.sh <path> --force
"Quick security check"Full scan: bash scripts/scan.sh <path> -m haiku --force
"Threat model this project"bash scripts/scan.sh <path> --subagent threat-modeling --force
"Just review the code"bash scripts/scan.sh <path> --subagent code-review --force
"Show only critical/high findings"bash scripts/scan.sh <path> -s high --force
"Full audit with DAST"bash scripts/scan.sh <path> --dast --target-url <url> --force
"Set up continuous scanning"Incremental setup: Steps 1-4 above
"Monitor this repo for security issues"Incremental setup: Steps 1-4 above
"Show last scan results"securevibes report <path>

Subagent Pipeline

Runs sequentially. Each phase builds on the previous:

  1. assessment → Architecture & attack surface → .securevibes/SECURITY.md
  2. threat-modeling → STRIDE-based analysis → .securevibes/THREAT_MODEL.json
  3. code-review → Vulnerability detection → .securevibes/VULNERABILITIES.json
  4. report-generator → Consolidated report → .securevibes/scan_report.md
  5. dast (optional) → Dynamic validation against running app

Presenting Results

After a scan completes:

  1. Read .securevibes/scan_report.md (or .securevibes/scan_results.json for structured data)
  2. Summarize: total findings by severity (Critical > High > Medium > Low)
  3. Highlight top 3 most critical with file locations and remediation
  4. Offer next steps: run DAST, fix specific issues, re-scan after changes

Links

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

79.88%
按下载量换算5,757

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

未展示

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

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

来源信息

继续浏览同类 Skills