Token导航 LogoToken导航TokenDH.com
研究检索需要联网clawhub未标认证来源可访问clear审计通过

storagestorage 搜索

Agent Skill

storage 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

42,913

周安装

1,753

GitHub Stars

2

下载量

13,744
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:storage(storage 搜索)
来源仓库:https://github.com/ivangdavila/storage
安装命令:
openclaw skills install storage
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install storage

简介

storage 用于指导存储系统的选型与设计,适合在 OpenClaw 中需要为应用选择数据库或文件存储方案时使用。

  • 它比较不同技术的性能、成本与扩展性指标。
  • 结合应用场景推荐合适架构,如冷热分离、读写分离等。
  • 不涉及具体部署操作,仅提供决策参考。
  • 云服务商策略变动可能影响建议有效性,请定期复核。

SKILL.md

name
Storage
description
Choose and architect storage systems for applications with the right tradeoffs.
metadata
{"clawdbot":{"emoji":"💾","os":["linux","darwin","win32"]}}

Object vs Block vs File

  • Object storage (S3, R2, GCS) for immutable blobs: images, videos, backups, logs — cheap, scales infinitely, but no partial updates
  • Block storage (EBS, Persistent Disks) for databases and apps needing filesystem semantics — faster, but tied to single instance
  • Network file systems (NFS, EFS) when multiple instances need shared filesystem access — convenient but latency and cost add up
  • Default to object storage for user uploads — block storage for database files only

When SQL vs NoSQL

  • SQL when you need joins, transactions, or complex queries — fighting against NoSQL for relational data wastes months
  • Document stores (MongoDB, Firestore) for nested/variable schemas where you always fetch the whole document
  • Key-value (Redis, DynamoDB) for simple lookups by ID at massive scale — not for complex queries
  • Time-series databases (InfluxDB, TimescaleDB) for metrics with timestamp-based queries — regular SQL struggles with retention policies
  • Start with PostgreSQL unless you have a specific reason not to — it handles JSON, full-text search, and scales further than most assume

Local vs Cloud Storage

  • Local disk for ephemeral data: temp files, build artifacts, caches — assume it disappears on restart
  • Cloud storage for anything that must survive instance termination — never store user data only on local disk
  • Local SSD for databases in production — network-attached storage adds latency to every query
  • Hybrid: local cache in front of cloud storage for frequently accessed files

CDN Patterns

  • Put CDN in front of static assets always — origin requests are slower and more expensive
  • Set long cache TTLs with versioned URLs (style.abc123.css) — cache invalidation is slow and unreliable
  • CDN for dynamic content only if latency matters more than freshness — adds complexity for marginal gains
  • Edge caching for API responses works but cache keys get tricky — start simple, add only when needed

Upload Handling

  • Never accept uploads directly to app server disk in production — use presigned URLs to cloud storage
  • Set file size limits at load balancer level, not just application — prevents memory exhaustion attacks
  • Generate unique keys for uploads (UUIDs) — user-provided filenames cause collisions and path traversal risks
  • Validate file types by content (magic bytes), not extension — extensions are trivially spoofed

Data Locality

  • Keep compute and storage in same region — cross-region data transfer adds latency and cost
  • Replicate data to regions where users are, not where developers are
  • Multi-region storage adds complexity — single region with backups elsewhere usually sufficient
  • Database read replicas in user regions for read-heavy workloads

Retention and Lifecycle

  • Define retention policy before storing data — "keep everything" becomes expensive and legally risky
  • Automate deletion of temporary data — manual cleanup never happens consistently
  • Tiered storage for aging data: hot → warm → cold → archive — but check retrieval costs before archiving
  • Separate storage for logs vs business data — different retention, different compliance requirements

Cost Traps

  • Egress fees dominate cloud storage costs — calculate before choosing provider
  • Many small files cost more than few large files — batch small writes when possible
  • Minimum storage duration on cold tiers — early deletion still charges full period
  • API request costs matter at scale — millions of LIST operations add up

Backup Strategy

  • 3-2-1 rule: 3 copies, 2 different media types, 1 offsite — cloud counts as one location
  • Test restores regularly — untested backups are not backups
  • Point-in-time recovery for databases — daily snapshots lose a day of data
  • Version important files — deletion or corruption often discovered late

适合场景

01

研究助手

02

事实核查

03

知识库问答

04

带来源的搜索总结

能力概览

能力 1

组合搜索和大模型调用

能力 2

支持多来源检索和总结

能力 3

强调引用来源和事实核查

能力 4

适合研究型 Agent 流程

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

78.34%
按下载量换算10,767

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

未展示

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills