LaunchKit · 2026
Back to Skills

obekt-security

Basic threat detection and security analysis for code, files, and agent skills.

0
0 downloads
by @obekt

Setup & Installation

openclaw skills install @obekt/obekt-security

Or with the ClawHub CLI, for registry-managed skill folders outside a full OpenClaw workspace:

npx clawhub install obekt-security

What This Skill Does

Pattern-based security scanner for code, files, and agent skills. Detects common vulnerabilities like SQL injection, XSS, hardcoded secrets, and path traversal using static analysis scripts. Pro tier adds continuous monitoring and professional report generation.

The basic tier requires no dependencies beyond Python 3.8 standard library and no cloud account, making it usable in air-gapped or restricted environments where SaaS scanners are not an option.

When to use it

  • Scanning a codebase before a pull request for hardcoded API keys
  • Auditing a third-party agent skill before adding it to a workflow
  • Checking a legacy web app for SQL injection and XSS patterns
  • Watching a project directory for new secrets introduced during development
  • Generating a formatted security findings report to share with a client

Example Workflow

Here's how your AI assistant might use this skill in practice.

INPUT

User asks: scan my project directory for critical and high severity issues and show results as markdown

AGENT
  1. 1Run threat_scan.py against the target directory with --severity critical,high and --output markdown
  2. 2Run secret_scan.py against the same directory to check for hardcoded credentials
  3. 3Collect output from both scripts
  4. 4Format findings into a combined markdown summary with severity counts
OUTPUT

Markdown report listing critical and high findings grouped by type, with file paths and line references for each issue