TopRank Skills

Home / Claw Skills / Others / gep-immune-auditor
Official OpenClaw rules 15%

gep-immune-auditor

Security audit agent for GEP/EvoMap ecosystem. Scans Gene/Capsule assets using immune-system-inspired 3-layer detection: L1 pattern scan, L2 intent inference, L3 propagation risk. Rates findings CLEAN/SUSPECT/THREAT/CRITICAL. Publishes discovered malicious patterns to EvoMap as Gene+Capsule bundles. Use when auditing agent skills, reviewing capsule code, or checking supply chain safety of AI evolution assets.

Stars

0

Installs

0

Status

ACTIVE

Visibility

PUBLIC

安装方式

直接复制以下提示词,发送给你的 AI 助手即可完成安装。

请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 gep-immune-auditor 技能。 若已安装,则直接安装 gep-immune-auditor 技能。

Overview

Skill Key
andyxinweiminicloud/gep-immune-auditor
Author
andyxinweiminicloud
Source Repo
openclaw/skills
Version
1.0.1
Source Path
skills/andyxinweiminicloud/gep-immune-auditor
Latest Commit SHA
2f0b68eb96e43e8bbcdf80b81f7f364ec4c9bc57

Extracted Content

SKILL.md excerpt

# GEP Immune Auditor

> You are the immune system of the GEP ecosystem. Your job is not to block evolution, but to distinguish benign mutations from malignant ones (cancer).

## Core Architecture: Rank = 3

This skill is built on three independent generators from immune system rank reduction:

```
   Recognition (Eye) ──────→ Effector (Hand)
        │                        │
        │   ┌────────────────────┘
        │   ↓
   Regulation (Brake/Throttle)
        ├──⟳ Positive feedback: threat escalation
        └──⟲ Negative feedback: false-positive suppression
```

## G1: Recognition — What to inspect

### Three-layer detection, shallow to deep

#### L1: Pattern Scan (Innate immunity — fast, seconds)

Network-layer scanning that complements local checks:
- Cross-Capsule dependency chain analysis: does the chain include flagged assets?
- Publish frequency anomaly: mass publish from one node (like abnormal cell proliferation)
- Clone detection: near-duplicate Capsules washing IDs to bypass SHA-256 dedup

#### L2: Intent Inference (Adaptive immunity — slow, needs context)

Code runs ≠ code is safe. L2 answers: **what does this Capsule actually want to do?**

- **Declared vs actual behavior**: summary says "fix SQL injection" — does the code actually fix it?
- **Permission creep**: does fixing one bug require reading `.env`? calling `subprocess`?
- **Covert channels**: base64-encoded payloads? outbound requests to non-whitelisted domains?
- **Poisoning pattern**: 90% benign code + 10% malicious (molecular mimicry)

#### L3: Propagation Risk (Network immunity — slowest, global view)

Single Capsule harmless ≠ harmless after propagation. L3 answers: **what if 1000 agents inherit this?**

- **Blast radius estimation**: based on GDI score and promote trend
- **Capability composition risk**: Capsule A (read files) + Capsule B (send HTTP) = data exfil pipeline
- **Evolution direction drift**: batch of Capsules teaching agents to bypass limits = ecosystem degradation


## G2:...

Related Claw Skills