/install lobsterai-security
Security
Comprehensive security framework for LobsterAI providing audit logging, role-based access control (RBAC), input validation, output sanitization, code scanning, and dependency vulnerability detection.
Core Features
Audit Logger
- Records all skill executions with timestamps, user context, and input/output
- JSON-structured logs for easy analysis
- Automatic log rotation (90 days retention)
- Encrypted storage support
Authorizer (RBAC)
- Role-based access control configuration
- Fine-grained permission management
- JSON-based role definitions
- Session validation
Input Validator
- Path traversal prevention
- Dangerous command detection (rm, del, eval, etc.)
- Cron expression validation
- Working directory restrictions
Output Sanitizer
- Automatic redaction of sensitive data (passwords, API keys, tokens)
- Error message sanitization
- Safe error formatting for user display
Code Scanner
- Static code analysis for common vulnerabilities
- Pattern-based malicious code detection
- Configurable scan rules
Dependency Scanner
- NPM vulnerability scanning (npm audit)
- Python package vulnerability detection (pip-audit)
- Automated dependency checking
Usage
All security features are available for import by other skills:
from security.audit_logger import audit_log_skill_start, audit_log_skill_end
from security.authorizer import Authorizer
from security.input_validator import InputValidator, ValidationError
from security.output_sanitizer import sanitize_text, create_safe_error
from security.code_scanner import CodeScanner
from security.dependency_scanner import DependencyScanner
Configuration
Copy rbac_config.example.json to rbac_config.json and customize roles and permissions.
Scan Scope
The code scanner and dependency scanner are designed to scan all skills in the SKILLs directory when invoked explicitly (e.g., python -m security.code_scanner --skill all). This allows comprehensive security assessment across your entire LobsterAI installation.
Privacy Note: Scanning all skills grants this module read access to all skill code and dependencies. This is intentional for a security audit tool, but users should be aware of the broad read scope. Ensure you trust the skill source before enabling full-system scanning.
To limit scanning to specific skills, invoke with explicit skill IDs:
python -m security.code_scanner --skill web-search --skill scheduled-task
Environment Variables
This skill requires the following environment variables to function correctly:
| Variable | Description | Required | Default |
|---|---|---|---|
LOBSTERAI_HOME |
Base directory for LobsterAI data and logs | Yes (if not using default) | ${APPDATA}/LobsterAI (Windows) or ${HOME}/.config/LobsterAI (Linux/macOS) |
LOBSTERAI_AUDIT_SECRET |
HMAC secret for audit log signature (optional) | No | - |
LOBSTERAI_USER_ID |
Current user identifier for audit trails | No | anonymous |
SKILLS_ROOT |
Path to the SKILLs root directory | No (auto-detected) | Parent directory of the current skill |
Note: Ensure LOBSTERAI_HOME/logs/security/ exists and is writable.
Deployment
See DEPLOYMENT.md for detailed deployment instructions, security hardening checklist, and incident response procedures.
Testing
Run python tests.py to execute the test suite.
Integration
This module integrates seamlessly with LobsterAI's skill execution pipeline, providing:
- Pre-execution validation
- Runtime monitoring
- Post-execution sanitization
- Comprehensive audit trails
Security Maturity
⭐⭐⭐☆☆ (3/10) - Active development
We are continuously improving our security posture. See SECURITY.md for the complete security architecture and best practices.
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install lobsterai-security - 安装完成后,直接呼叫该 Skill 的名称或使用
/lobsterai-security触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
Security 是什么?
Enterprise-grade security framework for LobsterAI with audit logging, RBAC, input validation, output sanitization, code scanning, and dependency vulnerabilit... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 166 次。
如何安装 Security?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install lobsterai-security」即可一键安装,无需额外配置。
Security 是免费的吗?
是的,Security 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
Security 支持哪些平台?
Security 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 Security?
由 stoney(@stoneyhoo)开发并维护,当前版本 v1.0.5。