ClawKit Logo
ClawKitReliability Toolkit
Back to Registry
Official Verified

secure-storage

AES 加密存储,用于安全保存 API 密钥等敏感信息

skill-install — Terminal

Install via CLI (Recommended)

clawhub install openclaw/skills/skills/amd5/secure-storage
Or

Secure Storage — 加密存储

版本: 1.0.1
创建日期: 2026-04-13
更新日期: 2026-04-14


📋 功能

使用 AES 加密算法安全存储敏感信息:

功能说明
set加密存储键值对
get解密读取值
list列出所有已存储键名
delete删除指定键

📂 文件结构

skills/secure-storage/
├── SKILL.md
├── skill.json
└── scripts/
    └── secure-storage.js    # 加密存储主程序

🔧 用法

# 存储
node skills/secure-storage/scripts/secure-storage.js set <key> <value>

# 读取
node skills/secure-storage/scripts/secure-storage.js get <key>

# 列表
node skills/secure-storage/scripts/secure-storage.js list

# 删除
node skills/secure-storage/scripts/secure-storage.js delete <key>

📊 触发方式

  • 手动触发(按需使用的安全工具,无需自动化)

⚠️ 注意事项

  • 加密密钥从环境变量读取
  • 存储文件:.secure-storage.json
  • 不要提交加密文件到版本控制

Metadata

Author@amd5
Stars4473
Views0
Updated2026-05-01
View Author Profile
AI Skill Finder

Not sure this is the right skill?

Describe what you want to build — we'll match you to the best skill from 16,000+ options.

Find the right skill
Add to Configuration

Paste this into your clawhub.json to enable this plugin.

{
  "plugins": {
    "official-amd5-secure-storage": {
      "enabled": true,
      "auto_update": true
    }
  }
}
Safety NoteClawKit audits metadata but not runtime behavior. Use with caution.