Sync: AI Agent设计模式、Composio、VoltAgent 等概念和实体

This commit is contained in:
2026-04-15 19:41:34 +08:00
parent 8b32551065
commit 4eacd6b1a8
28 changed files with 799 additions and 69 deletions

View File

@@ -0,0 +1,28 @@
---
id: 小文件清理
title: "小文件清理"
type: concept
tags: [照片整理, cleanup, threshold]
last_updated: 2026-04-15
---
## Definition
通过文件大小阈值识别并移走低质量图片(截图、微信压缩图)的整理策略。
## Core Mechanism
- 设定阈值:低于 100KB 的图片
- 判定逻辑:截图和微信压缩图通常远小于原始照片
- 处理方式:移至 To-Be-Deleted 目录而非直接删除
## Threshold Rationale
- 原始照片(相机/手机直出):通常 > 1MB
- 截图:通常 50KB - 200KB
- 微信压缩图:通常 < 200KB
- 100KB 作为阈值可有效区分原始照片与低质量副本
## Related Concepts
- [[精确去重]]:另一种照片整理策略
- [[安全删除]]:清理操作的前置保护机制
## Sources
- [[养虾日记1-OpenClaw照片整理实战]]