[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-composio-file-organizer":3,"mdc-dsa3rt-key":46,"related-repo-composio-file-organizer":2649,"related-org-composio-file-organizer":2736},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":12,"stars":20,"repoUrl":21,"updatedAt":22,"license":23,"forks":24,"topics":25,"repo":41,"sourceUrl":44,"mdContent":45},"file-organizer","organize files and folders","Intelligently organizes your files and folders across your computer by understanding context, finding duplicates, suggesting better structures, and automating cleanup tasks. Reduces cognitive load and keeps your digital workspace tidy without manual effort.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},"composio","Composio","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fcomposio.png","ComposioHQ",[13,17],{"name":14,"slug":15,"type":16},"Productivity","productivity","tag",{"name":18,"slug":19,"type":16},"Automation","automation",67499,"https:\u002F\u002Fgithub.com\u002FComposioHQ\u002Fawesome-claude-skills","2026-07-12T08:09:10.632504",null,7603,[26,27,28,19,29,30,31,8,32,33,34,35,36,37,38,39,40],"agent-skills","ai-agents","antigravity","claude","claude-code","codex","cursor","developer-tools","gemini-cli","mcp","openai-codex","rube","saas","skill","workflow-automation",{"repoUrl":21,"stars":20,"forks":24,"topics":42,"description":43},[26,27,28,19,29,30,31,8,32,33,34,35,36,37,38,39,40],"A curated list of awesome Claude Skills, resources, and tools for customizing Claude AI workflows","https:\u002F\u002Fgithub.com\u002FComposioHQ\u002Fawesome-claude-skills\u002Ftree\u002FHEAD\u002Ffile-organizer","---\nname: file-organizer\ndescription: Intelligently organizes your files and folders across your computer by understanding context, finding duplicates, suggesting better structures, and automating cleanup tasks. Reduces cognitive load and keeps your digital workspace tidy without manual effort.\n---\n\n# File Organizer\n\nThis skill acts as your personal organization assistant, helping you maintain a clean, logical file structure across your computer without the mental overhead of constant manual organization.\n\n## When to Use This Skill\n\n- Your Downloads folder is a chaotic mess\n- You can't find files because they're scattered everywhere\n- You have duplicate files taking up space\n- Your folder structure doesn't make sense anymore\n- You want to establish better organization habits\n- You're starting a new project and need a good structure\n- You're cleaning up before archiving old projects\n\n## What This Skill Does\n\n1. **Analyzes Current Structure**: Reviews your folders and files to understand what you have\n2. **Finds Duplicates**: Identifies duplicate files across your system\n3. **Suggests Organization**: Proposes logical folder structures based on your content\n4. **Automates Cleanup**: Moves, renames, and organizes files with your approval\n5. **Maintains Context**: Makes smart decisions based on file types, dates, and content\n6. **Reduces Clutter**: Identifies old files you probably don't need anymore\n\n## How to Use\n\n### From Your Home Directory\n\n```\ncd ~\n```\n\nThen run Claude Code and ask for help:\n\n```\nHelp me organize my Downloads folder\n```\n\n```\nFind duplicate files in my Documents folder\n```\n\n```\nReview my project directories and suggest improvements\n```\n\n### Specific Organization Tasks\n\n```\nOrganize these downloads into proper folders based on what they are\n```\n\n```\nFind duplicate files and help me decide which to keep\n```\n\n```\nClean up old files I haven't touched in 6+ months\n```\n\n```\nCreate a better folder structure for my [work\u002Fprojects\u002Fphotos\u002Fetc]\n```\n\n## Instructions\n\nWhen a user requests file organization help:\n\n1. **Understand the Scope**\n   \n   Ask clarifying questions:\n   - Which directory needs organization? (Downloads, Documents, entire home folder?)\n   - What's the main problem? (Can't find things, duplicates, too messy, no structure?)\n   - Any files or folders to avoid? (Current projects, sensitive data?)\n   - How aggressively to organize? (Conservative vs. comprehensive cleanup)\n\n2. **Analyze Current State**\n   \n   Review the target directory:\n   ```bash\n   # Get overview of current structure\n   ls -la [target_directory]\n   \n   # Check file types and sizes\n   find [target_directory] -type f -exec file {} \\; | head -20\n   \n   # Identify largest files\n   du -sh [target_directory]\u002F* | sort -rh | head -20\n   \n   # Count file types\n   find [target_directory] -type f | sed 's\u002F.*\\.\u002F\u002F' | sort | uniq -c | sort -rn\n   ```\n   \n   Summarize findings:\n   - Total files and folders\n   - File type breakdown\n   - Size distribution\n   - Date ranges\n   - Obvious organization issues\n\n3. **Identify Organization Patterns**\n   \n   Based on the files, determine logical groupings:\n   \n   **By Type**:\n   - Documents (PDFs, DOCX, TXT)\n   - Images (JPG, PNG, SVG)\n   - Videos (MP4, MOV)\n   - Archives (ZIP, TAR, DMG)\n   - Code\u002FProjects (directories with code)\n   - Spreadsheets (XLSX, CSV)\n   - Presentations (PPTX, KEY)\n   \n   **By Purpose**:\n   - Work vs. Personal\n   - Active vs. Archive\n   - Project-specific\n   - Reference materials\n   - Temporary\u002Fscratch files\n   \n   **By Date**:\n   - Current year\u002Fmonth\n   - Previous years\n   - Very old (archive candidates)\n\n4. **Find Duplicates**\n   \n   When requested, search for duplicates:\n   ```bash\n   # Find exact duplicates by hash\n   find [directory] -type f -exec md5 {} \\; | sort | uniq -d\n   \n   # Find files with same name\n   find [directory] -type f -printf '%f\\n' | sort | uniq -d\n   \n   # Find similar-sized files\n   find [directory] -type f -printf '%s %p\\n' | sort -n\n   ```\n   \n   For each set of duplicates:\n   - Show all file paths\n   - Display sizes and modification dates\n   - Recommend which to keep (usually newest or best-named)\n   - **Important**: Always ask for confirmation before deleting\n\n5. **Propose Organization Plan**\n   \n   Present a clear plan before making changes:\n   \n   ```markdown\n   # Organization Plan for [Directory]\n   \n   ## Current State\n   - X files across Y folders\n   - [Size] total\n   - File types: [breakdown]\n   - Issues: [list problems]\n   \n   ## Proposed Structure\n   \n   ```\n   [Directory]\u002F\n   ├── Work\u002F\n   │   ├── Projects\u002F\n   │   ├── Documents\u002F\n   │   └── Archive\u002F\n   ├── Personal\u002F\n   │   ├── Photos\u002F\n   │   ├── Documents\u002F\n   │   └── Media\u002F\n   └── Downloads\u002F\n       ├── To-Sort\u002F\n       └── Archive\u002F\n   ```\n   \n   ## Changes I'll Make\n   \n   1. **Create new folders**: [list]\n   2. **Move files**:\n      - X PDFs → Work\u002FDocuments\u002F\n      - Y images → Personal\u002FPhotos\u002F\n      - Z old files → Archive\u002F\n   3. **Rename files**: [any renaming patterns]\n   4. **Delete**: [duplicates or trash files]\n   \n   ## Files Needing Your Decision\n   \n   - [List any files you're unsure about]\n   \n   Ready to proceed? (yes\u002Fno\u002Fmodify)\n   ```\n\n6. **Execute Organization**\n   \n   After approval, organize systematically:\n   \n   ```bash\n   # Create folder structure\n   mkdir -p \"path\u002Fto\u002Fnew\u002Ffolders\"\n   \n   # Move files with clear logging\n   mv \"old\u002Fpath\u002Ffile.pdf\" \"new\u002Fpath\u002Ffile.pdf\"\n   \n   # Rename files with consistent patterns\n   # Example: \"YYYY-MM-DD - Description.ext\"\n   ```\n   \n   **Important Rules**:\n   - Always confirm before deleting anything\n   - Log all moves for potential undo\n   - Preserve original modification dates\n   - Handle filename conflicts gracefully\n   - Stop and ask if you encounter unexpected situations\n\n7. **Provide Summary and Maintenance Tips**\n   \n   After organizing:\n   \n   ```markdown\n   # Organization Complete! ✨\n   \n   ## What Changed\n   \n   - Created [X] new folders\n   - Organized [Y] files\n   - Freed [Z] GB by removing duplicates\n   - Archived [W] old files\n   \n   ## New Structure\n   \n   [Show the new folder tree]\n   \n   ## Maintenance Tips\n   \n   To keep this organized:\n   \n   1. **Weekly**: Sort new downloads\n   2. **Monthly**: Review and archive completed projects\n   3. **Quarterly**: Check for new duplicates\n   4. **Yearly**: Archive old files\n   \n   ## Quick Commands for You\n   \n   ```bash\n   # Find files modified this week\n   find . -type f -mtime -7\n   \n   # Sort downloads by type\n   [custom command for their setup]\n   \n   # Find duplicates\n   [custom command]\n   ```\n   \n   Want to organize another folder?\n   ```\n\n## Examples\n\n### Example 1: Organizing Downloads (From Justin Dielmann)\n\n**User**: \"My Downloads folder is a mess with 500+ files. Help me organize it.\"\n\n**Process**:\n1. Analyzes Downloads folder\n2. Finds patterns: work docs, personal photos, installers, random PDFs\n3. Proposes structure:\n   - Downloads\u002F\n     - Work\u002F\n     - Personal\u002F\n     - Installers\u002F (DMG, PKG files)\n     - Archive\u002F\n     - ToSort\u002F (things needing decisions)\n4. Asks for confirmation\n5. Moves files intelligently based on content and names\n6. Results: 500 files → 5 organized folders\n\n### Example 2: Finding and Removing Duplicates\n\n**User**: \"Find duplicate files in my Documents and help me decide which to keep.\"\n\n**Output**:\n```markdown\n# Found 23 Sets of Duplicates (156 MB total)\n\n## Duplicate Set 1: \"proposal.pdf\"\n- `\u002FDocuments\u002Fproposal.pdf` (2.3 MB, modified: 2024-03-15)\n- `\u002FDocuments\u002Fold\u002Fproposal.pdf` (2.3 MB, modified: 2024-03-15)\n- `\u002FDesktop\u002Fproposal.pdf` (2.3 MB, modified: 2024-03-10)\n\n**Recommendation**: Keep `\u002FDocuments\u002Fproposal.pdf` (most recent in correct location)\nDelete the other 2 copies?\n\n[Continue for all duplicates...]\n```\n\n### Example 3: Restructuring Projects Folder\n\n**User**: \"Review my ~\u002FProjects directory and suggest improvements.\"\n\n**Output**:\n```markdown\n# Analysis of ~\u002FProjects\n\n## Current Structure Issues\n- Mix of active and archived projects (3+ years old)\n- No consistent naming convention\n- Some projects at root, others in random subfolders\n- Duplicate folders (project-name, project-name-old, project-name-v2)\n\n## Proposed Structure\n\n```\nProjects\u002F\n├── Active\u002F\n│   ├── client-work\u002F\n│   ├── side-projects\u002F\n│   └── learning\u002F\n├── Archive\u002F\n│   ├── 2022\u002F\n│   ├── 2023\u002F\n│   └── 2024\u002F\n└── Templates\u002F\n```\n\n## Specific Changes\n1. Move 12 projects not touched since 2022 → Archive\u002F\n2. Consolidate 4 duplicate project folders\n3. Rename projects to consistent format: \"client-name-project-name\"\n4. Create Archive for old work\n\nWant me to implement this?\n```\n\n### Example 4: Organizing Photos by Date\n\n**User**: \"Organize my photo folders by year and month.\"\n\n**Output**: Creates structure like:\n```\nPhotos\u002F\n├── 2023\u002F\n│   ├── 01-January\u002F\n│   ├── 02-February\u002F\n│   └── ...\n├── 2024\u002F\n│   ├── 01-January\u002F\n│   └── ...\n└── Unsorted\u002F\n```\n\nThen moves photos based on EXIF data or file modification dates.\n\n## Common Organization Tasks\n\n### Downloads Cleanup\n```\nOrganize my Downloads folder - move documents to Documents, \nimages to Pictures, keep installers separate, and archive files \nolder than 3 months.\n```\n\n### Project Organization\n```\nReview my Projects folder structure and help me separate active \nprojects from old ones I should archive.\n```\n\n### Duplicate Removal\n```\nFind all duplicate files in my Documents folder and help me \ndecide which ones to keep.\n```\n\n### Desktop Cleanup\n```\nMy Desktop is covered in files. Help me organize everything into \nmy Documents folder properly.\n```\n\n### Photo Organization\n```\nOrganize all photos in this folder by date (year\u002Fmonth) based \non when they were taken.\n```\n\n### Work\u002FPersonal Separation\n```\nHelp me separate my work files from personal files across my \nDocuments folder.\n```\n\n## Pro Tips\n\n1. **Start Small**: Begin with one messy folder (like Downloads) to build trust\n2. **Regular Maintenance**: Run weekly cleanup on Downloads\n3. **Consistent Naming**: Use \"YYYY-MM-DD - Description\" format for important files\n4. **Archive Aggressively**: Move old projects to Archive instead of deleting\n5. **Keep Active Separate**: Maintain clear boundaries between active and archived work\n6. **Trust the Process**: Let Claude handle the cognitive load of where things go\n\n## Best Practices\n\n### Folder Naming\n- Use clear, descriptive names\n- Avoid spaces (use hyphens or underscores)\n- Be specific: \"client-proposals\" not \"docs\"\n- Use prefixes for ordering: \"01-current\", \"02-archive\"\n\n### File Naming\n- Include dates: \"2024-10-17-meeting-notes.md\"\n- Be descriptive: \"q3-financial-report.xlsx\"\n- Avoid version numbers in names (use version control instead)\n- Remove download artifacts: \"document-final-v2 (1).pdf\" → \"document.pdf\"\n\n### When to Archive\n- Projects not touched in 6+ months\n- Completed work that might be referenced later\n- Old versions after migration to new systems\n- Files you're hesitant to delete (archive first)\n\n## Related Use Cases\n\n- Setting up organization for a new computer\n- Preparing files for backup\u002Farchiving\n- Cleaning up before storage cleanup\n- Organizing shared team folders\n- Structuring new project directories\n\n",{"data":47,"body":48},{"name":4,"description":6},{"type":49,"children":50},"root",[51,59,65,72,112,118,183,189,196,209,214,223,232,241,247,256,265,274,283,289,294,1866,1872,1878,1888,1897,1966,1972,1981,1990,2172,2178,2187,2195,2299,2304,2313,2319,2328,2337,2346,2351,2357,2363,2372,2378,2387,2393,2402,2408,2417,2423,2432,2438,2447,2453,2516,2522,2528,2551,2557,2580,2586,2609,2615,2643],{"type":52,"tag":53,"props":54,"children":55},"element","h1",{"id":4},[56],{"type":57,"value":58},"text","File Organizer",{"type":52,"tag":60,"props":61,"children":62},"p",{},[63],{"type":57,"value":64},"This skill acts as your personal organization assistant, helping you maintain a clean, logical file structure across your computer without the mental overhead of constant manual organization.",{"type":52,"tag":66,"props":67,"children":69},"h2",{"id":68},"when-to-use-this-skill",[70],{"type":57,"value":71},"When to Use This Skill",{"type":52,"tag":73,"props":74,"children":75},"ul",{},[76,82,87,92,97,102,107],{"type":52,"tag":77,"props":78,"children":79},"li",{},[80],{"type":57,"value":81},"Your Downloads folder is a chaotic mess",{"type":52,"tag":77,"props":83,"children":84},{},[85],{"type":57,"value":86},"You can't find files because they're scattered everywhere",{"type":52,"tag":77,"props":88,"children":89},{},[90],{"type":57,"value":91},"You have duplicate files taking up space",{"type":52,"tag":77,"props":93,"children":94},{},[95],{"type":57,"value":96},"Your folder structure doesn't make sense anymore",{"type":52,"tag":77,"props":98,"children":99},{},[100],{"type":57,"value":101},"You want to establish better organization habits",{"type":52,"tag":77,"props":103,"children":104},{},[105],{"type":57,"value":106},"You're starting a new project and need a good structure",{"type":52,"tag":77,"props":108,"children":109},{},[110],{"type":57,"value":111},"You're cleaning up before archiving old projects",{"type":52,"tag":66,"props":113,"children":115},{"id":114},"what-this-skill-does",[116],{"type":57,"value":117},"What This Skill Does",{"type":52,"tag":119,"props":120,"children":121},"ol",{},[122,133,143,153,163,173],{"type":52,"tag":77,"props":123,"children":124},{},[125,131],{"type":52,"tag":126,"props":127,"children":128},"strong",{},[129],{"type":57,"value":130},"Analyzes Current Structure",{"type":57,"value":132},": Reviews your folders and files to understand what you have",{"type":52,"tag":77,"props":134,"children":135},{},[136,141],{"type":52,"tag":126,"props":137,"children":138},{},[139],{"type":57,"value":140},"Finds Duplicates",{"type":57,"value":142},": Identifies duplicate files across your system",{"type":52,"tag":77,"props":144,"children":145},{},[146,151],{"type":52,"tag":126,"props":147,"children":148},{},[149],{"type":57,"value":150},"Suggests Organization",{"type":57,"value":152},": Proposes logical folder structures based on your content",{"type":52,"tag":77,"props":154,"children":155},{},[156,161],{"type":52,"tag":126,"props":157,"children":158},{},[159],{"type":57,"value":160},"Automates Cleanup",{"type":57,"value":162},": Moves, renames, and organizes files with your approval",{"type":52,"tag":77,"props":164,"children":165},{},[166,171],{"type":52,"tag":126,"props":167,"children":168},{},[169],{"type":57,"value":170},"Maintains Context",{"type":57,"value":172},": Makes smart decisions based on file types, dates, and content",{"type":52,"tag":77,"props":174,"children":175},{},[176,181],{"type":52,"tag":126,"props":177,"children":178},{},[179],{"type":57,"value":180},"Reduces Clutter",{"type":57,"value":182},": Identifies old files you probably don't need anymore",{"type":52,"tag":66,"props":184,"children":186},{"id":185},"how-to-use",[187],{"type":57,"value":188},"How to Use",{"type":52,"tag":190,"props":191,"children":193},"h3",{"id":192},"from-your-home-directory",[194],{"type":57,"value":195},"From Your Home Directory",{"type":52,"tag":197,"props":198,"children":202},"pre",{"className":199,"code":201,"language":57},[200],"language-text","cd ~\n",[203],{"type":52,"tag":204,"props":205,"children":207},"code",{"__ignoreMap":206},"",[208],{"type":57,"value":201},{"type":52,"tag":60,"props":210,"children":211},{},[212],{"type":57,"value":213},"Then run Claude Code and ask for help:",{"type":52,"tag":197,"props":215,"children":218},{"className":216,"code":217,"language":57},[200],"Help me organize my Downloads folder\n",[219],{"type":52,"tag":204,"props":220,"children":221},{"__ignoreMap":206},[222],{"type":57,"value":217},{"type":52,"tag":197,"props":224,"children":227},{"className":225,"code":226,"language":57},[200],"Find duplicate files in my Documents folder\n",[228],{"type":52,"tag":204,"props":229,"children":230},{"__ignoreMap":206},[231],{"type":57,"value":226},{"type":52,"tag":197,"props":233,"children":236},{"className":234,"code":235,"language":57},[200],"Review my project directories and suggest improvements\n",[237],{"type":52,"tag":204,"props":238,"children":239},{"__ignoreMap":206},[240],{"type":57,"value":235},{"type":52,"tag":190,"props":242,"children":244},{"id":243},"specific-organization-tasks",[245],{"type":57,"value":246},"Specific Organization Tasks",{"type":52,"tag":197,"props":248,"children":251},{"className":249,"code":250,"language":57},[200],"Organize these downloads into proper folders based on what they are\n",[252],{"type":52,"tag":204,"props":253,"children":254},{"__ignoreMap":206},[255],{"type":57,"value":250},{"type":52,"tag":197,"props":257,"children":260},{"className":258,"code":259,"language":57},[200],"Find duplicate files and help me decide which to keep\n",[261],{"type":52,"tag":204,"props":262,"children":263},{"__ignoreMap":206},[264],{"type":57,"value":259},{"type":52,"tag":197,"props":266,"children":269},{"className":267,"code":268,"language":57},[200],"Clean up old files I haven't touched in 6+ months\n",[270],{"type":52,"tag":204,"props":271,"children":272},{"__ignoreMap":206},[273],{"type":57,"value":268},{"type":52,"tag":197,"props":275,"children":278},{"className":276,"code":277,"language":57},[200],"Create a better folder structure for my [work\u002Fprojects\u002Fphotos\u002Fetc]\n",[279],{"type":52,"tag":204,"props":280,"children":281},{"__ignoreMap":206},[282],{"type":57,"value":277},{"type":52,"tag":66,"props":284,"children":286},{"id":285},"instructions",[287],{"type":57,"value":288},"Instructions",{"type":52,"tag":60,"props":290,"children":291},{},[292],{"type":57,"value":293},"When a user requests file organization help:",{"type":52,"tag":119,"props":295,"children":296},{},[297,334,639,764,978,1162,1328],{"type":52,"tag":77,"props":298,"children":299},{},[300,305,309,311],{"type":52,"tag":126,"props":301,"children":302},{},[303],{"type":57,"value":304},"Understand the Scope",{"type":52,"tag":306,"props":307,"children":308},"br",{},[],{"type":57,"value":310},"Ask clarifying questions:",{"type":52,"tag":73,"props":312,"children":313},{},[314,319,324,329],{"type":52,"tag":77,"props":315,"children":316},{},[317],{"type":57,"value":318},"Which directory needs organization? (Downloads, Documents, entire home folder?)",{"type":52,"tag":77,"props":320,"children":321},{},[322],{"type":57,"value":323},"What's the main problem? (Can't find things, duplicates, too messy, no structure?)",{"type":52,"tag":77,"props":325,"children":326},{},[327],{"type":57,"value":328},"Any files or folders to avoid? (Current projects, sensitive data?)",{"type":52,"tag":77,"props":330,"children":331},{},[332],{"type":57,"value":333},"How aggressively to organize? (Conservative vs. comprehensive cleanup)",{"type":52,"tag":77,"props":335,"children":336},{},[337,342,345,347,606,609,611],{"type":52,"tag":126,"props":338,"children":339},{},[340],{"type":57,"value":341},"Analyze Current State",{"type":52,"tag":306,"props":343,"children":344},{},[],{"type":57,"value":346},"Review the target directory:",{"type":52,"tag":197,"props":348,"children":352},{"className":349,"code":350,"language":351,"meta":206,"style":206},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","# Get overview of current structure\nls -la [target_directory]\n\n# Check file types and sizes\nfind [target_directory] -type f -exec file {} \\; | head -20\n\n# Identify largest files\ndu -sh [target_directory]\u002F* | sort -rh | head -20\n\n# Count file types\nfind [target_directory] -type f | sed 's\u002F.*\\.\u002F\u002F' | sort | uniq -c | sort -rn\n","bash",[353],{"type":52,"tag":204,"props":354,"children":355},{"__ignoreMap":206},[356,368,390,400,409,449,457,466,517,525,534],{"type":52,"tag":357,"props":358,"children":361},"span",{"class":359,"line":360},"line",1,[362],{"type":52,"tag":357,"props":363,"children":365},{"style":364},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#546E7A;--shiki-default-font-style:italic;--shiki-dark:#676E95;--shiki-dark-font-style:italic",[366],{"type":57,"value":367},"# Get overview of current structure\n",{"type":52,"tag":357,"props":369,"children":371},{"class":359,"line":370},2,[372,378,384],{"type":52,"tag":357,"props":373,"children":375},{"style":374},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[376],{"type":57,"value":377},"ls",{"type":52,"tag":357,"props":379,"children":381},{"style":380},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[382],{"type":57,"value":383}," -la",{"type":52,"tag":357,"props":385,"children":387},{"style":386},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[388],{"type":57,"value":389}," [target_directory]\n",{"type":52,"tag":357,"props":391,"children":393},{"class":359,"line":392},3,[394],{"type":52,"tag":357,"props":395,"children":397},{"emptyLinePlaceholder":396},true,[398],{"type":57,"value":399},"\n",{"type":52,"tag":357,"props":401,"children":403},{"class":359,"line":402},4,[404],{"type":52,"tag":357,"props":405,"children":406},{"style":364},[407],{"type":57,"value":408},"# Check file types and sizes\n",{"type":52,"tag":357,"props":410,"children":412},{"class":359,"line":411},5,[413,418,423,429,434,439,444],{"type":52,"tag":357,"props":414,"children":415},{"style":374},[416],{"type":57,"value":417},"find",{"type":52,"tag":357,"props":419,"children":420},{"style":386},[421],{"type":57,"value":422}," [target_directory] -type f -exec file ",{"type":52,"tag":357,"props":424,"children":426},{"style":425},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[427],{"type":57,"value":428},"{}",{"type":52,"tag":357,"props":430,"children":431},{"style":386},[432],{"type":57,"value":433}," \\; ",{"type":52,"tag":357,"props":435,"children":436},{"style":425},[437],{"type":57,"value":438},"|",{"type":52,"tag":357,"props":440,"children":441},{"style":374},[442],{"type":57,"value":443}," head",{"type":52,"tag":357,"props":445,"children":446},{"style":380},[447],{"type":57,"value":448}," -20\n",{"type":52,"tag":357,"props":450,"children":452},{"class":359,"line":451},6,[453],{"type":52,"tag":357,"props":454,"children":455},{"emptyLinePlaceholder":396},[456],{"type":57,"value":399},{"type":52,"tag":357,"props":458,"children":460},{"class":359,"line":459},7,[461],{"type":52,"tag":357,"props":462,"children":463},{"style":364},[464],{"type":57,"value":465},"# Identify largest files\n",{"type":52,"tag":357,"props":467,"children":469},{"class":359,"line":468},8,[470,475,480,485,490,495,500,505,509,513],{"type":52,"tag":357,"props":471,"children":472},{"style":374},[473],{"type":57,"value":474},"du",{"type":52,"tag":357,"props":476,"children":477},{"style":380},[478],{"type":57,"value":479}," -sh",{"type":52,"tag":357,"props":481,"children":482},{"style":386},[483],{"type":57,"value":484}," [target_directory]\u002F",{"type":52,"tag":357,"props":486,"children":487},{"style":425},[488],{"type":57,"value":489},"*",{"type":52,"tag":357,"props":491,"children":492},{"style":425},[493],{"type":57,"value":494}," |",{"type":52,"tag":357,"props":496,"children":497},{"style":374},[498],{"type":57,"value":499}," sort",{"type":52,"tag":357,"props":501,"children":502},{"style":380},[503],{"type":57,"value":504}," -rh",{"type":52,"tag":357,"props":506,"children":507},{"style":425},[508],{"type":57,"value":494},{"type":52,"tag":357,"props":510,"children":511},{"style":374},[512],{"type":57,"value":443},{"type":52,"tag":357,"props":514,"children":515},{"style":380},[516],{"type":57,"value":448},{"type":52,"tag":357,"props":518,"children":520},{"class":359,"line":519},9,[521],{"type":52,"tag":357,"props":522,"children":523},{"emptyLinePlaceholder":396},[524],{"type":57,"value":399},{"type":52,"tag":357,"props":526,"children":528},{"class":359,"line":527},10,[529],{"type":52,"tag":357,"props":530,"children":531},{"style":364},[532],{"type":57,"value":533},"# Count file types\n",{"type":52,"tag":357,"props":535,"children":537},{"class":359,"line":536},11,[538,542,547,551,556,561,566,571,575,579,583,588,593,597,601],{"type":52,"tag":357,"props":539,"children":540},{"style":374},[541],{"type":57,"value":417},{"type":52,"tag":357,"props":543,"children":544},{"style":386},[545],{"type":57,"value":546}," [target_directory] -type f ",{"type":52,"tag":357,"props":548,"children":549},{"style":425},[550],{"type":57,"value":438},{"type":52,"tag":357,"props":552,"children":553},{"style":374},[554],{"type":57,"value":555}," sed",{"type":52,"tag":357,"props":557,"children":558},{"style":425},[559],{"type":57,"value":560}," '",{"type":52,"tag":357,"props":562,"children":563},{"style":380},[564],{"type":57,"value":565},"s\u002F.*\\.\u002F\u002F",{"type":52,"tag":357,"props":567,"children":568},{"style":425},[569],{"type":57,"value":570},"'",{"type":52,"tag":357,"props":572,"children":573},{"style":425},[574],{"type":57,"value":494},{"type":52,"tag":357,"props":576,"children":577},{"style":374},[578],{"type":57,"value":499},{"type":52,"tag":357,"props":580,"children":581},{"style":425},[582],{"type":57,"value":494},{"type":52,"tag":357,"props":584,"children":585},{"style":374},[586],{"type":57,"value":587}," uniq",{"type":52,"tag":357,"props":589,"children":590},{"style":380},[591],{"type":57,"value":592}," -c",{"type":52,"tag":357,"props":594,"children":595},{"style":425},[596],{"type":57,"value":494},{"type":52,"tag":357,"props":598,"children":599},{"style":374},[600],{"type":57,"value":499},{"type":52,"tag":357,"props":602,"children":603},{"style":380},[604],{"type":57,"value":605}," -rn\n",{"type":52,"tag":306,"props":607,"children":608},{},[],{"type":57,"value":610},"Summarize findings:",{"type":52,"tag":73,"props":612,"children":613},{},[614,619,624,629,634],{"type":52,"tag":77,"props":615,"children":616},{},[617],{"type":57,"value":618},"Total files and folders",{"type":52,"tag":77,"props":620,"children":621},{},[622],{"type":57,"value":623},"File type breakdown",{"type":52,"tag":77,"props":625,"children":626},{},[627],{"type":57,"value":628},"Size distribution",{"type":52,"tag":77,"props":630,"children":631},{},[632],{"type":57,"value":633},"Date ranges",{"type":52,"tag":77,"props":635,"children":636},{},[637],{"type":57,"value":638},"Obvious organization issues",{"type":52,"tag":77,"props":640,"children":641},{},[642,647,650,652,655,660,662,700,703,708,709,737,740,745,746],{"type":52,"tag":126,"props":643,"children":644},{},[645],{"type":57,"value":646},"Identify Organization Patterns",{"type":52,"tag":306,"props":648,"children":649},{},[],{"type":57,"value":651},"Based on the files, determine logical groupings:",{"type":52,"tag":306,"props":653,"children":654},{},[],{"type":52,"tag":126,"props":656,"children":657},{},[658],{"type":57,"value":659},"By Type",{"type":57,"value":661},":",{"type":52,"tag":73,"props":663,"children":664},{},[665,670,675,680,685,690,695],{"type":52,"tag":77,"props":666,"children":667},{},[668],{"type":57,"value":669},"Documents (PDFs, DOCX, TXT)",{"type":52,"tag":77,"props":671,"children":672},{},[673],{"type":57,"value":674},"Images (JPG, PNG, SVG)",{"type":52,"tag":77,"props":676,"children":677},{},[678],{"type":57,"value":679},"Videos (MP4, MOV)",{"type":52,"tag":77,"props":681,"children":682},{},[683],{"type":57,"value":684},"Archives (ZIP, TAR, DMG)",{"type":52,"tag":77,"props":686,"children":687},{},[688],{"type":57,"value":689},"Code\u002FProjects (directories with code)",{"type":52,"tag":77,"props":691,"children":692},{},[693],{"type":57,"value":694},"Spreadsheets (XLSX, CSV)",{"type":52,"tag":77,"props":696,"children":697},{},[698],{"type":57,"value":699},"Presentations (PPTX, KEY)",{"type":52,"tag":306,"props":701,"children":702},{},[],{"type":52,"tag":126,"props":704,"children":705},{},[706],{"type":57,"value":707},"By Purpose",{"type":57,"value":661},{"type":52,"tag":73,"props":710,"children":711},{},[712,717,722,727,732],{"type":52,"tag":77,"props":713,"children":714},{},[715],{"type":57,"value":716},"Work vs. Personal",{"type":52,"tag":77,"props":718,"children":719},{},[720],{"type":57,"value":721},"Active vs. Archive",{"type":52,"tag":77,"props":723,"children":724},{},[725],{"type":57,"value":726},"Project-specific",{"type":52,"tag":77,"props":728,"children":729},{},[730],{"type":57,"value":731},"Reference materials",{"type":52,"tag":77,"props":733,"children":734},{},[735],{"type":57,"value":736},"Temporary\u002Fscratch files",{"type":52,"tag":306,"props":738,"children":739},{},[],{"type":52,"tag":126,"props":741,"children":742},{},[743],{"type":57,"value":744},"By Date",{"type":57,"value":661},{"type":52,"tag":73,"props":747,"children":748},{},[749,754,759],{"type":52,"tag":77,"props":750,"children":751},{},[752],{"type":57,"value":753},"Current year\u002Fmonth",{"type":52,"tag":77,"props":755,"children":756},{},[757],{"type":57,"value":758},"Previous years",{"type":52,"tag":77,"props":760,"children":761},{},[762],{"type":57,"value":763},"Very old (archive candidates)",{"type":52,"tag":77,"props":765,"children":766},{},[767,772,775,777,945,948,950],{"type":52,"tag":126,"props":768,"children":769},{},[770],{"type":57,"value":771},"Find Duplicates",{"type":52,"tag":306,"props":773,"children":774},{},[],{"type":57,"value":776},"When requested, search for duplicates:",{"type":52,"tag":197,"props":778,"children":780},{"className":349,"code":779,"language":351,"meta":206,"style":206},"# Find exact duplicates by hash\nfind [directory] -type f -exec md5 {} \\; | sort | uniq -d\n\n# Find files with same name\nfind [directory] -type f -printf '%f\\n' | sort | uniq -d\n\n# Find similar-sized files\nfind [directory] -type f -printf '%s %p\\n' | sort -n\n",[781],{"type":52,"tag":204,"props":782,"children":783},{"__ignoreMap":206},[784,792,833,840,848,893,900,908],{"type":52,"tag":357,"props":785,"children":786},{"class":359,"line":360},[787],{"type":52,"tag":357,"props":788,"children":789},{"style":364},[790],{"type":57,"value":791},"# Find exact duplicates by hash\n",{"type":52,"tag":357,"props":793,"children":794},{"class":359,"line":370},[795,799,804,808,812,816,820,824,828],{"type":52,"tag":357,"props":796,"children":797},{"style":374},[798],{"type":57,"value":417},{"type":52,"tag":357,"props":800,"children":801},{"style":386},[802],{"type":57,"value":803}," [directory] -type f -exec md5 ",{"type":52,"tag":357,"props":805,"children":806},{"style":425},[807],{"type":57,"value":428},{"type":52,"tag":357,"props":809,"children":810},{"style":386},[811],{"type":57,"value":433},{"type":52,"tag":357,"props":813,"children":814},{"style":425},[815],{"type":57,"value":438},{"type":52,"tag":357,"props":817,"children":818},{"style":374},[819],{"type":57,"value":499},{"type":52,"tag":357,"props":821,"children":822},{"style":425},[823],{"type":57,"value":494},{"type":52,"tag":357,"props":825,"children":826},{"style":374},[827],{"type":57,"value":587},{"type":52,"tag":357,"props":829,"children":830},{"style":380},[831],{"type":57,"value":832}," -d\n",{"type":52,"tag":357,"props":834,"children":835},{"class":359,"line":392},[836],{"type":52,"tag":357,"props":837,"children":838},{"emptyLinePlaceholder":396},[839],{"type":57,"value":399},{"type":52,"tag":357,"props":841,"children":842},{"class":359,"line":402},[843],{"type":52,"tag":357,"props":844,"children":845},{"style":364},[846],{"type":57,"value":847},"# Find files with same name\n",{"type":52,"tag":357,"props":849,"children":850},{"class":359,"line":411},[851,855,860,864,869,873,877,881,885,889],{"type":52,"tag":357,"props":852,"children":853},{"style":374},[854],{"type":57,"value":417},{"type":52,"tag":357,"props":856,"children":857},{"style":386},[858],{"type":57,"value":859}," [directory] -type f -printf ",{"type":52,"tag":357,"props":861,"children":862},{"style":425},[863],{"type":57,"value":570},{"type":52,"tag":357,"props":865,"children":866},{"style":380},[867],{"type":57,"value":868},"%f\\n",{"type":52,"tag":357,"props":870,"children":871},{"style":425},[872],{"type":57,"value":570},{"type":52,"tag":357,"props":874,"children":875},{"style":425},[876],{"type":57,"value":494},{"type":52,"tag":357,"props":878,"children":879},{"style":374},[880],{"type":57,"value":499},{"type":52,"tag":357,"props":882,"children":883},{"style":425},[884],{"type":57,"value":494},{"type":52,"tag":357,"props":886,"children":887},{"style":374},[888],{"type":57,"value":587},{"type":52,"tag":357,"props":890,"children":891},{"style":380},[892],{"type":57,"value":832},{"type":52,"tag":357,"props":894,"children":895},{"class":359,"line":451},[896],{"type":52,"tag":357,"props":897,"children":898},{"emptyLinePlaceholder":396},[899],{"type":57,"value":399},{"type":52,"tag":357,"props":901,"children":902},{"class":359,"line":459},[903],{"type":52,"tag":357,"props":904,"children":905},{"style":364},[906],{"type":57,"value":907},"# Find similar-sized files\n",{"type":52,"tag":357,"props":909,"children":910},{"class":359,"line":468},[911,915,919,923,928,932,936,940],{"type":52,"tag":357,"props":912,"children":913},{"style":374},[914],{"type":57,"value":417},{"type":52,"tag":357,"props":916,"children":917},{"style":386},[918],{"type":57,"value":859},{"type":52,"tag":357,"props":920,"children":921},{"style":425},[922],{"type":57,"value":570},{"type":52,"tag":357,"props":924,"children":925},{"style":380},[926],{"type":57,"value":927},"%s %p\\n",{"type":52,"tag":357,"props":929,"children":930},{"style":425},[931],{"type":57,"value":570},{"type":52,"tag":357,"props":933,"children":934},{"style":425},[935],{"type":57,"value":494},{"type":52,"tag":357,"props":937,"children":938},{"style":374},[939],{"type":57,"value":499},{"type":52,"tag":357,"props":941,"children":942},{"style":380},[943],{"type":57,"value":944}," -n\n",{"type":52,"tag":306,"props":946,"children":947},{},[],{"type":57,"value":949},"For each set of duplicates:",{"type":52,"tag":73,"props":951,"children":952},{},[953,958,963,968],{"type":52,"tag":77,"props":954,"children":955},{},[956],{"type":57,"value":957},"Show all file paths",{"type":52,"tag":77,"props":959,"children":960},{},[961],{"type":57,"value":962},"Display sizes and modification dates",{"type":52,"tag":77,"props":964,"children":965},{},[966],{"type":57,"value":967},"Recommend which to keep (usually newest or best-named)",{"type":52,"tag":77,"props":969,"children":970},{},[971,976],{"type":52,"tag":126,"props":972,"children":973},{},[974],{"type":57,"value":975},"Important",{"type":57,"value":977},": Always ask for confirmation before deleting",{"type":52,"tag":77,"props":979,"children":980},{},[981,986,989,991,1144,1147,1151,1153],{"type":52,"tag":126,"props":982,"children":983},{},[984],{"type":57,"value":985},"Propose Organization Plan",{"type":52,"tag":306,"props":987,"children":988},{},[],{"type":57,"value":990},"Present a clear plan before making changes:",{"type":52,"tag":197,"props":992,"children":996},{"className":993,"code":994,"language":995,"meta":206,"style":206},"language-markdown shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","# Organization Plan for [Directory]\n\n## Current State\n- X files across Y folders\n- [Size] total\n- File types: [breakdown]\n- Issues: [list problems]\n\n## Proposed Structure\n\n","markdown",[997],{"type":52,"tag":204,"props":998,"children":999},{"__ignoreMap":206},[1000,1028,1035,1048,1061,1088,1113,1125,1132],{"type":52,"tag":357,"props":1001,"children":1002},{"class":359,"line":360},[1003,1008,1013,1018,1023],{"type":52,"tag":357,"props":1004,"children":1005},{"style":425},[1006],{"type":57,"value":1007},"# ",{"type":52,"tag":357,"props":1009,"children":1010},{"style":374},[1011],{"type":57,"value":1012},"Organization Plan for ",{"type":52,"tag":357,"props":1014,"children":1015},{"style":425},[1016],{"type":57,"value":1017},"[",{"type":52,"tag":357,"props":1019,"children":1020},{"style":380},[1021],{"type":57,"value":1022},"Directory",{"type":52,"tag":357,"props":1024,"children":1025},{"style":425},[1026],{"type":57,"value":1027},"]\n",{"type":52,"tag":357,"props":1029,"children":1030},{"class":359,"line":370},[1031],{"type":52,"tag":357,"props":1032,"children":1033},{"emptyLinePlaceholder":396},[1034],{"type":57,"value":399},{"type":52,"tag":357,"props":1036,"children":1037},{"class":359,"line":392},[1038,1043],{"type":52,"tag":357,"props":1039,"children":1040},{"style":425},[1041],{"type":57,"value":1042},"## ",{"type":52,"tag":357,"props":1044,"children":1045},{"style":374},[1046],{"type":57,"value":1047},"Current State\n",{"type":52,"tag":357,"props":1049,"children":1050},{"class":359,"line":402},[1051,1056],{"type":52,"tag":357,"props":1052,"children":1053},{"style":425},[1054],{"type":57,"value":1055},"-",{"type":52,"tag":357,"props":1057,"children":1058},{"style":386},[1059],{"type":57,"value":1060}," X files across Y folders\n",{"type":52,"tag":357,"props":1062,"children":1063},{"class":359,"line":411},[1064,1068,1073,1078,1083],{"type":52,"tag":357,"props":1065,"children":1066},{"style":425},[1067],{"type":57,"value":1055},{"type":52,"tag":357,"props":1069,"children":1070},{"style":425},[1071],{"type":57,"value":1072}," [",{"type":52,"tag":357,"props":1074,"children":1075},{"style":380},[1076],{"type":57,"value":1077},"Size",{"type":52,"tag":357,"props":1079,"children":1080},{"style":425},[1081],{"type":57,"value":1082},"]",{"type":52,"tag":357,"props":1084,"children":1085},{"style":386},[1086],{"type":57,"value":1087}," total\n",{"type":52,"tag":357,"props":1089,"children":1090},{"class":359,"line":451},[1091,1095,1100,1104,1109],{"type":52,"tag":357,"props":1092,"children":1093},{"style":425},[1094],{"type":57,"value":1055},{"type":52,"tag":357,"props":1096,"children":1097},{"style":386},[1098],{"type":57,"value":1099}," File types: ",{"type":52,"tag":357,"props":1101,"children":1102},{"style":425},[1103],{"type":57,"value":1017},{"type":52,"tag":357,"props":1105,"children":1106},{"style":380},[1107],{"type":57,"value":1108},"breakdown",{"type":52,"tag":357,"props":1110,"children":1111},{"style":425},[1112],{"type":57,"value":1027},{"type":52,"tag":357,"props":1114,"children":1115},{"class":359,"line":459},[1116,1120],{"type":52,"tag":357,"props":1117,"children":1118},{"style":425},[1119],{"type":57,"value":1055},{"type":52,"tag":357,"props":1121,"children":1122},{"style":386},[1123],{"type":57,"value":1124}," Issues: [list problems]\n",{"type":52,"tag":357,"props":1126,"children":1127},{"class":359,"line":468},[1128],{"type":52,"tag":357,"props":1129,"children":1130},{"emptyLinePlaceholder":396},[1131],{"type":57,"value":399},{"type":52,"tag":357,"props":1133,"children":1134},{"class":359,"line":519},[1135,1139],{"type":52,"tag":357,"props":1136,"children":1137},{"style":425},[1138],{"type":57,"value":1042},{"type":52,"tag":357,"props":1140,"children":1141},{"style":374},[1142],{"type":57,"value":1143},"Proposed Structure\n",{"type":52,"tag":306,"props":1145,"children":1146},{},[],{"type":52,"tag":357,"props":1148,"children":1149},{},[1150],{"type":57,"value":1022},{"type":57,"value":1152},"\u002F\n├── Work\u002F\n│   ├── Projects\u002F\n│   ├── Documents\u002F\n│   └── Archive\u002F\n├── Personal\u002F\n│   ├── Photos\u002F\n│   ├── Documents\u002F\n│   └── Media\u002F\n└── Downloads\u002F\n├── To-Sort\u002F\n└── Archive\u002F",{"type":52,"tag":197,"props":1154,"children":1157},{"className":1155,"code":1156,"language":57},[200],"\n## Changes I'll Make\n\n1. **Create new folders**: [list]\n2. **Move files**:\n   - X PDFs → Work\u002FDocuments\u002F\n   - Y images → Personal\u002FPhotos\u002F\n   - Z old files → Archive\u002F\n3. **Rename files**: [any renaming patterns]\n4. **Delete**: [duplicates or trash files]\n\n## Files Needing Your Decision\n\n- [List any files you're unsure about]\n\nReady to proceed? (yes\u002Fno\u002Fmodify)\n",[1158],{"type":52,"tag":204,"props":1159,"children":1160},{"__ignoreMap":206},[1161],{"type":57,"value":1156},{"type":52,"tag":77,"props":1163,"children":1164},{},[1165,1170,1173,1175,1291,1294,1299,1300],{"type":52,"tag":126,"props":1166,"children":1167},{},[1168],{"type":57,"value":1169},"Execute Organization",{"type":52,"tag":306,"props":1171,"children":1172},{},[],{"type":57,"value":1174},"After approval, organize systematically:",{"type":52,"tag":197,"props":1176,"children":1178},{"className":349,"code":1177,"language":351,"meta":206,"style":206},"# Create folder structure\nmkdir -p \"path\u002Fto\u002Fnew\u002Ffolders\"\n\n# Move files with clear logging\nmv \"old\u002Fpath\u002Ffile.pdf\" \"new\u002Fpath\u002Ffile.pdf\"\n\n# Rename files with consistent patterns\n# Example: \"YYYY-MM-DD - Description.ext\"\n",[1179],{"type":52,"tag":204,"props":1180,"children":1181},{"__ignoreMap":206},[1182,1190,1218,1225,1233,1268,1275,1283],{"type":52,"tag":357,"props":1183,"children":1184},{"class":359,"line":360},[1185],{"type":52,"tag":357,"props":1186,"children":1187},{"style":364},[1188],{"type":57,"value":1189},"# Create folder structure\n",{"type":52,"tag":357,"props":1191,"children":1192},{"class":359,"line":370},[1193,1198,1203,1208,1213],{"type":52,"tag":357,"props":1194,"children":1195},{"style":374},[1196],{"type":57,"value":1197},"mkdir",{"type":52,"tag":357,"props":1199,"children":1200},{"style":380},[1201],{"type":57,"value":1202}," -p",{"type":52,"tag":357,"props":1204,"children":1205},{"style":425},[1206],{"type":57,"value":1207}," \"",{"type":52,"tag":357,"props":1209,"children":1210},{"style":380},[1211],{"type":57,"value":1212},"path\u002Fto\u002Fnew\u002Ffolders",{"type":52,"tag":357,"props":1214,"children":1215},{"style":425},[1216],{"type":57,"value":1217},"\"\n",{"type":52,"tag":357,"props":1219,"children":1220},{"class":359,"line":392},[1221],{"type":52,"tag":357,"props":1222,"children":1223},{"emptyLinePlaceholder":396},[1224],{"type":57,"value":399},{"type":52,"tag":357,"props":1226,"children":1227},{"class":359,"line":402},[1228],{"type":52,"tag":357,"props":1229,"children":1230},{"style":364},[1231],{"type":57,"value":1232},"# Move files with clear logging\n",{"type":52,"tag":357,"props":1234,"children":1235},{"class":359,"line":411},[1236,1241,1245,1250,1255,1259,1264],{"type":52,"tag":357,"props":1237,"children":1238},{"style":374},[1239],{"type":57,"value":1240},"mv",{"type":52,"tag":357,"props":1242,"children":1243},{"style":425},[1244],{"type":57,"value":1207},{"type":52,"tag":357,"props":1246,"children":1247},{"style":380},[1248],{"type":57,"value":1249},"old\u002Fpath\u002Ffile.pdf",{"type":52,"tag":357,"props":1251,"children":1252},{"style":425},[1253],{"type":57,"value":1254},"\"",{"type":52,"tag":357,"props":1256,"children":1257},{"style":425},[1258],{"type":57,"value":1207},{"type":52,"tag":357,"props":1260,"children":1261},{"style":380},[1262],{"type":57,"value":1263},"new\u002Fpath\u002Ffile.pdf",{"type":52,"tag":357,"props":1265,"children":1266},{"style":425},[1267],{"type":57,"value":1217},{"type":52,"tag":357,"props":1269,"children":1270},{"class":359,"line":451},[1271],{"type":52,"tag":357,"props":1272,"children":1273},{"emptyLinePlaceholder":396},[1274],{"type":57,"value":399},{"type":52,"tag":357,"props":1276,"children":1277},{"class":359,"line":459},[1278],{"type":52,"tag":357,"props":1279,"children":1280},{"style":364},[1281],{"type":57,"value":1282},"# Rename files with consistent patterns\n",{"type":52,"tag":357,"props":1284,"children":1285},{"class":359,"line":468},[1286],{"type":52,"tag":357,"props":1287,"children":1288},{"style":364},[1289],{"type":57,"value":1290},"# Example: \"YYYY-MM-DD - Description.ext\"\n",{"type":52,"tag":306,"props":1292,"children":1293},{},[],{"type":52,"tag":126,"props":1295,"children":1296},{},[1297],{"type":57,"value":1298},"Important Rules",{"type":57,"value":661},{"type":52,"tag":73,"props":1301,"children":1302},{},[1303,1308,1313,1318,1323],{"type":52,"tag":77,"props":1304,"children":1305},{},[1306],{"type":57,"value":1307},"Always confirm before deleting anything",{"type":52,"tag":77,"props":1309,"children":1310},{},[1311],{"type":57,"value":1312},"Log all moves for potential undo",{"type":52,"tag":77,"props":1314,"children":1315},{},[1316],{"type":57,"value":1317},"Preserve original modification dates",{"type":52,"tag":77,"props":1319,"children":1320},{},[1321],{"type":57,"value":1322},"Handle filename conflicts gracefully",{"type":52,"tag":77,"props":1324,"children":1325},{},[1326],{"type":57,"value":1327},"Stop and ask if you encounter unexpected situations",{"type":52,"tag":77,"props":1329,"children":1330},{},[1331,1336,1339,1341,1853,1856,1858],{"type":52,"tag":126,"props":1332,"children":1333},{},[1334],{"type":57,"value":1335},"Provide Summary and Maintenance Tips",{"type":52,"tag":306,"props":1337,"children":1338},{},[],{"type":57,"value":1340},"After organizing:",{"type":52,"tag":197,"props":1342,"children":1344},{"className":993,"code":1343,"language":995,"meta":206,"style":206},"# Organization Complete! ✨\n\n## What Changed\n\n- Created [X] new folders\n- Organized [Y] files\n- Freed [Z] GB by removing duplicates\n- Archived [W] old files\n\n## New Structure\n\n[Show the new folder tree]\n\n## Maintenance Tips\n\nTo keep this organized:\n\n1. **Weekly**: Sort new downloads\n2. **Monthly**: Review and archive completed projects\n3. **Quarterly**: Check for new duplicates\n4. **Yearly**: Archive old files\n\n## Quick Commands for You\n\n```bash\n# Find files modified this week\nfind . -type f -mtime -7\n\n# Sort downloads by type\n[custom command for their setup]\n\n# Find duplicates\n[custom command]\n",[1345],{"type":52,"tag":204,"props":1346,"children":1347},{"__ignoreMap":206},[1348,1360,1367,1379,1386,1416,1446,1476,1506,1513,1525,1532,1541,1549,1562,1570,1579,1587,1618,1645,1672,1699,1707,1720,1728,1743,1752,1785,1793,1802,1819,1827,1836],{"type":52,"tag":357,"props":1349,"children":1350},{"class":359,"line":360},[1351,1355],{"type":52,"tag":357,"props":1352,"children":1353},{"style":425},[1354],{"type":57,"value":1007},{"type":52,"tag":357,"props":1356,"children":1357},{"style":374},[1358],{"type":57,"value":1359},"Organization Complete! ✨\n",{"type":52,"tag":357,"props":1361,"children":1362},{"class":359,"line":370},[1363],{"type":52,"tag":357,"props":1364,"children":1365},{"emptyLinePlaceholder":396},[1366],{"type":57,"value":399},{"type":52,"tag":357,"props":1368,"children":1369},{"class":359,"line":392},[1370,1374],{"type":52,"tag":357,"props":1371,"children":1372},{"style":425},[1373],{"type":57,"value":1042},{"type":52,"tag":357,"props":1375,"children":1376},{"style":374},[1377],{"type":57,"value":1378},"What Changed\n",{"type":52,"tag":357,"props":1380,"children":1381},{"class":359,"line":402},[1382],{"type":52,"tag":357,"props":1383,"children":1384},{"emptyLinePlaceholder":396},[1385],{"type":57,"value":399},{"type":52,"tag":357,"props":1387,"children":1388},{"class":359,"line":411},[1389,1393,1398,1402,1407,1411],{"type":52,"tag":357,"props":1390,"children":1391},{"style":425},[1392],{"type":57,"value":1055},{"type":52,"tag":357,"props":1394,"children":1395},{"style":386},[1396],{"type":57,"value":1397}," Created ",{"type":52,"tag":357,"props":1399,"children":1400},{"style":425},[1401],{"type":57,"value":1017},{"type":52,"tag":357,"props":1403,"children":1404},{"style":380},[1405],{"type":57,"value":1406},"X",{"type":52,"tag":357,"props":1408,"children":1409},{"style":425},[1410],{"type":57,"value":1082},{"type":52,"tag":357,"props":1412,"children":1413},{"style":386},[1414],{"type":57,"value":1415}," new folders\n",{"type":52,"tag":357,"props":1417,"children":1418},{"class":359,"line":451},[1419,1423,1428,1432,1437,1441],{"type":52,"tag":357,"props":1420,"children":1421},{"style":425},[1422],{"type":57,"value":1055},{"type":52,"tag":357,"props":1424,"children":1425},{"style":386},[1426],{"type":57,"value":1427}," Organized ",{"type":52,"tag":357,"props":1429,"children":1430},{"style":425},[1431],{"type":57,"value":1017},{"type":52,"tag":357,"props":1433,"children":1434},{"style":380},[1435],{"type":57,"value":1436},"Y",{"type":52,"tag":357,"props":1438,"children":1439},{"style":425},[1440],{"type":57,"value":1082},{"type":52,"tag":357,"props":1442,"children":1443},{"style":386},[1444],{"type":57,"value":1445}," files\n",{"type":52,"tag":357,"props":1447,"children":1448},{"class":359,"line":459},[1449,1453,1458,1462,1467,1471],{"type":52,"tag":357,"props":1450,"children":1451},{"style":425},[1452],{"type":57,"value":1055},{"type":52,"tag":357,"props":1454,"children":1455},{"style":386},[1456],{"type":57,"value":1457}," Freed ",{"type":52,"tag":357,"props":1459,"children":1460},{"style":425},[1461],{"type":57,"value":1017},{"type":52,"tag":357,"props":1463,"children":1464},{"style":380},[1465],{"type":57,"value":1466},"Z",{"type":52,"tag":357,"props":1468,"children":1469},{"style":425},[1470],{"type":57,"value":1082},{"type":52,"tag":357,"props":1472,"children":1473},{"style":386},[1474],{"type":57,"value":1475}," GB by removing duplicates\n",{"type":52,"tag":357,"props":1477,"children":1478},{"class":359,"line":468},[1479,1483,1488,1492,1497,1501],{"type":52,"tag":357,"props":1480,"children":1481},{"style":425},[1482],{"type":57,"value":1055},{"type":52,"tag":357,"props":1484,"children":1485},{"style":386},[1486],{"type":57,"value":1487}," Archived ",{"type":52,"tag":357,"props":1489,"children":1490},{"style":425},[1491],{"type":57,"value":1017},{"type":52,"tag":357,"props":1493,"children":1494},{"style":380},[1495],{"type":57,"value":1496},"W",{"type":52,"tag":357,"props":1498,"children":1499},{"style":425},[1500],{"type":57,"value":1082},{"type":52,"tag":357,"props":1502,"children":1503},{"style":386},[1504],{"type":57,"value":1505}," old files\n",{"type":52,"tag":357,"props":1507,"children":1508},{"class":359,"line":519},[1509],{"type":52,"tag":357,"props":1510,"children":1511},{"emptyLinePlaceholder":396},[1512],{"type":57,"value":399},{"type":52,"tag":357,"props":1514,"children":1515},{"class":359,"line":527},[1516,1520],{"type":52,"tag":357,"props":1517,"children":1518},{"style":425},[1519],{"type":57,"value":1042},{"type":52,"tag":357,"props":1521,"children":1522},{"style":374},[1523],{"type":57,"value":1524},"New Structure\n",{"type":52,"tag":357,"props":1526,"children":1527},{"class":359,"line":536},[1528],{"type":52,"tag":357,"props":1529,"children":1530},{"emptyLinePlaceholder":396},[1531],{"type":57,"value":399},{"type":52,"tag":357,"props":1533,"children":1535},{"class":359,"line":1534},12,[1536],{"type":52,"tag":357,"props":1537,"children":1538},{"style":386},[1539],{"type":57,"value":1540},"[Show the new folder tree]\n",{"type":52,"tag":357,"props":1542,"children":1544},{"class":359,"line":1543},13,[1545],{"type":52,"tag":357,"props":1546,"children":1547},{"emptyLinePlaceholder":396},[1548],{"type":57,"value":399},{"type":52,"tag":357,"props":1550,"children":1552},{"class":359,"line":1551},14,[1553,1557],{"type":52,"tag":357,"props":1554,"children":1555},{"style":425},[1556],{"type":57,"value":1042},{"type":52,"tag":357,"props":1558,"children":1559},{"style":374},[1560],{"type":57,"value":1561},"Maintenance Tips\n",{"type":52,"tag":357,"props":1563,"children":1565},{"class":359,"line":1564},15,[1566],{"type":52,"tag":357,"props":1567,"children":1568},{"emptyLinePlaceholder":396},[1569],{"type":57,"value":399},{"type":52,"tag":357,"props":1571,"children":1573},{"class":359,"line":1572},16,[1574],{"type":52,"tag":357,"props":1575,"children":1576},{"style":386},[1577],{"type":57,"value":1578},"To keep this organized:\n",{"type":52,"tag":357,"props":1580,"children":1582},{"class":359,"line":1581},17,[1583],{"type":52,"tag":357,"props":1584,"children":1585},{"emptyLinePlaceholder":396},[1586],{"type":57,"value":399},{"type":52,"tag":357,"props":1588,"children":1590},{"class":359,"line":1589},18,[1591,1596,1602,1608,1613],{"type":52,"tag":357,"props":1592,"children":1593},{"style":425},[1594],{"type":57,"value":1595},"1.",{"type":52,"tag":357,"props":1597,"children":1599},{"style":1598},"--shiki-light:#39ADB5;--shiki-light-font-weight:bold;--shiki-default:#89DDFF;--shiki-default-font-weight:bold;--shiki-dark:#89DDFF;--shiki-dark-font-weight:bold",[1600],{"type":57,"value":1601}," **",{"type":52,"tag":357,"props":1603,"children":1605},{"style":1604},"--shiki-light:#E53935;--shiki-light-font-weight:bold;--shiki-default:#F07178;--shiki-default-font-weight:bold;--shiki-dark:#F07178;--shiki-dark-font-weight:bold",[1606],{"type":57,"value":1607},"Weekly",{"type":52,"tag":357,"props":1609,"children":1610},{"style":1598},[1611],{"type":57,"value":1612},"**",{"type":52,"tag":357,"props":1614,"children":1615},{"style":386},[1616],{"type":57,"value":1617},": Sort new downloads\n",{"type":52,"tag":357,"props":1619,"children":1621},{"class":359,"line":1620},19,[1622,1627,1631,1636,1640],{"type":52,"tag":357,"props":1623,"children":1624},{"style":425},[1625],{"type":57,"value":1626},"2.",{"type":52,"tag":357,"props":1628,"children":1629},{"style":1598},[1630],{"type":57,"value":1601},{"type":52,"tag":357,"props":1632,"children":1633},{"style":1604},[1634],{"type":57,"value":1635},"Monthly",{"type":52,"tag":357,"props":1637,"children":1638},{"style":1598},[1639],{"type":57,"value":1612},{"type":52,"tag":357,"props":1641,"children":1642},{"style":386},[1643],{"type":57,"value":1644},": Review and archive completed projects\n",{"type":52,"tag":357,"props":1646,"children":1648},{"class":359,"line":1647},20,[1649,1654,1658,1663,1667],{"type":52,"tag":357,"props":1650,"children":1651},{"style":425},[1652],{"type":57,"value":1653},"3.",{"type":52,"tag":357,"props":1655,"children":1656},{"style":1598},[1657],{"type":57,"value":1601},{"type":52,"tag":357,"props":1659,"children":1660},{"style":1604},[1661],{"type":57,"value":1662},"Quarterly",{"type":52,"tag":357,"props":1664,"children":1665},{"style":1598},[1666],{"type":57,"value":1612},{"type":52,"tag":357,"props":1668,"children":1669},{"style":386},[1670],{"type":57,"value":1671},": Check for new duplicates\n",{"type":52,"tag":357,"props":1673,"children":1675},{"class":359,"line":1674},21,[1676,1681,1685,1690,1694],{"type":52,"tag":357,"props":1677,"children":1678},{"style":425},[1679],{"type":57,"value":1680},"4.",{"type":52,"tag":357,"props":1682,"children":1683},{"style":1598},[1684],{"type":57,"value":1601},{"type":52,"tag":357,"props":1686,"children":1687},{"style":1604},[1688],{"type":57,"value":1689},"Yearly",{"type":52,"tag":357,"props":1691,"children":1692},{"style":1598},[1693],{"type":57,"value":1612},{"type":52,"tag":357,"props":1695,"children":1696},{"style":386},[1697],{"type":57,"value":1698},": Archive old files\n",{"type":52,"tag":357,"props":1700,"children":1702},{"class":359,"line":1701},22,[1703],{"type":52,"tag":357,"props":1704,"children":1705},{"emptyLinePlaceholder":396},[1706],{"type":57,"value":399},{"type":52,"tag":357,"props":1708,"children":1710},{"class":359,"line":1709},23,[1711,1715],{"type":52,"tag":357,"props":1712,"children":1713},{"style":425},[1714],{"type":57,"value":1042},{"type":52,"tag":357,"props":1716,"children":1717},{"style":374},[1718],{"type":57,"value":1719},"Quick Commands for You\n",{"type":52,"tag":357,"props":1721,"children":1723},{"class":359,"line":1722},24,[1724],{"type":52,"tag":357,"props":1725,"children":1726},{"emptyLinePlaceholder":396},[1727],{"type":57,"value":399},{"type":52,"tag":357,"props":1729,"children":1731},{"class":359,"line":1730},25,[1732,1737],{"type":52,"tag":357,"props":1733,"children":1734},{"style":380},[1735],{"type":57,"value":1736},"```",{"type":52,"tag":357,"props":1738,"children":1740},{"style":1739},"--shiki-light:#90A4AE90;--shiki-default:#EEFFFF90;--shiki-dark:#BABED890",[1741],{"type":57,"value":1742},"bash\n",{"type":52,"tag":357,"props":1744,"children":1746},{"class":359,"line":1745},26,[1747],{"type":52,"tag":357,"props":1748,"children":1749},{"style":364},[1750],{"type":57,"value":1751},"# Find files modified this week\n",{"type":52,"tag":357,"props":1753,"children":1755},{"class":359,"line":1754},27,[1756,1760,1765,1770,1775,1780],{"type":52,"tag":357,"props":1757,"children":1758},{"style":374},[1759],{"type":57,"value":417},{"type":52,"tag":357,"props":1761,"children":1762},{"style":380},[1763],{"type":57,"value":1764}," .",{"type":52,"tag":357,"props":1766,"children":1767},{"style":380},[1768],{"type":57,"value":1769}," -type",{"type":52,"tag":357,"props":1771,"children":1772},{"style":380},[1773],{"type":57,"value":1774}," f",{"type":52,"tag":357,"props":1776,"children":1777},{"style":380},[1778],{"type":57,"value":1779}," -mtime",{"type":52,"tag":357,"props":1781,"children":1782},{"style":380},[1783],{"type":57,"value":1784}," -7\n",{"type":52,"tag":357,"props":1786,"children":1788},{"class":359,"line":1787},28,[1789],{"type":52,"tag":357,"props":1790,"children":1791},{"emptyLinePlaceholder":396},[1792],{"type":57,"value":399},{"type":52,"tag":357,"props":1794,"children":1796},{"class":359,"line":1795},29,[1797],{"type":52,"tag":357,"props":1798,"children":1799},{"style":364},[1800],{"type":57,"value":1801},"# Sort downloads by type\n",{"type":52,"tag":357,"props":1803,"children":1805},{"class":359,"line":1804},30,[1806,1810,1815],{"type":52,"tag":357,"props":1807,"children":1808},{"style":425},[1809],{"type":57,"value":1017},{"type":52,"tag":357,"props":1811,"children":1812},{"style":386},[1813],{"type":57,"value":1814},"custom command for their setup",{"type":52,"tag":357,"props":1816,"children":1817},{"style":425},[1818],{"type":57,"value":1027},{"type":52,"tag":357,"props":1820,"children":1822},{"class":359,"line":1821},31,[1823],{"type":52,"tag":357,"props":1824,"children":1825},{"emptyLinePlaceholder":396},[1826],{"type":57,"value":399},{"type":52,"tag":357,"props":1828,"children":1830},{"class":359,"line":1829},32,[1831],{"type":52,"tag":357,"props":1832,"children":1833},{"style":364},[1834],{"type":57,"value":1835},"# Find duplicates\n",{"type":52,"tag":357,"props":1837,"children":1839},{"class":359,"line":1838},33,[1840,1844,1849],{"type":52,"tag":357,"props":1841,"children":1842},{"style":425},[1843],{"type":57,"value":1017},{"type":52,"tag":357,"props":1845,"children":1846},{"style":386},[1847],{"type":57,"value":1848},"custom command",{"type":52,"tag":357,"props":1850,"children":1851},{"style":425},[1852],{"type":57,"value":1027},{"type":52,"tag":306,"props":1854,"children":1855},{},[],{"type":57,"value":1857},"Want to organize another folder?",{"type":52,"tag":197,"props":1859,"children":1861},{"className":1860,"code":206,"language":57},[200],[1862],{"type":52,"tag":204,"props":1863,"children":1864},{"__ignoreMap":206},[1865],{"type":57,"value":206},{"type":52,"tag":66,"props":1867,"children":1869},{"id":1868},"examples",[1870],{"type":57,"value":1871},"Examples",{"type":52,"tag":190,"props":1873,"children":1875},{"id":1874},"example-1-organizing-downloads-from-justin-dielmann",[1876],{"type":57,"value":1877},"Example 1: Organizing Downloads (From Justin Dielmann)",{"type":52,"tag":60,"props":1879,"children":1880},{},[1881,1886],{"type":52,"tag":126,"props":1882,"children":1883},{},[1884],{"type":57,"value":1885},"User",{"type":57,"value":1887},": \"My Downloads folder is a mess with 500+ files. Help me organize it.\"",{"type":52,"tag":60,"props":1889,"children":1890},{},[1891,1896],{"type":52,"tag":126,"props":1892,"children":1893},{},[1894],{"type":57,"value":1895},"Process",{"type":57,"value":661},{"type":52,"tag":119,"props":1898,"children":1899},{},[1900,1905,1910,1951,1956,1961],{"type":52,"tag":77,"props":1901,"children":1902},{},[1903],{"type":57,"value":1904},"Analyzes Downloads folder",{"type":52,"tag":77,"props":1906,"children":1907},{},[1908],{"type":57,"value":1909},"Finds patterns: work docs, personal photos, installers, random PDFs",{"type":52,"tag":77,"props":1911,"children":1912},{},[1913,1915],{"type":57,"value":1914},"Proposes structure:\n",{"type":52,"tag":73,"props":1916,"children":1917},{},[1918],{"type":52,"tag":77,"props":1919,"children":1920},{},[1921,1923],{"type":57,"value":1922},"Downloads\u002F\n",{"type":52,"tag":73,"props":1924,"children":1925},{},[1926,1931,1936,1941,1946],{"type":52,"tag":77,"props":1927,"children":1928},{},[1929],{"type":57,"value":1930},"Work\u002F",{"type":52,"tag":77,"props":1932,"children":1933},{},[1934],{"type":57,"value":1935},"Personal\u002F",{"type":52,"tag":77,"props":1937,"children":1938},{},[1939],{"type":57,"value":1940},"Installers\u002F (DMG, PKG files)",{"type":52,"tag":77,"props":1942,"children":1943},{},[1944],{"type":57,"value":1945},"Archive\u002F",{"type":52,"tag":77,"props":1947,"children":1948},{},[1949],{"type":57,"value":1950},"ToSort\u002F (things needing decisions)",{"type":52,"tag":77,"props":1952,"children":1953},{},[1954],{"type":57,"value":1955},"Asks for confirmation",{"type":52,"tag":77,"props":1957,"children":1958},{},[1959],{"type":57,"value":1960},"Moves files intelligently based on content and names",{"type":52,"tag":77,"props":1962,"children":1963},{},[1964],{"type":57,"value":1965},"Results: 500 files → 5 organized folders",{"type":52,"tag":190,"props":1967,"children":1969},{"id":1968},"example-2-finding-and-removing-duplicates",[1970],{"type":57,"value":1971},"Example 2: Finding and Removing Duplicates",{"type":52,"tag":60,"props":1973,"children":1974},{},[1975,1979],{"type":52,"tag":126,"props":1976,"children":1977},{},[1978],{"type":57,"value":1885},{"type":57,"value":1980},": \"Find duplicate files in my Documents and help me decide which to keep.\"",{"type":52,"tag":60,"props":1982,"children":1983},{},[1984,1989],{"type":52,"tag":126,"props":1985,"children":1986},{},[1987],{"type":57,"value":1988},"Output",{"type":57,"value":661},{"type":52,"tag":197,"props":1991,"children":1993},{"className":993,"code":1992,"language":995,"meta":206,"style":206},"# Found 23 Sets of Duplicates (156 MB total)\n\n## Duplicate Set 1: \"proposal.pdf\"\n- `\u002FDocuments\u002Fproposal.pdf` (2.3 MB, modified: 2024-03-15)\n- `\u002FDocuments\u002Fold\u002Fproposal.pdf` (2.3 MB, modified: 2024-03-15)\n- `\u002FDesktop\u002Fproposal.pdf` (2.3 MB, modified: 2024-03-10)\n\n**Recommendation**: Keep `\u002FDocuments\u002Fproposal.pdf` (most recent in correct location)\nDelete the other 2 copies?\n\n[Continue for all duplicates...]\n",[1994],{"type":52,"tag":204,"props":1995,"children":1996},{"__ignoreMap":206},[1997,2009,2016,2028,2055,2079,2104,2111,2149,2157,2164],{"type":52,"tag":357,"props":1998,"children":1999},{"class":359,"line":360},[2000,2004],{"type":52,"tag":357,"props":2001,"children":2002},{"style":425},[2003],{"type":57,"value":1007},{"type":52,"tag":357,"props":2005,"children":2006},{"style":374},[2007],{"type":57,"value":2008},"Found 23 Sets of Duplicates (156 MB total)\n",{"type":52,"tag":357,"props":2010,"children":2011},{"class":359,"line":370},[2012],{"type":52,"tag":357,"props":2013,"children":2014},{"emptyLinePlaceholder":396},[2015],{"type":57,"value":399},{"type":52,"tag":357,"props":2017,"children":2018},{"class":359,"line":392},[2019,2023],{"type":52,"tag":357,"props":2020,"children":2021},{"style":425},[2022],{"type":57,"value":1042},{"type":52,"tag":357,"props":2024,"children":2025},{"style":374},[2026],{"type":57,"value":2027},"Duplicate Set 1: \"proposal.pdf\"\n",{"type":52,"tag":357,"props":2029,"children":2030},{"class":359,"line":402},[2031,2035,2040,2045,2050],{"type":52,"tag":357,"props":2032,"children":2033},{"style":425},[2034],{"type":57,"value":1055},{"type":52,"tag":357,"props":2036,"children":2037},{"style":425},[2038],{"type":57,"value":2039}," `",{"type":52,"tag":357,"props":2041,"children":2042},{"style":380},[2043],{"type":57,"value":2044},"\u002FDocuments\u002Fproposal.pdf",{"type":52,"tag":357,"props":2046,"children":2047},{"style":425},[2048],{"type":57,"value":2049},"`",{"type":52,"tag":357,"props":2051,"children":2052},{"style":386},[2053],{"type":57,"value":2054}," (2.3 MB, modified: 2024-03-15)\n",{"type":52,"tag":357,"props":2056,"children":2057},{"class":359,"line":411},[2058,2062,2066,2071,2075],{"type":52,"tag":357,"props":2059,"children":2060},{"style":425},[2061],{"type":57,"value":1055},{"type":52,"tag":357,"props":2063,"children":2064},{"style":425},[2065],{"type":57,"value":2039},{"type":52,"tag":357,"props":2067,"children":2068},{"style":380},[2069],{"type":57,"value":2070},"\u002FDocuments\u002Fold\u002Fproposal.pdf",{"type":52,"tag":357,"props":2072,"children":2073},{"style":425},[2074],{"type":57,"value":2049},{"type":52,"tag":357,"props":2076,"children":2077},{"style":386},[2078],{"type":57,"value":2054},{"type":52,"tag":357,"props":2080,"children":2081},{"class":359,"line":451},[2082,2086,2090,2095,2099],{"type":52,"tag":357,"props":2083,"children":2084},{"style":425},[2085],{"type":57,"value":1055},{"type":52,"tag":357,"props":2087,"children":2088},{"style":425},[2089],{"type":57,"value":2039},{"type":52,"tag":357,"props":2091,"children":2092},{"style":380},[2093],{"type":57,"value":2094},"\u002FDesktop\u002Fproposal.pdf",{"type":52,"tag":357,"props":2096,"children":2097},{"style":425},[2098],{"type":57,"value":2049},{"type":52,"tag":357,"props":2100,"children":2101},{"style":386},[2102],{"type":57,"value":2103}," (2.3 MB, modified: 2024-03-10)\n",{"type":52,"tag":357,"props":2105,"children":2106},{"class":359,"line":459},[2107],{"type":52,"tag":357,"props":2108,"children":2109},{"emptyLinePlaceholder":396},[2110],{"type":57,"value":399},{"type":52,"tag":357,"props":2112,"children":2113},{"class":359,"line":468},[2114,2118,2123,2127,2132,2136,2140,2144],{"type":52,"tag":357,"props":2115,"children":2116},{"style":1598},[2117],{"type":57,"value":1612},{"type":52,"tag":357,"props":2119,"children":2120},{"style":1604},[2121],{"type":57,"value":2122},"Recommendation",{"type":52,"tag":357,"props":2124,"children":2125},{"style":1598},[2126],{"type":57,"value":1612},{"type":52,"tag":357,"props":2128,"children":2129},{"style":386},[2130],{"type":57,"value":2131},": Keep ",{"type":52,"tag":357,"props":2133,"children":2134},{"style":425},[2135],{"type":57,"value":2049},{"type":52,"tag":357,"props":2137,"children":2138},{"style":380},[2139],{"type":57,"value":2044},{"type":52,"tag":357,"props":2141,"children":2142},{"style":425},[2143],{"type":57,"value":2049},{"type":52,"tag":357,"props":2145,"children":2146},{"style":386},[2147],{"type":57,"value":2148}," (most recent in correct location)\n",{"type":52,"tag":357,"props":2150,"children":2151},{"class":359,"line":519},[2152],{"type":52,"tag":357,"props":2153,"children":2154},{"style":386},[2155],{"type":57,"value":2156},"Delete the other 2 copies?\n",{"type":52,"tag":357,"props":2158,"children":2159},{"class":359,"line":527},[2160],{"type":52,"tag":357,"props":2161,"children":2162},{"emptyLinePlaceholder":396},[2163],{"type":57,"value":399},{"type":52,"tag":357,"props":2165,"children":2166},{"class":359,"line":536},[2167],{"type":52,"tag":357,"props":2168,"children":2169},{"style":386},[2170],{"type":57,"value":2171},"[Continue for all duplicates...]\n",{"type":52,"tag":190,"props":2173,"children":2175},{"id":2174},"example-3-restructuring-projects-folder",[2176],{"type":57,"value":2177},"Example 3: Restructuring Projects Folder",{"type":52,"tag":60,"props":2179,"children":2180},{},[2181,2185],{"type":52,"tag":126,"props":2182,"children":2183},{},[2184],{"type":57,"value":1885},{"type":57,"value":2186},": \"Review my ~\u002FProjects directory and suggest improvements.\"",{"type":52,"tag":60,"props":2188,"children":2189},{},[2190,2194],{"type":52,"tag":126,"props":2191,"children":2192},{},[2193],{"type":57,"value":1988},{"type":57,"value":661},{"type":52,"tag":197,"props":2196,"children":2198},{"className":993,"code":2197,"language":995,"meta":206,"style":206},"# Analysis of ~\u002FProjects\n\n## Current Structure Issues\n- Mix of active and archived projects (3+ years old)\n- No consistent naming convention\n- Some projects at root, others in random subfolders\n- Duplicate folders (project-name, project-name-old, project-name-v2)\n\n## Proposed Structure\n\n",[2199],{"type":52,"tag":204,"props":2200,"children":2201},{"__ignoreMap":206},[2202,2214,2221,2233,2245,2257,2269,2281,2288],{"type":52,"tag":357,"props":2203,"children":2204},{"class":359,"line":360},[2205,2209],{"type":52,"tag":357,"props":2206,"children":2207},{"style":425},[2208],{"type":57,"value":1007},{"type":52,"tag":357,"props":2210,"children":2211},{"style":374},[2212],{"type":57,"value":2213},"Analysis of ~\u002FProjects\n",{"type":52,"tag":357,"props":2215,"children":2216},{"class":359,"line":370},[2217],{"type":52,"tag":357,"props":2218,"children":2219},{"emptyLinePlaceholder":396},[2220],{"type":57,"value":399},{"type":52,"tag":357,"props":2222,"children":2223},{"class":359,"line":392},[2224,2228],{"type":52,"tag":357,"props":2225,"children":2226},{"style":425},[2227],{"type":57,"value":1042},{"type":52,"tag":357,"props":2229,"children":2230},{"style":374},[2231],{"type":57,"value":2232},"Current Structure Issues\n",{"type":52,"tag":357,"props":2234,"children":2235},{"class":359,"line":402},[2236,2240],{"type":52,"tag":357,"props":2237,"children":2238},{"style":425},[2239],{"type":57,"value":1055},{"type":52,"tag":357,"props":2241,"children":2242},{"style":386},[2243],{"type":57,"value":2244}," Mix of active and archived projects (3+ years old)\n",{"type":52,"tag":357,"props":2246,"children":2247},{"class":359,"line":411},[2248,2252],{"type":52,"tag":357,"props":2249,"children":2250},{"style":425},[2251],{"type":57,"value":1055},{"type":52,"tag":357,"props":2253,"children":2254},{"style":386},[2255],{"type":57,"value":2256}," No consistent naming convention\n",{"type":52,"tag":357,"props":2258,"children":2259},{"class":359,"line":451},[2260,2264],{"type":52,"tag":357,"props":2261,"children":2262},{"style":425},[2263],{"type":57,"value":1055},{"type":52,"tag":357,"props":2265,"children":2266},{"style":386},[2267],{"type":57,"value":2268}," Some projects at root, others in random subfolders\n",{"type":52,"tag":357,"props":2270,"children":2271},{"class":359,"line":459},[2272,2276],{"type":52,"tag":357,"props":2273,"children":2274},{"style":425},[2275],{"type":57,"value":1055},{"type":52,"tag":357,"props":2277,"children":2278},{"style":386},[2279],{"type":57,"value":2280}," Duplicate folders (project-name, project-name-old, project-name-v2)\n",{"type":52,"tag":357,"props":2282,"children":2283},{"class":359,"line":468},[2284],{"type":52,"tag":357,"props":2285,"children":2286},{"emptyLinePlaceholder":396},[2287],{"type":57,"value":399},{"type":52,"tag":357,"props":2289,"children":2290},{"class":359,"line":519},[2291,2295],{"type":52,"tag":357,"props":2292,"children":2293},{"style":425},[2294],{"type":57,"value":1042},{"type":52,"tag":357,"props":2296,"children":2297},{"style":374},[2298],{"type":57,"value":1143},{"type":52,"tag":60,"props":2300,"children":2301},{},[2302],{"type":57,"value":2303},"Projects\u002F\n├── Active\u002F\n│   ├── client-work\u002F\n│   ├── side-projects\u002F\n│   └── learning\u002F\n├── Archive\u002F\n│   ├── 2022\u002F\n│   ├── 2023\u002F\n│   └── 2024\u002F\n└── Templates\u002F",{"type":52,"tag":197,"props":2305,"children":2308},{"className":2306,"code":2307,"language":57},[200],"\n## Specific Changes\n1. Move 12 projects not touched since 2022 → Archive\u002F\n2. Consolidate 4 duplicate project folders\n3. Rename projects to consistent format: \"client-name-project-name\"\n4. Create Archive for old work\n\nWant me to implement this?\n",[2309],{"type":52,"tag":204,"props":2310,"children":2311},{"__ignoreMap":206},[2312],{"type":57,"value":2307},{"type":52,"tag":190,"props":2314,"children":2316},{"id":2315},"example-4-organizing-photos-by-date",[2317],{"type":57,"value":2318},"Example 4: Organizing Photos by Date",{"type":52,"tag":60,"props":2320,"children":2321},{},[2322,2326],{"type":52,"tag":126,"props":2323,"children":2324},{},[2325],{"type":57,"value":1885},{"type":57,"value":2327},": \"Organize my photo folders by year and month.\"",{"type":52,"tag":60,"props":2329,"children":2330},{},[2331,2335],{"type":52,"tag":126,"props":2332,"children":2333},{},[2334],{"type":57,"value":1988},{"type":57,"value":2336},": Creates structure like:",{"type":52,"tag":197,"props":2338,"children":2341},{"className":2339,"code":2340,"language":57},[200],"Photos\u002F\n├── 2023\u002F\n│   ├── 01-January\u002F\n│   ├── 02-February\u002F\n│   └── ...\n├── 2024\u002F\n│   ├── 01-January\u002F\n│   └── ...\n└── Unsorted\u002F\n",[2342],{"type":52,"tag":204,"props":2343,"children":2344},{"__ignoreMap":206},[2345],{"type":57,"value":2340},{"type":52,"tag":60,"props":2347,"children":2348},{},[2349],{"type":57,"value":2350},"Then moves photos based on EXIF data or file modification dates.",{"type":52,"tag":66,"props":2352,"children":2354},{"id":2353},"common-organization-tasks",[2355],{"type":57,"value":2356},"Common Organization Tasks",{"type":52,"tag":190,"props":2358,"children":2360},{"id":2359},"downloads-cleanup",[2361],{"type":57,"value":2362},"Downloads Cleanup",{"type":52,"tag":197,"props":2364,"children":2367},{"className":2365,"code":2366,"language":57},[200],"Organize my Downloads folder - move documents to Documents, \nimages to Pictures, keep installers separate, and archive files \nolder than 3 months.\n",[2368],{"type":52,"tag":204,"props":2369,"children":2370},{"__ignoreMap":206},[2371],{"type":57,"value":2366},{"type":52,"tag":190,"props":2373,"children":2375},{"id":2374},"project-organization",[2376],{"type":57,"value":2377},"Project Organization",{"type":52,"tag":197,"props":2379,"children":2382},{"className":2380,"code":2381,"language":57},[200],"Review my Projects folder structure and help me separate active \nprojects from old ones I should archive.\n",[2383],{"type":52,"tag":204,"props":2384,"children":2385},{"__ignoreMap":206},[2386],{"type":57,"value":2381},{"type":52,"tag":190,"props":2388,"children":2390},{"id":2389},"duplicate-removal",[2391],{"type":57,"value":2392},"Duplicate Removal",{"type":52,"tag":197,"props":2394,"children":2397},{"className":2395,"code":2396,"language":57},[200],"Find all duplicate files in my Documents folder and help me \ndecide which ones to keep.\n",[2398],{"type":52,"tag":204,"props":2399,"children":2400},{"__ignoreMap":206},[2401],{"type":57,"value":2396},{"type":52,"tag":190,"props":2403,"children":2405},{"id":2404},"desktop-cleanup",[2406],{"type":57,"value":2407},"Desktop Cleanup",{"type":52,"tag":197,"props":2409,"children":2412},{"className":2410,"code":2411,"language":57},[200],"My Desktop is covered in files. Help me organize everything into \nmy Documents folder properly.\n",[2413],{"type":52,"tag":204,"props":2414,"children":2415},{"__ignoreMap":206},[2416],{"type":57,"value":2411},{"type":52,"tag":190,"props":2418,"children":2420},{"id":2419},"photo-organization",[2421],{"type":57,"value":2422},"Photo Organization",{"type":52,"tag":197,"props":2424,"children":2427},{"className":2425,"code":2426,"language":57},[200],"Organize all photos in this folder by date (year\u002Fmonth) based \non when they were taken.\n",[2428],{"type":52,"tag":204,"props":2429,"children":2430},{"__ignoreMap":206},[2431],{"type":57,"value":2426},{"type":52,"tag":190,"props":2433,"children":2435},{"id":2434},"workpersonal-separation",[2436],{"type":57,"value":2437},"Work\u002FPersonal Separation",{"type":52,"tag":197,"props":2439,"children":2442},{"className":2440,"code":2441,"language":57},[200],"Help me separate my work files from personal files across my \nDocuments folder.\n",[2443],{"type":52,"tag":204,"props":2444,"children":2445},{"__ignoreMap":206},[2446],{"type":57,"value":2441},{"type":52,"tag":66,"props":2448,"children":2450},{"id":2449},"pro-tips",[2451],{"type":57,"value":2452},"Pro Tips",{"type":52,"tag":119,"props":2454,"children":2455},{},[2456,2466,2476,2486,2496,2506],{"type":52,"tag":77,"props":2457,"children":2458},{},[2459,2464],{"type":52,"tag":126,"props":2460,"children":2461},{},[2462],{"type":57,"value":2463},"Start Small",{"type":57,"value":2465},": Begin with one messy folder (like Downloads) to build trust",{"type":52,"tag":77,"props":2467,"children":2468},{},[2469,2474],{"type":52,"tag":126,"props":2470,"children":2471},{},[2472],{"type":57,"value":2473},"Regular Maintenance",{"type":57,"value":2475},": Run weekly cleanup on Downloads",{"type":52,"tag":77,"props":2477,"children":2478},{},[2479,2484],{"type":52,"tag":126,"props":2480,"children":2481},{},[2482],{"type":57,"value":2483},"Consistent Naming",{"type":57,"value":2485},": Use \"YYYY-MM-DD - Description\" format for important files",{"type":52,"tag":77,"props":2487,"children":2488},{},[2489,2494],{"type":52,"tag":126,"props":2490,"children":2491},{},[2492],{"type":57,"value":2493},"Archive Aggressively",{"type":57,"value":2495},": Move old projects to Archive instead of deleting",{"type":52,"tag":77,"props":2497,"children":2498},{},[2499,2504],{"type":52,"tag":126,"props":2500,"children":2501},{},[2502],{"type":57,"value":2503},"Keep Active Separate",{"type":57,"value":2505},": Maintain clear boundaries between active and archived work",{"type":52,"tag":77,"props":2507,"children":2508},{},[2509,2514],{"type":52,"tag":126,"props":2510,"children":2511},{},[2512],{"type":57,"value":2513},"Trust the Process",{"type":57,"value":2515},": Let Claude handle the cognitive load of where things go",{"type":52,"tag":66,"props":2517,"children":2519},{"id":2518},"best-practices",[2520],{"type":57,"value":2521},"Best Practices",{"type":52,"tag":190,"props":2523,"children":2525},{"id":2524},"folder-naming",[2526],{"type":57,"value":2527},"Folder Naming",{"type":52,"tag":73,"props":2529,"children":2530},{},[2531,2536,2541,2546],{"type":52,"tag":77,"props":2532,"children":2533},{},[2534],{"type":57,"value":2535},"Use clear, descriptive names",{"type":52,"tag":77,"props":2537,"children":2538},{},[2539],{"type":57,"value":2540},"Avoid spaces (use hyphens or underscores)",{"type":52,"tag":77,"props":2542,"children":2543},{},[2544],{"type":57,"value":2545},"Be specific: \"client-proposals\" not \"docs\"",{"type":52,"tag":77,"props":2547,"children":2548},{},[2549],{"type":57,"value":2550},"Use prefixes for ordering: \"01-current\", \"02-archive\"",{"type":52,"tag":190,"props":2552,"children":2554},{"id":2553},"file-naming",[2555],{"type":57,"value":2556},"File Naming",{"type":52,"tag":73,"props":2558,"children":2559},{},[2560,2565,2570,2575],{"type":52,"tag":77,"props":2561,"children":2562},{},[2563],{"type":57,"value":2564},"Include dates: \"2024-10-17-meeting-notes.md\"",{"type":52,"tag":77,"props":2566,"children":2567},{},[2568],{"type":57,"value":2569},"Be descriptive: \"q3-financial-report.xlsx\"",{"type":52,"tag":77,"props":2571,"children":2572},{},[2573],{"type":57,"value":2574},"Avoid version numbers in names (use version control instead)",{"type":52,"tag":77,"props":2576,"children":2577},{},[2578],{"type":57,"value":2579},"Remove download artifacts: \"document-final-v2 (1).pdf\" → \"document.pdf\"",{"type":52,"tag":190,"props":2581,"children":2583},{"id":2582},"when-to-archive",[2584],{"type":57,"value":2585},"When to Archive",{"type":52,"tag":73,"props":2587,"children":2588},{},[2589,2594,2599,2604],{"type":52,"tag":77,"props":2590,"children":2591},{},[2592],{"type":57,"value":2593},"Projects not touched in 6+ months",{"type":52,"tag":77,"props":2595,"children":2596},{},[2597],{"type":57,"value":2598},"Completed work that might be referenced later",{"type":52,"tag":77,"props":2600,"children":2601},{},[2602],{"type":57,"value":2603},"Old versions after migration to new systems",{"type":52,"tag":77,"props":2605,"children":2606},{},[2607],{"type":57,"value":2608},"Files you're hesitant to delete (archive first)",{"type":52,"tag":66,"props":2610,"children":2612},{"id":2611},"related-use-cases",[2613],{"type":57,"value":2614},"Related Use Cases",{"type":52,"tag":73,"props":2616,"children":2617},{},[2618,2623,2628,2633,2638],{"type":52,"tag":77,"props":2619,"children":2620},{},[2621],{"type":57,"value":2622},"Setting up organization for a new computer",{"type":52,"tag":77,"props":2624,"children":2625},{},[2626],{"type":57,"value":2627},"Preparing files for backup\u002Farchiving",{"type":52,"tag":77,"props":2629,"children":2630},{},[2631],{"type":57,"value":2632},"Cleaning up before storage cleanup",{"type":52,"tag":77,"props":2634,"children":2635},{},[2636],{"type":57,"value":2637},"Organizing shared team folders",{"type":52,"tag":77,"props":2639,"children":2640},{},[2641],{"type":57,"value":2642},"Structuring new project directories",{"type":52,"tag":2644,"props":2645,"children":2646},"style",{},[2647],{"type":57,"value":2648},"html .light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html.light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}",{"items":2650,"total":2735},[2651,2666,2682,2691,2701,2713,2722],{"slug":2652,"name":2653,"fn":2654,"description":2655,"org":2656,"tags":2657,"stars":20,"repoUrl":21,"updatedAt":2665},"21risk-automation","-21risk-automation","automate 21risk compliance and safety tasks","Automate 21risk tasks via Rube MCP (Composio). Always search tools first for current schemas.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2658,2659,2660,2662],{"name":18,"slug":19,"type":16},{"name":9,"slug":8,"type":16},{"name":2661,"slug":35,"type":16},"MCP",{"name":2663,"slug":2664,"type":16},"Risk Assessment","risk-assessment","2026-07-15T05:54:18.790529",{"slug":2667,"name":2668,"fn":2669,"description":2670,"org":2671,"tags":2672,"stars":20,"repoUrl":21,"updatedAt":2681},"2chat-automation","-2chat-automation","automate 2chat messaging tasks","Automate 2chat tasks via Rube MCP (Composio). Always search tools first for current schemas.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2673,2674,2677,2678],{"name":18,"slug":19,"type":16},{"name":2675,"slug":2676,"type":16},"Communications","communications",{"name":2661,"slug":35,"type":16},{"name":2679,"slug":2680,"type":16},"Messaging","messaging","2026-07-15T05:51:27.190332",{"slug":2683,"name":2683,"fn":2684,"description":2685,"org":2686,"tags":2687,"stars":20,"repoUrl":21,"updatedAt":2690},"ably-automation","automate Ably tasks with Composio","Automate Ably tasks via Rube MCP (Composio). Always search tools first for current schemas.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2688,2689],{"name":18,"slug":19,"type":16},{"name":2661,"slug":35,"type":16},"2026-07-12T08:09:55.453088",{"slug":2692,"name":2692,"fn":2693,"description":2694,"org":2695,"tags":2696,"stars":20,"repoUrl":21,"updatedAt":2700},"abstract-automation","automate Abstract tasks via Composio","Automate Abstract tasks via Rube MCP (Composio). Always search tools first for current schemas.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2697,2698,2699],{"name":18,"slug":19,"type":16},{"name":9,"slug":8,"type":16},{"name":2661,"slug":35,"type":16},"2026-07-15T05:45:16.470309",{"slug":2702,"name":2702,"fn":2703,"description":2704,"org":2705,"tags":2706,"stars":20,"repoUrl":21,"updatedAt":2712},"abuselpdb-automation","automate Abuselpdb tasks via Composio","Automate Abuselpdb tasks via Rube MCP (Composio). Always search tools first for current schemas.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2707,2708,2709],{"name":18,"slug":19,"type":16},{"name":2661,"slug":35,"type":16},{"name":2710,"slug":2711,"type":16},"Security","security","2026-07-15T05:56:20.013366",{"slug":2714,"name":2714,"fn":2715,"description":2716,"org":2717,"tags":2718,"stars":20,"repoUrl":21,"updatedAt":2721},"abyssale-automation","automate Abyssale tasks via Composio","Automate Abyssale tasks via Rube MCP (Composio). Always search tools first for current schemas.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2719,2720],{"name":18,"slug":19,"type":16},{"name":9,"slug":8,"type":16},"2026-07-15T05:54:50.762889",{"slug":2723,"name":2723,"fn":2724,"description":2725,"org":2726,"tags":2727,"stars":20,"repoUrl":21,"updatedAt":2734},"accelo-automation","automate Accelo tasks via Composio","Automate Accelo tasks via Rube MCP (Composio). Always search tools first for current schemas.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2728,2729,2730,2733],{"name":18,"slug":19,"type":16},{"name":9,"slug":8,"type":16},{"name":2731,"slug":2732,"type":16},"CRM","crm",{"name":2661,"slug":35,"type":16},"2026-07-15T05:48:43.429136",860,{"items":2737,"total":2841},[2738,2745,2752,2757,2763,2769,2774,2781,2795,2808,2821,2831],{"slug":2652,"name":2653,"fn":2654,"description":2655,"org":2739,"tags":2740,"stars":20,"repoUrl":21,"updatedAt":2665},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2741,2742,2743,2744],{"name":18,"slug":19,"type":16},{"name":9,"slug":8,"type":16},{"name":2661,"slug":35,"type":16},{"name":2663,"slug":2664,"type":16},{"slug":2667,"name":2668,"fn":2669,"description":2670,"org":2746,"tags":2747,"stars":20,"repoUrl":21,"updatedAt":2681},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2748,2749,2750,2751],{"name":18,"slug":19,"type":16},{"name":2675,"slug":2676,"type":16},{"name":2661,"slug":35,"type":16},{"name":2679,"slug":2680,"type":16},{"slug":2683,"name":2683,"fn":2684,"description":2685,"org":2753,"tags":2754,"stars":20,"repoUrl":21,"updatedAt":2690},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2755,2756],{"name":18,"slug":19,"type":16},{"name":2661,"slug":35,"type":16},{"slug":2692,"name":2692,"fn":2693,"description":2694,"org":2758,"tags":2759,"stars":20,"repoUrl":21,"updatedAt":2700},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2760,2761,2762],{"name":18,"slug":19,"type":16},{"name":9,"slug":8,"type":16},{"name":2661,"slug":35,"type":16},{"slug":2702,"name":2702,"fn":2703,"description":2704,"org":2764,"tags":2765,"stars":20,"repoUrl":21,"updatedAt":2712},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2766,2767,2768],{"name":18,"slug":19,"type":16},{"name":2661,"slug":35,"type":16},{"name":2710,"slug":2711,"type":16},{"slug":2714,"name":2714,"fn":2715,"description":2716,"org":2770,"tags":2771,"stars":20,"repoUrl":21,"updatedAt":2721},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2772,2773],{"name":18,"slug":19,"type":16},{"name":9,"slug":8,"type":16},{"slug":2723,"name":2723,"fn":2724,"description":2725,"org":2775,"tags":2776,"stars":20,"repoUrl":21,"updatedAt":2734},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2777,2778,2779,2780],{"name":18,"slug":19,"type":16},{"name":9,"slug":8,"type":16},{"name":2731,"slug":2732,"type":16},{"name":2661,"slug":35,"type":16},{"slug":2782,"name":2782,"fn":2783,"description":2784,"org":2785,"tags":2786,"stars":20,"repoUrl":21,"updatedAt":2794},"accredible-certificates-automation","automate Accredible certificate management","Automate Accredible Certificates tasks via Rube MCP (Composio). Always search tools first for current schemas.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2787,2788,2791],{"name":18,"slug":19,"type":16},{"name":2789,"slug":2790,"type":16},"Documents","documents",{"name":2792,"slug":2793,"type":16},"E-Signature","e-signature","2026-07-15T05:55:33.159639",{"slug":2796,"name":2796,"fn":2797,"description":2798,"org":2799,"tags":2800,"stars":20,"repoUrl":21,"updatedAt":2807},"acculynx-automation","automate Acculynx construction management tasks","Automate Acculynx tasks via Rube MCP (Composio). Always search tools first for current schemas.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2801,2802,2803,2804],{"name":18,"slug":19,"type":16},{"name":9,"slug":8,"type":16},{"name":2661,"slug":35,"type":16},{"name":2805,"slug":2806,"type":16},"Operations","operations","2026-07-15T05:58:48.059284",{"slug":2809,"name":2809,"fn":2810,"description":2811,"org":2812,"tags":2813,"stars":20,"repoUrl":21,"updatedAt":2820},"active-campaign-automation","automate ActiveCampaign marketing and CRM tasks","Automate ActiveCampaign tasks via Rube MCP (Composio). Always search tools first for current schemas.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2814,2815,2816,2817],{"name":18,"slug":19,"type":16},{"name":9,"slug":8,"type":16},{"name":2731,"slug":2732,"type":16},{"name":2818,"slug":2819,"type":16},"Email Marketing","email-marketing","2026-07-15T05:49:44.281711",{"slug":2822,"name":2822,"fn":2823,"description":2824,"org":2825,"tags":2826,"stars":20,"repoUrl":21,"updatedAt":2830},"addresszen-automation","automate Addresszen address validation","Automate Addresszen tasks via Rube MCP (Composio). Always search tools first for current schemas.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2827,2828,2829],{"name":18,"slug":19,"type":16},{"name":9,"slug":8,"type":16},{"name":2661,"slug":35,"type":16},"2026-07-15T05:47:51.742515",{"slug":2832,"name":2832,"fn":2833,"description":2834,"org":2835,"tags":2836,"stars":20,"repoUrl":21,"updatedAt":2840},"adobe-automation","automate Adobe tasks via Composio","Automate Adobe tasks via Rube MCP (Composio). Always search tools first for current schemas.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2837,2838,2839],{"name":18,"slug":19,"type":16},{"name":9,"slug":8,"type":16},{"name":2661,"slug":35,"type":16},"2026-07-15T05:45:05.303254",863]