Skill flagged — suspicious patterns detected

ClawHub Security flagged this skill as suspicious. Review the scan results before using.

Srs

Automation skill for Srs.

MIT-0 · Free to use, modify, and redistribute. No attribution required.
0 · 22 · 0 current installs · 0 all-time installs
MIT-0
Security Scan
VirusTotalVirusTotal
Suspicious
View report →
OpenClawOpenClaw
Benign
medium confidence
Purpose & Capability
Name/description (SRS) match the included code and SKILL.md: the package implements task evaluation, role matching, knowledge-base review, and task orchestration. The functionality requested (reading project dirs, managing a ~/.openclaw workspace, launching local task scripts) is coherent with a Security Research System.
Instruction Scope
SKILL.md directs running the srs CLI and performing reviews/tasks. The implementation scans user directories (e.g. ~/ai-security/research, ~/.openclaw/workspace, and other home paths), reads .md/.yaml/.json files, and will run local scripts via subprocess. This stays within the stated SRS purpose but means the skill will access and process potentially sensitive local files and can execute local scripts — review what it will see/execute.
Install Mechanism
There is no external install step (no downloads), but the bundle includes Python code files that will be available to the agent and can be executed. No high-risk external install URLs or archive extraction are used.
Credentials
The skill does not request environment variables, credentials, or external config paths in metadata. The code writes to ~/.openclaw/workspace and other user-home paths — appropriate for a local agent skill but persistent storage access is required for its functionality.
Persistence & Privilege
The skill writes persistent files under the user's home (~/.openclaw/workspace/srs) and creates role/capability JSON files. always=false (no forced inclusion). Autonomous invocation is allowed by default (platform normal), so the skill could run these actions when invoked by the agent — consider this if you allow autonomous tasks.
Assessment
This skill appears to implement a local Security Research System and is coherent with that purpose, but it will: (1) scan folders in your home directory (~/ai-security/research, ~/.openclaw/workspace, etc.) and read .md/.json/.yaml files; (2) write persistent files under ~/.openclaw/workspace/srs (capabilities.json, role files, results); and (3) execute local Python scripts via subprocess (e.g., tasks/run_*.py) if present. Before installing: review the included Python files (srs.py, self_governor.py, parallel_executor.py, coordination.py) to confirm behavior; ensure there are no unexpected network calls or references to external endpoints; run the skill in a restricted/sandboxed environment or with limited filesystem permissions if possible; check for any local scripts in tasks/ that could be executed; and prefer skills with known provenance. If you want higher assurance, ask the author for a provenance statement or sign-off, or request a minimal mode that only performs read-only discovery (no subprocess execution or writes).

Like a lobster shell, security has layers — review code before you run it.

Current versionv1.0.0
Download zip
latestvk9731ytf42phge6fs1bp8c6p05830p2r

License

MIT-0
Free to use, modify, and redistribute. No attribution required.

SKILL.md


name: srs description: SRS - Security Research System 安全研究系统 metadata: openclaw: emoji: 🎯 version: 1.0.0 abbreviation: SRS

🎯 SRS - Security Research System

安全研究系统 - 智能任务评估与角色匹配

系统信息

  • 全称: Security Research System (安全研究系统)
  • 缩写: SRS
  • 版本: 1.0.0

核心能力

1. 任务评估 (Evaluation)

系统会根据多个维度评估任务是否进入系统:

评估维度权重说明
优先级25%外部触发 > 计划任务 > 主动发现 > 内部优化
知识相关性20%核心领域 > 边缘领域 > 其他
时效性15%紧急 > 高 > 中 > 低
资源可用性15%CPU/内存阈值
价值25%对外发布/知识贡献/风险缓解

阈值: 总分 >= 60 分才能进入系统

2. 角色匹配

根据任务内容自动匹配最合适的角色:

关键词匹配角色
cve, vulnerability, threat, exploit🔴 安全研究员
research, analysis, study, paper📚 领域研究员
document, report, knowledge, 整理📖 知识运营
discover, scan, trend, 新兴🚀 探索者
incident, alert, monitor, response🛡️ 安全运营

3. 优先级规则

外部触发 (最高):
├── CVE严重漏洞: 100分
├── 安全事件: 95分
├── 合规违规: 90分
└── 公开披露: 85分

计划任务:
├── 日报: 70分
├── 周报: 65分
└── 月度review: 60分

主动发现:
├── 威胁情报: 50分
├── 研究机会: 45分
└── 趋势分析: 40分

内部优化 (最低):
├── 基础设施: 20分
├── 工具改进: 15分
└── 文档完善: 10分

使用方法

# 启动系统
srs start

# 执行任务 (自动评估+匹配)
srs run "研究OpenClaw安全治理"

# 查看状态
srs status

# 查看评估标准
srs criteria

评估示例

$ srs run "研究OpenClaw安全治理"

{
  "status": "admitted",
  "task": {
    "name": "研究OpenClaw安全治理",
    "role": "security_researcher",
    "role_emoji": "🔴"
  },
  "evaluation": {
    "priority": 85,
    "resources": 80.0,
    "relevance": 40.0,
    "timeliness": 80,
    "value": 30,
    "total": 60.75,
    "admit": true,
    "matched_role": "security_researcher"
  }
}

文件结构

srs/
├── srs.py       # 核心系统
├── srs          # CLI脚本
└── SKILL.md    # 本文档

评估流程

用户输入
    ↓
┌─────────────────┐
│  任务评估      │
│  - 优先级      │
│  - 资源        │
│  - 相关性      │
│  - 时效性      │
│  - 价值        │
└─────────────────┘
    ↓
┌─────────────────┐
│  判定          │
│  >= 60分: 通过 │
│  < 60分: 拒绝 │
└─────────────────┘
    ↓
┌─────────────────┐
│  角色匹配      │
│  关键词匹配    │
└─────────────────┘
    ↓
执行任务

Files

11 total
Select a file
Select a file to preview.

Comments

Loading comments…