filesystem by sundial-org/awesome-openclaw-skills
npx skills add https://github.com/sundial-org/awesome-openclaw-skills --skill filesystem为 AI 代理提供高级文件系统操作。包含智能过滤、搜索和批量处理能力的综合性文件和目录操作。
广告位招租
在这里展示您的产品或服务
触达数万 AI 开发者,精准高效
# 使用过滤列出文件
filesystem list --path ./src --recursive --filter "*.js"
# 搜索内容
filesystem search --pattern "TODO" --path ./src --content
# 安全批量复制
filesystem copy --pattern "*.log" --to ./backup/ --dry-run
# 显示目录树
filesystem tree --path ./ --depth 3
# 分析目录结构
filesystem analyze --path ./logs --stats
filesystem list高级文件和目录列表,附带过滤选项。
选项:
--path, -p <dir> - 目标目录(默认:当前目录)--recursive, -r - 包含子目录--filter, -f <pattern> - 按模式过滤文件--details, -d - 显示详细信息--sort, -s <field> - 按 name|size|date 排序--format <type> - 输出格式:table|json|listfilesystem search按名称模式或内容搜索文件。
选项:
--pattern <pattern> - 搜索模式(通配符或正则表达式)--path, -p <dir> - 搜索目录--content, -c - 搜索文件内容--context <lines> - 显示上下文行数--include <pattern> - 包含文件模式--exclude <pattern> - 排除文件模式filesystem copy批量复制文件,支持模式匹配和安全检查。
选项:
--pattern <glob> - 源文件模式--to <dir> - 目标目录--dry-run - 预览而不执行--overwrite - 允许文件覆盖--preserve - 保留时间戳和权限filesystem tree以树形结构显示目录。
选项:
--path, -p <dir> - 根目录--depth, -d <num> - 最大深度--dirs-only - 仅显示目录--size - 包含文件大小--no-color - 禁用彩色输出filesystem analyze分析目录结构并生成统计信息。
选项:
--path, -p <dir> - 目标目录--stats - 显示详细统计信息--types - 分析文件类型--sizes - 显示大小分布--largest <num> - 显示 N 个最大的文件# 克隆或安装技能
cd ~/.clawdbot/skills
git clone <filesystem-skill-repo>
# 或通过 ClawdHub 安装
clawdhub install filesystem
# 设置为可执行
chmod +x filesystem/filesystem
通过 config.json 自定义行为:
{
"defaultPath": "./",
"maxDepth": 10,
"defaultFilters": ["*"],
"excludePatterns": ["node_modules", ".git", ".DS_Store"],
"outputFormat": "table",
"dateFormat": "YYYY-MM-DD HH:mm:ss",
"sizeFormat": "human",
"colorOutput": true
}
# 在 src 目录中查找所有 JavaScript 文件
filesystem list --path ./src --recursive --filter "*.js" --details
# 搜索 TODO 注释
filesystem search --pattern "TODO|FIXME" --path ./src --content --context 2
# 将所有日志复制到备份目录
filesystem copy --pattern "*.log" --to ./backup/logs/ --preserve
# 分析项目结构
filesystem tree --path ./ --depth 2 --size
# 查找大文件
filesystem analyze --path /var/log --sizes --largest 10
# 列出最近的文件
filesystem list --path /tmp --sort date --details
# 清理旧的临时文件
filesystem list --path /tmp --filter "*.tmp" --older-than 7d
与其他 Clawdbot 工具无缝协作:
随时了解最新的 Clawdbot 技能和文件系统工具:
通过关注 @LexpertAI 获取新技能和改进的早期访问权限:
MIT 许可证 - 免费用于个人和商业用途。
请记住:优秀的文件系统管理始于正确的工具。本技能提供全面的操作,同时保持安全性和性能。
每周安装数
88
代码仓库
GitHub 星标数
509
首次出现
2026年2月7日
安全审计
安装于
cursor85
codex84
opencode84
gemini-cli83
github-copilot83
kimi-cli82
Advanced filesystem operations for AI agents. Comprehensive file and directory operations with intelligent filtering, searching, and batch processing capabilities.
# List files with filtering
filesystem list --path ./src --recursive --filter "*.js"
# Search for content
filesystem search --pattern "TODO" --path ./src --content
# Batch copy with safety
filesystem copy --pattern "*.log" --to ./backup/ --dry-run
# Show directory tree
filesystem tree --path ./ --depth 3
# Analyze directory structure
filesystem analyze --path ./logs --stats
filesystem listAdvanced file and directory listing with filtering options.
Options:
--path, -p <dir> - Target directory (default: current)--recursive, -r - Include subdirectories--filter, -f <pattern> - Filter files by pattern--details, -d - Show detailed information--sort, -s <field> - Sort by name|size|date--format <type> - Output format: table|json|listfilesystem searchSearch files by name patterns or content.
Options:
--pattern <pattern> - Search pattern (glob or regex)--path, -p <dir> - Search directory--content, -c - Search file contents--context <lines> - Show context lines--include <pattern> - Include file patterns--exclude <pattern> - Exclude file patternsfilesystem copyBatch copy files with pattern matching and safety checks.
Options:
--pattern <glob> - Source file pattern--to <dir> - Destination directory--dry-run - Preview without executing--overwrite - Allow file overwrites--preserve - Preserve timestamps and permissionsfilesystem treeDisplay directory structure as a tree.
Options:
--path, -p <dir> - Root directory--depth, -d <num> - Maximum depth--dirs-only - Show directories only--size - Include file sizes--no-color - Disable colored outputfilesystem analyzeAnalyze directory structure and generate statistics.
Options:
--path, -p <dir> - Target directory--stats - Show detailed statistics--types - Analyze file types--sizes - Show size distribution--largest <num> - Show N largest files# Clone or install the skill
cd ~/.clawdbot/skills
git clone <filesystem-skill-repo>
# Or install via ClawdHub
clawdhub install filesystem
# Make executable
chmod +x filesystem/filesystem
Customize behavior via config.json:
{
"defaultPath": "./",
"maxDepth": 10,
"defaultFilters": ["*"],
"excludePatterns": ["node_modules", ".git", ".DS_Store"],
"outputFormat": "table",
"dateFormat": "YYYY-MM-DD HH:mm:ss",
"sizeFormat": "human",
"colorOutput": true
}
# Find all JavaScript files in src
filesystem list --path ./src --recursive --filter "*.js" --details
# Search for TODO comments
filesystem search --pattern "TODO|FIXME" --path ./src --content --context 2
# Copy all logs to backup
filesystem copy --pattern "*.log" --to ./backup/logs/ --preserve
# Analyze project structure
filesystem tree --path ./ --depth 2 --size
# Find large files
filesystem analyze --path /var/log --sizes --largest 10
# List recent files
filesystem list --path /tmp --sort date --details
# Clean old temp files
filesystem list --path /tmp --filter "*.tmp" --older-than 7d
Works seamlessly with other Clawdbot tools:
Stay informed about the latest Clawdbot skills and filesystem tools:
Get early access to new skills and improvements by following @LexpertAI for:
MIT License - Free for personal and commercial use.
Remember : Great filesystem management starts with the right tools. This skill provides comprehensive operations while maintaining safety and performance.
Weekly Installs
88
Repository
GitHub Stars
509
First Seen
Feb 7, 2026
Security Audits
Gen Agent Trust HubFailSocketPassSnykPass
Installed on
cursor85
codex84
opencode84
gemini-cli83
github-copilot83
kimi-cli82
Skills CLI 使用指南:AI Agent 技能包管理器安装与管理教程
43,100 周安装
Firebase Authentication 身份验证基础教程 - 用户管理与安全登录配置指南
13,600 周安装
Flutter动画完全指南:隐式/显式动画、Hero过渡、交错动画实现
12,700 周安装
Firebase 基础入门指南:环境设置、CLI 使用与最佳实践
13,800 周安装
Firecrawl Map:网站URL发现工具,快速映射和搜索网站页面
13,300 周安装
Firecrawl Download:一键下载整个网站为本地文件,支持Markdown、截图等多种格式
13,200 周安装
Firecrawl Agent:AI驱动的网站数据抓取工具,自动提取结构化数据
13,300 周安装