clawdbot-filesystem-1-0-2Advanced filesystem operations - listing, searching, batch processing, and directory analysis for Clawdbot
Install via ClawdBot CLI:
clawdbot install Lucky-2968/clawdbot-filesystem-1-0-2Requires:
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 - Target directory (default: current)--recursive, -r - Include subdirectories--filter, -f - Filter files by pattern--details, -d - Show detailed information--sort, -s - Sort by name|size|date--format - Output format: table|json|listfilesystem searchSearch files by name patterns or content.
Options:
--pattern - Search pattern (glob or regex)--path, -p - Search directory--content, -c - Search file contents--context - Show context lines--include - Include file patterns--exclude - Exclude file patternsfilesystem copyBatch copy files with pattern matching and safety checks.
Options:
--pattern - Source file pattern--to - 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 - Root directory--depth, -d - 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 - Target directory--stats - Show detailed statistics--types - Analyze file types--sizes - Show size distribution--largest - 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.
Generated Mar 1, 2026
Developers can use the skill to list and filter source code files by type, search for TODO or FIXME comments across a codebase, and analyze directory structures to monitor project growth. This aids in code reviews, technical debt tracking, and maintaining organized repositories.
System administrators can leverage the skill to search log files for error patterns, identify large or old files for cleanup, and copy logs to backup directories with safety checks. This helps in troubleshooting, optimizing storage, and ensuring data retention policies.
Content creators and marketers can use the skill to batch copy media files, search for specific content within documents, and visualize directory trees to organize assets. This streamlines workflows for managing images, videos, and documents in marketing campaigns.
Researchers and data analysts can employ the skill to filter data files by pattern, search within datasets for keywords, and analyze file sizes and types to manage storage. This supports efficient data preprocessing, organization, and sharing in academic or business research.
IT teams can utilize the skill to copy files with pattern matching and dry-run previews, analyze directories for large files, and integrate with backup tools. This enhances reliability in creating backups, verifying data integrity, and planning recovery strategies.
Offer basic filesystem operations for free, with advanced features like batch processing, detailed analytics, and integration hooks available through a subscription. Revenue is generated from monthly or annual licenses for teams and enterprises.
Provide tailored solutions by integrating the skill into client workflows, offering training, and developing custom configurations. Revenue comes from project-based fees, ongoing support contracts, and implementation services for specific industries.
Sell the skill through an app marketplace, bundling it with complementary tools like security or backup skills. Revenue is generated from one-time purchases, commissions on third-party integrations, and upselling to larger skill packages.
๐ฌ Integration Tip
Integrate with security skills for validation and git tools for ignoring patterns to enhance safety and efficiency in file operations.
Advanced filesystem operations - listing, searching, batch processing, and directory analysis for Clawdbot
Perform advanced filesystem tasks including listing, recursive searching by name or content, batch copying/moving/deleting files, and analyzing directory siz...
Essential SSH commands for secure remote access, key management, tunneling, and file transfers.
Extract text from PDF files for LLM processing
The directory for AI agent services. Discover tools, platforms, and infrastructure built for agents.
Backup agent brain (workspace) and body (state) to local folder and optionally sync to cloud via rclone.