daemora 1.0.3 → 1.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +663 -0
- package/README.md +69 -19
- package/SOUL.md +25 -24
- package/daemora-ui/README.md +11 -0
- package/package.json +12 -2
- package/skills/api-development.md +35 -0
- package/skills/artifacts-builder/SKILL.md +74 -0
- package/skills/artifacts-builder/scripts/bundle-artifact.sh +54 -0
- package/skills/artifacts-builder/scripts/init-artifact.sh +322 -0
- package/skills/artifacts-builder/scripts/shadcn-components.tar.gz +0 -0
- package/skills/brand-guidelines.md +73 -0
- package/skills/browser.md +77 -0
- package/skills/changelog-generator.md +104 -0
- package/skills/coding.md +26 -10
- package/skills/content-research-writer.md +538 -0
- package/skills/data-analysis.md +27 -0
- package/skills/debugging.md +33 -0
- package/skills/devops.md +37 -0
- package/skills/document-docx.md +197 -0
- package/skills/document-pdf.md +294 -0
- package/skills/document-pptx.md +484 -0
- package/skills/document-xlsx.md +289 -0
- package/skills/domain-name-brainstormer.md +212 -0
- package/skills/file-organizer.md +433 -0
- package/skills/frontend-design.md +42 -0
- package/skills/image-enhancer.md +99 -0
- package/skills/invoice-organizer.md +446 -0
- package/skills/lead-research-assistant.md +199 -0
- package/skills/mcp-builder/SKILL.md +328 -0
- package/skills/mcp-builder/reference/evaluation.md +602 -0
- package/skills/mcp-builder/reference/mcp_best_practices.md +915 -0
- package/skills/mcp-builder/reference/node_mcp_server.md +916 -0
- package/skills/mcp-builder/reference/python_mcp_server.md +752 -0
- package/skills/mcp-builder/scripts/connections.py +151 -0
- package/skills/mcp-builder/scripts/evaluation.py +373 -0
- package/skills/mcp-builder/scripts/example_evaluation.xml +22 -0
- package/skills/mcp-builder/scripts/requirements.txt +2 -0
- package/skills/meeting-insights-analyzer.md +327 -0
- package/skills/orchestration.md +93 -0
- package/skills/raffle-winner-picker.md +159 -0
- package/skills/slack-gif-creator/SKILL.md +646 -0
- package/skills/slack-gif-creator/core/color_palettes.py +302 -0
- package/skills/slack-gif-creator/core/easing.py +230 -0
- package/skills/slack-gif-creator/core/frame_composer.py +469 -0
- package/skills/slack-gif-creator/core/gif_builder.py +246 -0
- package/skills/slack-gif-creator/core/typography.py +357 -0
- package/skills/slack-gif-creator/core/validators.py +264 -0
- package/skills/slack-gif-creator/core/visual_effects.py +494 -0
- package/skills/slack-gif-creator/requirements.txt +4 -0
- package/skills/slack-gif-creator/templates/bounce.py +106 -0
- package/skills/slack-gif-creator/templates/explode.py +331 -0
- package/skills/slack-gif-creator/templates/fade.py +329 -0
- package/skills/slack-gif-creator/templates/flip.py +291 -0
- package/skills/slack-gif-creator/templates/kaleidoscope.py +211 -0
- package/skills/slack-gif-creator/templates/morph.py +329 -0
- package/skills/slack-gif-creator/templates/move.py +293 -0
- package/skills/slack-gif-creator/templates/pulse.py +268 -0
- package/skills/slack-gif-creator/templates/shake.py +127 -0
- package/skills/slack-gif-creator/templates/slide.py +291 -0
- package/skills/slack-gif-creator/templates/spin.py +269 -0
- package/skills/slack-gif-creator/templates/wiggle.py +300 -0
- package/skills/slack-gif-creator/templates/zoom.py +312 -0
- package/skills/system-admin.md +44 -0
- package/skills/tailored-resume-generator.md +345 -0
- package/skills/theme-factory/SKILL.md +59 -0
- package/skills/theme-factory/theme-showcase.pdf +0 -0
- package/skills/theme-factory/themes/arctic-frost.md +19 -0
- package/skills/theme-factory/themes/botanical-garden.md +19 -0
- package/skills/theme-factory/themes/desert-rose.md +19 -0
- package/skills/theme-factory/themes/forest-canopy.md +19 -0
- package/skills/theme-factory/themes/golden-hour.md +19 -0
- package/skills/theme-factory/themes/midnight-galaxy.md +19 -0
- package/skills/theme-factory/themes/modern-minimalist.md +19 -0
- package/skills/theme-factory/themes/ocean-depths.md +19 -0
- package/skills/theme-factory/themes/sunset-boulevard.md +19 -0
- package/skills/theme-factory/themes/tech-innovation.md +19 -0
- package/skills/video-downloader.md +99 -0
- package/skills/web-development.md +32 -0
- package/skills/webapp-testing/SKILL.md +96 -0
- package/skills/webapp-testing/examples/console_logging.py +35 -0
- package/skills/webapp-testing/examples/element_discovery.py +40 -0
- package/skills/webapp-testing/examples/static_html_automation.py +33 -0
- package/skills/webapp-testing/scripts/with_server.py +106 -0
- package/src/agents/SubAgentManager.js +57 -12
- package/src/api/openai-compat.js +212 -0
- package/src/channels/TelegramChannel.js +5 -2
- package/src/channels/index.js +7 -10
- package/src/cli.js +129 -50
- package/src/config/agentProfiles.js +1 -0
- package/src/config/default.js +10 -0
- package/src/config/models.js +317 -71
- package/src/config/permissions.js +12 -0
- package/src/core/AgentLoop.js +70 -50
- package/src/core/Compaction.js +84 -2
- package/src/core/MessageQueue.js +90 -0
- package/src/core/Task.js +13 -0
- package/src/core/TaskQueue.js +1 -1
- package/src/core/TaskRunner.js +80 -5
- package/src/index.js +328 -48
- package/src/mcp/MCPAgentRunner.js +48 -11
- package/src/mcp/MCPManager.js +40 -2
- package/src/models/ModelRouter.js +67 -1
- package/src/safety/DockerSandbox.js +212 -0
- package/src/safety/ExecApproval.js +118 -0
- package/src/scheduler/Heartbeat.js +56 -21
- package/src/services/cleanup.js +106 -0
- package/src/services/sessions.js +39 -1
- package/src/setup/wizard.js +75 -4
- package/src/skills/SkillLoader.js +104 -17
- package/src/storage/TaskStore.js +19 -1
- package/src/systemPrompt.js +171 -328
- package/src/tools/browserAutomation.js +615 -104
- package/src/tools/executeCommand.js +19 -1
- package/src/tools/index.js +6 -0
- package/src/tools/manageAgents.js +55 -4
- package/src/tools/replyWithFile.js +62 -0
- package/src/tools/screenCapture.js +12 -1
- package/src/tools/taskManager.js +164 -0
- package/src/tools/useMCP.js +3 -1
- package/src/utils/Embeddings.js +157 -10
- package/src/webhooks/WebhookHandler.js +107 -0
|
@@ -0,0 +1,433 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: file-organizer
|
|
3
|
+
description: 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.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# File Organizer
|
|
7
|
+
|
|
8
|
+
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.
|
|
9
|
+
|
|
10
|
+
## When to Use This Skill
|
|
11
|
+
|
|
12
|
+
- Your Downloads folder is a chaotic mess
|
|
13
|
+
- You can't find files because they're scattered everywhere
|
|
14
|
+
- You have duplicate files taking up space
|
|
15
|
+
- Your folder structure doesn't make sense anymore
|
|
16
|
+
- You want to establish better organization habits
|
|
17
|
+
- You're starting a new project and need a good structure
|
|
18
|
+
- You're cleaning up before archiving old projects
|
|
19
|
+
|
|
20
|
+
## What This Skill Does
|
|
21
|
+
|
|
22
|
+
1. **Analyzes Current Structure**: Reviews your folders and files to understand what you have
|
|
23
|
+
2. **Finds Duplicates**: Identifies duplicate files across your system
|
|
24
|
+
3. **Suggests Organization**: Proposes logical folder structures based on your content
|
|
25
|
+
4. **Automates Cleanup**: Moves, renames, and organizes files with your approval
|
|
26
|
+
5. **Maintains Context**: Makes smart decisions based on file types, dates, and content
|
|
27
|
+
6. **Reduces Clutter**: Identifies old files you probably don't need anymore
|
|
28
|
+
|
|
29
|
+
## How to Use
|
|
30
|
+
|
|
31
|
+
### From Your Home Directory
|
|
32
|
+
|
|
33
|
+
```
|
|
34
|
+
cd ~
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
Then run Claude Code and ask for help:
|
|
38
|
+
|
|
39
|
+
```
|
|
40
|
+
Help me organize my Downloads folder
|
|
41
|
+
```
|
|
42
|
+
|
|
43
|
+
```
|
|
44
|
+
Find duplicate files in my Documents folder
|
|
45
|
+
```
|
|
46
|
+
|
|
47
|
+
```
|
|
48
|
+
Review my project directories and suggest improvements
|
|
49
|
+
```
|
|
50
|
+
|
|
51
|
+
### Specific Organization Tasks
|
|
52
|
+
|
|
53
|
+
```
|
|
54
|
+
Organize these downloads into proper folders based on what they are
|
|
55
|
+
```
|
|
56
|
+
|
|
57
|
+
```
|
|
58
|
+
Find duplicate files and help me decide which to keep
|
|
59
|
+
```
|
|
60
|
+
|
|
61
|
+
```
|
|
62
|
+
Clean up old files I haven't touched in 6+ months
|
|
63
|
+
```
|
|
64
|
+
|
|
65
|
+
```
|
|
66
|
+
Create a better folder structure for my [work/projects/photos/etc]
|
|
67
|
+
```
|
|
68
|
+
|
|
69
|
+
## Instructions
|
|
70
|
+
|
|
71
|
+
When a user requests file organization help:
|
|
72
|
+
|
|
73
|
+
1. **Understand the Scope**
|
|
74
|
+
|
|
75
|
+
Ask clarifying questions:
|
|
76
|
+
- Which directory needs organization? (Downloads, Documents, entire home folder?)
|
|
77
|
+
- What's the main problem? (Can't find things, duplicates, too messy, no structure?)
|
|
78
|
+
- Any files or folders to avoid? (Current projects, sensitive data?)
|
|
79
|
+
- How aggressively to organize? (Conservative vs. comprehensive cleanup)
|
|
80
|
+
|
|
81
|
+
2. **Analyze Current State**
|
|
82
|
+
|
|
83
|
+
Review the target directory:
|
|
84
|
+
```bash
|
|
85
|
+
# Get overview of current structure
|
|
86
|
+
ls -la [target_directory]
|
|
87
|
+
|
|
88
|
+
# Check file types and sizes
|
|
89
|
+
find [target_directory] -type f -exec file {} \; | head -20
|
|
90
|
+
|
|
91
|
+
# Identify largest files
|
|
92
|
+
du -sh [target_directory]/* | sort -rh | head -20
|
|
93
|
+
|
|
94
|
+
# Count file types
|
|
95
|
+
find [target_directory] -type f | sed 's/.*\.//' | sort | uniq -c | sort -rn
|
|
96
|
+
```
|
|
97
|
+
|
|
98
|
+
Summarize findings:
|
|
99
|
+
- Total files and folders
|
|
100
|
+
- File type breakdown
|
|
101
|
+
- Size distribution
|
|
102
|
+
- Date ranges
|
|
103
|
+
- Obvious organization issues
|
|
104
|
+
|
|
105
|
+
3. **Identify Organization Patterns**
|
|
106
|
+
|
|
107
|
+
Based on the files, determine logical groupings:
|
|
108
|
+
|
|
109
|
+
**By Type**:
|
|
110
|
+
- Documents (PDFs, DOCX, TXT)
|
|
111
|
+
- Images (JPG, PNG, SVG)
|
|
112
|
+
- Videos (MP4, MOV)
|
|
113
|
+
- Archives (ZIP, TAR, DMG)
|
|
114
|
+
- Code/Projects (directories with code)
|
|
115
|
+
- Spreadsheets (XLSX, CSV)
|
|
116
|
+
- Presentations (PPTX, KEY)
|
|
117
|
+
|
|
118
|
+
**By Purpose**:
|
|
119
|
+
- Work vs. Personal
|
|
120
|
+
- Active vs. Archive
|
|
121
|
+
- Project-specific
|
|
122
|
+
- Reference materials
|
|
123
|
+
- Temporary/scratch files
|
|
124
|
+
|
|
125
|
+
**By Date**:
|
|
126
|
+
- Current year/month
|
|
127
|
+
- Previous years
|
|
128
|
+
- Very old (archive candidates)
|
|
129
|
+
|
|
130
|
+
4. **Find Duplicates**
|
|
131
|
+
|
|
132
|
+
When requested, search for duplicates:
|
|
133
|
+
```bash
|
|
134
|
+
# Find exact duplicates by hash
|
|
135
|
+
find [directory] -type f -exec md5 {} \; | sort | uniq -d
|
|
136
|
+
|
|
137
|
+
# Find files with same name
|
|
138
|
+
find [directory] -type f -printf '%f\n' | sort | uniq -d
|
|
139
|
+
|
|
140
|
+
# Find similar-sized files
|
|
141
|
+
find [directory] -type f -printf '%s %p\n' | sort -n
|
|
142
|
+
```
|
|
143
|
+
|
|
144
|
+
For each set of duplicates:
|
|
145
|
+
- Show all file paths
|
|
146
|
+
- Display sizes and modification dates
|
|
147
|
+
- Recommend which to keep (usually newest or best-named)
|
|
148
|
+
- **Important**: Always ask for confirmation before deleting
|
|
149
|
+
|
|
150
|
+
5. **Propose Organization Plan**
|
|
151
|
+
|
|
152
|
+
Present a clear plan before making changes:
|
|
153
|
+
|
|
154
|
+
```markdown
|
|
155
|
+
# Organization Plan for [Directory]
|
|
156
|
+
|
|
157
|
+
## Current State
|
|
158
|
+
- X files across Y folders
|
|
159
|
+
- [Size] total
|
|
160
|
+
- File types: [breakdown]
|
|
161
|
+
- Issues: [list problems]
|
|
162
|
+
|
|
163
|
+
## Proposed Structure
|
|
164
|
+
|
|
165
|
+
```
|
|
166
|
+
[Directory]/
|
|
167
|
+
├── Work/
|
|
168
|
+
│ ├── Projects/
|
|
169
|
+
│ ├── Documents/
|
|
170
|
+
│ └── Archive/
|
|
171
|
+
├── Personal/
|
|
172
|
+
│ ├── Photos/
|
|
173
|
+
│ ├── Documents/
|
|
174
|
+
│ └── Media/
|
|
175
|
+
└── Downloads/
|
|
176
|
+
├── To-Sort/
|
|
177
|
+
└── Archive/
|
|
178
|
+
```
|
|
179
|
+
|
|
180
|
+
## Changes I'll Make
|
|
181
|
+
|
|
182
|
+
1. **Create new folders**: [list]
|
|
183
|
+
2. **Move files**:
|
|
184
|
+
- X PDFs → Work/Documents/
|
|
185
|
+
- Y images → Personal/Photos/
|
|
186
|
+
- Z old files → Archive/
|
|
187
|
+
3. **Rename files**: [any renaming patterns]
|
|
188
|
+
4. **Delete**: [duplicates or trash files]
|
|
189
|
+
|
|
190
|
+
## Files Needing Your Decision
|
|
191
|
+
|
|
192
|
+
- [List any files you're unsure about]
|
|
193
|
+
|
|
194
|
+
Ready to proceed? (yes/no/modify)
|
|
195
|
+
```
|
|
196
|
+
|
|
197
|
+
6. **Execute Organization**
|
|
198
|
+
|
|
199
|
+
After approval, organize systematically:
|
|
200
|
+
|
|
201
|
+
```bash
|
|
202
|
+
# Create folder structure
|
|
203
|
+
mkdir -p "path/to/new/folders"
|
|
204
|
+
|
|
205
|
+
# Move files with clear logging
|
|
206
|
+
mv "old/path/file.pdf" "new/path/file.pdf"
|
|
207
|
+
|
|
208
|
+
# Rename files with consistent patterns
|
|
209
|
+
# Example: "YYYY-MM-DD - Description.ext"
|
|
210
|
+
```
|
|
211
|
+
|
|
212
|
+
**Important Rules**:
|
|
213
|
+
- Always confirm before deleting anything
|
|
214
|
+
- Log all moves for potential undo
|
|
215
|
+
- Preserve original modification dates
|
|
216
|
+
- Handle filename conflicts gracefully
|
|
217
|
+
- Stop and ask if you encounter unexpected situations
|
|
218
|
+
|
|
219
|
+
7. **Provide Summary and Maintenance Tips**
|
|
220
|
+
|
|
221
|
+
After organizing:
|
|
222
|
+
|
|
223
|
+
```markdown
|
|
224
|
+
# Organization Complete! ✨
|
|
225
|
+
|
|
226
|
+
## What Changed
|
|
227
|
+
|
|
228
|
+
- Created [X] new folders
|
|
229
|
+
- Organized [Y] files
|
|
230
|
+
- Freed [Z] GB by removing duplicates
|
|
231
|
+
- Archived [W] old files
|
|
232
|
+
|
|
233
|
+
## New Structure
|
|
234
|
+
|
|
235
|
+
[Show the new folder tree]
|
|
236
|
+
|
|
237
|
+
## Maintenance Tips
|
|
238
|
+
|
|
239
|
+
To keep this organized:
|
|
240
|
+
|
|
241
|
+
1. **Weekly**: Sort new downloads
|
|
242
|
+
2. **Monthly**: Review and archive completed projects
|
|
243
|
+
3. **Quarterly**: Check for new duplicates
|
|
244
|
+
4. **Yearly**: Archive old files
|
|
245
|
+
|
|
246
|
+
## Quick Commands for You
|
|
247
|
+
|
|
248
|
+
```bash
|
|
249
|
+
# Find files modified this week
|
|
250
|
+
find . -type f -mtime -7
|
|
251
|
+
|
|
252
|
+
# Sort downloads by type
|
|
253
|
+
[custom command for their setup]
|
|
254
|
+
|
|
255
|
+
# Find duplicates
|
|
256
|
+
[custom command]
|
|
257
|
+
```
|
|
258
|
+
|
|
259
|
+
Want to organize another folder?
|
|
260
|
+
```
|
|
261
|
+
|
|
262
|
+
## Examples
|
|
263
|
+
|
|
264
|
+
### Example 1: Organizing Downloads (From Justin Dielmann)
|
|
265
|
+
|
|
266
|
+
**User**: "My Downloads folder is a mess with 500+ files. Help me organize it."
|
|
267
|
+
|
|
268
|
+
**Process**:
|
|
269
|
+
1. Analyzes Downloads folder
|
|
270
|
+
2. Finds patterns: work docs, personal photos, installers, random PDFs
|
|
271
|
+
3. Proposes structure:
|
|
272
|
+
- Downloads/
|
|
273
|
+
- Work/
|
|
274
|
+
- Personal/
|
|
275
|
+
- Installers/ (DMG, PKG files)
|
|
276
|
+
- Archive/
|
|
277
|
+
- ToSort/ (things needing decisions)
|
|
278
|
+
4. Asks for confirmation
|
|
279
|
+
5. Moves files intelligently based on content and names
|
|
280
|
+
6. Results: 500 files → 5 organized folders
|
|
281
|
+
|
|
282
|
+
### Example 2: Finding and Removing Duplicates
|
|
283
|
+
|
|
284
|
+
**User**: "Find duplicate files in my Documents and help me decide which to keep."
|
|
285
|
+
|
|
286
|
+
**Output**:
|
|
287
|
+
```markdown
|
|
288
|
+
# Found 23 Sets of Duplicates (156 MB total)
|
|
289
|
+
|
|
290
|
+
## Duplicate Set 1: "proposal.pdf"
|
|
291
|
+
- `/Documents/proposal.pdf` (2.3 MB, modified: 2024-03-15)
|
|
292
|
+
- `/Documents/old/proposal.pdf` (2.3 MB, modified: 2024-03-15)
|
|
293
|
+
- `/Desktop/proposal.pdf` (2.3 MB, modified: 2024-03-10)
|
|
294
|
+
|
|
295
|
+
**Recommendation**: Keep `/Documents/proposal.pdf` (most recent in correct location)
|
|
296
|
+
Delete the other 2 copies?
|
|
297
|
+
|
|
298
|
+
[Continue for all duplicates...]
|
|
299
|
+
```
|
|
300
|
+
|
|
301
|
+
### Example 3: Restructuring Projects Folder
|
|
302
|
+
|
|
303
|
+
**User**: "Review my ~/Projects directory and suggest improvements."
|
|
304
|
+
|
|
305
|
+
**Output**:
|
|
306
|
+
```markdown
|
|
307
|
+
# Analysis of ~/Projects
|
|
308
|
+
|
|
309
|
+
## Current Structure Issues
|
|
310
|
+
- Mix of active and archived projects (3+ years old)
|
|
311
|
+
- No consistent naming convention
|
|
312
|
+
- Some projects at root, others in random subfolders
|
|
313
|
+
- Duplicate folders (project-name, project-name-old, project-name-v2)
|
|
314
|
+
|
|
315
|
+
## Proposed Structure
|
|
316
|
+
|
|
317
|
+
```
|
|
318
|
+
Projects/
|
|
319
|
+
├── Active/
|
|
320
|
+
│ ├── client-work/
|
|
321
|
+
│ ├── side-projects/
|
|
322
|
+
│ └── learning/
|
|
323
|
+
├── Archive/
|
|
324
|
+
│ ├── 2022/
|
|
325
|
+
│ ├── 2023/
|
|
326
|
+
│ └── 2024/
|
|
327
|
+
└── Templates/
|
|
328
|
+
```
|
|
329
|
+
|
|
330
|
+
## Specific Changes
|
|
331
|
+
1. Move 12 projects not touched since 2022 → Archive/
|
|
332
|
+
2. Consolidate 4 duplicate project folders
|
|
333
|
+
3. Rename projects to consistent format: "client-name-project-name"
|
|
334
|
+
4. Create Archive for old work
|
|
335
|
+
|
|
336
|
+
Want me to implement this?
|
|
337
|
+
```
|
|
338
|
+
|
|
339
|
+
### Example 4: Organizing Photos by Date
|
|
340
|
+
|
|
341
|
+
**User**: "Organize my photo folders by year and month."
|
|
342
|
+
|
|
343
|
+
**Output**: Creates structure like:
|
|
344
|
+
```
|
|
345
|
+
Photos/
|
|
346
|
+
├── 2023/
|
|
347
|
+
│ ├── 01-January/
|
|
348
|
+
│ ├── 02-February/
|
|
349
|
+
│ └── ...
|
|
350
|
+
├── 2024/
|
|
351
|
+
│ ├── 01-January/
|
|
352
|
+
│ └── ...
|
|
353
|
+
└── Unsorted/
|
|
354
|
+
```
|
|
355
|
+
|
|
356
|
+
Then moves photos based on EXIF data or file modification dates.
|
|
357
|
+
|
|
358
|
+
## Common Organization Tasks
|
|
359
|
+
|
|
360
|
+
### Downloads Cleanup
|
|
361
|
+
```
|
|
362
|
+
Organize my Downloads folder - move documents to Documents,
|
|
363
|
+
images to Pictures, keep installers separate, and archive files
|
|
364
|
+
older than 3 months.
|
|
365
|
+
```
|
|
366
|
+
|
|
367
|
+
### Project Organization
|
|
368
|
+
```
|
|
369
|
+
Review my Projects folder structure and help me separate active
|
|
370
|
+
projects from old ones I should archive.
|
|
371
|
+
```
|
|
372
|
+
|
|
373
|
+
### Duplicate Removal
|
|
374
|
+
```
|
|
375
|
+
Find all duplicate files in my Documents folder and help me
|
|
376
|
+
decide which ones to keep.
|
|
377
|
+
```
|
|
378
|
+
|
|
379
|
+
### Desktop Cleanup
|
|
380
|
+
```
|
|
381
|
+
My Desktop is covered in files. Help me organize everything into
|
|
382
|
+
my Documents folder properly.
|
|
383
|
+
```
|
|
384
|
+
|
|
385
|
+
### Photo Organization
|
|
386
|
+
```
|
|
387
|
+
Organize all photos in this folder by date (year/month) based
|
|
388
|
+
on when they were taken.
|
|
389
|
+
```
|
|
390
|
+
|
|
391
|
+
### Work/Personal Separation
|
|
392
|
+
```
|
|
393
|
+
Help me separate my work files from personal files across my
|
|
394
|
+
Documents folder.
|
|
395
|
+
```
|
|
396
|
+
|
|
397
|
+
## Pro Tips
|
|
398
|
+
|
|
399
|
+
1. **Start Small**: Begin with one messy folder (like Downloads) to build trust
|
|
400
|
+
2. **Regular Maintenance**: Run weekly cleanup on Downloads
|
|
401
|
+
3. **Consistent Naming**: Use "YYYY-MM-DD - Description" format for important files
|
|
402
|
+
4. **Archive Aggressively**: Move old projects to Archive instead of deleting
|
|
403
|
+
5. **Keep Active Separate**: Maintain clear boundaries between active and archived work
|
|
404
|
+
6. **Trust the Process**: Let Claude handle the cognitive load of where things go
|
|
405
|
+
|
|
406
|
+
## Best Practices
|
|
407
|
+
|
|
408
|
+
### Folder Naming
|
|
409
|
+
- Use clear, descriptive names
|
|
410
|
+
- Avoid spaces (use hyphens or underscores)
|
|
411
|
+
- Be specific: "client-proposals" not "docs"
|
|
412
|
+
- Use prefixes for ordering: "01-current", "02-archive"
|
|
413
|
+
|
|
414
|
+
### File Naming
|
|
415
|
+
- Include dates: "2024-10-17-meeting-notes.md"
|
|
416
|
+
- Be descriptive: "q3-financial-report.xlsx"
|
|
417
|
+
- Avoid version numbers in names (use version control instead)
|
|
418
|
+
- Remove download artifacts: "document-final-v2 (1).pdf" → "document.pdf"
|
|
419
|
+
|
|
420
|
+
### When to Archive
|
|
421
|
+
- Projects not touched in 6+ months
|
|
422
|
+
- Completed work that might be referenced later
|
|
423
|
+
- Old versions after migration to new systems
|
|
424
|
+
- Files you're hesitant to delete (archive first)
|
|
425
|
+
|
|
426
|
+
## Related Use Cases
|
|
427
|
+
|
|
428
|
+
- Setting up organization for a new computer
|
|
429
|
+
- Preparing files for backup/archiving
|
|
430
|
+
- Cleaning up before storage cleanup
|
|
431
|
+
- Organizing shared team folders
|
|
432
|
+
- Structuring new project directories
|
|
433
|
+
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: frontend-design
|
|
3
|
+
description: Create distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, artifacts, posters, or applications (examples include websites, landing pages, dashboards, React components, HTML/CSS layouts, or when styling/beautifying any web UI). Generates creative, polished code and UI design that avoids generic AI aesthetics.
|
|
4
|
+
license: Complete terms in LICENSE.txt
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
This skill guides creation of distinctive, production-grade frontend interfaces that avoid generic "AI slop" aesthetics. Implement real working code with exceptional attention to aesthetic details and creative choices.
|
|
8
|
+
|
|
9
|
+
The user provides frontend requirements: a component, page, application, or interface to build. They may include context about the purpose, audience, or technical constraints.
|
|
10
|
+
|
|
11
|
+
## Design Thinking
|
|
12
|
+
|
|
13
|
+
Before coding, understand the context and commit to a BOLD aesthetic direction:
|
|
14
|
+
- **Purpose**: What problem does this interface solve? Who uses it?
|
|
15
|
+
- **Tone**: Pick an extreme: brutally minimal, maximalist chaos, retro-futuristic, organic/natural, luxury/refined, playful/toy-like, editorial/magazine, brutalist/raw, art deco/geometric, soft/pastel, industrial/utilitarian, etc. There are so many flavors to choose from. Use these for inspiration but design one that is true to the aesthetic direction.
|
|
16
|
+
- **Constraints**: Technical requirements (framework, performance, accessibility).
|
|
17
|
+
- **Differentiation**: What makes this UNFORGETTABLE? What's the one thing someone will remember?
|
|
18
|
+
|
|
19
|
+
**CRITICAL**: Choose a clear conceptual direction and execute it with precision. Bold maximalism and refined minimalism both work - the key is intentionality, not intensity.
|
|
20
|
+
|
|
21
|
+
Then implement working code (HTML/CSS/JS, React, Vue, etc.) that is:
|
|
22
|
+
- Production-grade and functional
|
|
23
|
+
- Visually striking and memorable
|
|
24
|
+
- Cohesive with a clear aesthetic point-of-view
|
|
25
|
+
- Meticulously refined in every detail
|
|
26
|
+
|
|
27
|
+
## Frontend Aesthetics Guidelines
|
|
28
|
+
|
|
29
|
+
Focus on:
|
|
30
|
+
- **Typography**: Choose fonts that are beautiful, unique, and interesting. Avoid generic fonts like Arial and Inter; opt instead for distinctive choices that elevate the frontend's aesthetics; unexpected, characterful font choices. Pair a distinctive display font with a refined body font.
|
|
31
|
+
- **Color & Theme**: Commit to a cohesive aesthetic. Use CSS variables for consistency. Dominant colors with sharp accents outperform timid, evenly-distributed palettes.
|
|
32
|
+
- **Motion**: Use animations for effects and micro-interactions. Prioritize CSS-only solutions for HTML. Use Motion library for React when available. Focus on high-impact moments: one well-orchestrated page load with staggered reveals (animation-delay) creates more delight than scattered micro-interactions. Use scroll-triggering and hover states that surprise.
|
|
33
|
+
- **Spatial Composition**: Unexpected layouts. Asymmetry. Overlap. Diagonal flow. Grid-breaking elements. Generous negative space OR controlled density.
|
|
34
|
+
- **Backgrounds & Visual Details**: Create atmosphere and depth rather than defaulting to solid colors. Add contextual effects and textures that match the overall aesthetic. Apply creative forms like gradient meshes, noise textures, geometric patterns, layered transparencies, dramatic shadows, decorative borders, custom cursors, and grain overlays.
|
|
35
|
+
|
|
36
|
+
NEVER use generic AI-generated aesthetics like overused font families (Inter, Roboto, Arial, system fonts), cliched color schemes (particularly purple gradients on white backgrounds), predictable layouts and component patterns, and cookie-cutter design that lacks context-specific character.
|
|
37
|
+
|
|
38
|
+
Interpret creatively and make unexpected choices that feel genuinely designed for the context. No design should be the same. Vary between light and dark themes, different fonts, different aesthetics. NEVER converge on common choices (Space Grotesk, for example) across generations.
|
|
39
|
+
|
|
40
|
+
**IMPORTANT**: Match implementation complexity to the aesthetic vision. Maximalist designs need elaborate code with extensive animations and effects. Minimalist or refined designs need restraint, precision, and careful attention to spacing, typography, and subtle details. Elegance comes from executing the vision well.
|
|
41
|
+
|
|
42
|
+
Remember: Claude is capable of extraordinary creative work. Don't hold back, show what can truly be created when thinking outside the box and committing fully to a distinctive vision.
|
|
@@ -0,0 +1,99 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: image-enhancer
|
|
3
|
+
description: Improves the quality of images, especially screenshots, by enhancing resolution, sharpness, and clarity. Perfect for preparing images for presentations, documentation, or social media posts.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# Image Enhancer
|
|
7
|
+
|
|
8
|
+
This skill takes your images and screenshots and makes them look better—sharper, clearer, and more professional.
|
|
9
|
+
|
|
10
|
+
## When to Use This Skill
|
|
11
|
+
|
|
12
|
+
- Improving screenshot quality for blog posts or documentation
|
|
13
|
+
- Enhancing images before sharing on social media
|
|
14
|
+
- Preparing images for presentations or reports
|
|
15
|
+
- Upscaling low-resolution images
|
|
16
|
+
- Sharpening blurry photos
|
|
17
|
+
- Cleaning up compressed images
|
|
18
|
+
|
|
19
|
+
## What This Skill Does
|
|
20
|
+
|
|
21
|
+
1. **Analyzes Image Quality**: Checks resolution, sharpness, and compression artifacts
|
|
22
|
+
2. **Enhances Resolution**: Upscales images intelligently
|
|
23
|
+
3. **Improves Sharpness**: Enhances edges and details
|
|
24
|
+
4. **Reduces Artifacts**: Cleans up compression artifacts and noise
|
|
25
|
+
5. **Optimizes for Use Case**: Adjusts based on intended use (web, print, social media)
|
|
26
|
+
|
|
27
|
+
## How to Use
|
|
28
|
+
|
|
29
|
+
### Basic Enhancement
|
|
30
|
+
|
|
31
|
+
```
|
|
32
|
+
Improve the image quality of screenshot.png
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
```
|
|
36
|
+
Enhance all images in this folder
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
### Specific Improvements
|
|
40
|
+
|
|
41
|
+
```
|
|
42
|
+
Upscale this image to 4K resolution
|
|
43
|
+
```
|
|
44
|
+
|
|
45
|
+
```
|
|
46
|
+
Sharpen this blurry screenshot
|
|
47
|
+
```
|
|
48
|
+
|
|
49
|
+
```
|
|
50
|
+
Reduce compression artifacts in this image
|
|
51
|
+
```
|
|
52
|
+
|
|
53
|
+
### Batch Processing
|
|
54
|
+
|
|
55
|
+
```
|
|
56
|
+
Improve the quality of all PNG files in this directory
|
|
57
|
+
```
|
|
58
|
+
|
|
59
|
+
## Example
|
|
60
|
+
|
|
61
|
+
**User**: "Improve the image quality of screenshot-2024.png"
|
|
62
|
+
|
|
63
|
+
**Output**:
|
|
64
|
+
```
|
|
65
|
+
Analyzing screenshot-2024.png...
|
|
66
|
+
|
|
67
|
+
Current specs:
|
|
68
|
+
- Resolution: 1920x1080
|
|
69
|
+
- Format: PNG
|
|
70
|
+
- Quality: Good, but slight blur
|
|
71
|
+
|
|
72
|
+
Enhancements applied:
|
|
73
|
+
✓ Upscaled to 2560x1440 (retina)
|
|
74
|
+
✓ Sharpened edges
|
|
75
|
+
✓ Enhanced text clarity
|
|
76
|
+
✓ Optimized file size
|
|
77
|
+
|
|
78
|
+
Saved as: screenshot-2024-enhanced.png
|
|
79
|
+
Original preserved as: screenshot-2024-original.png
|
|
80
|
+
```
|
|
81
|
+
|
|
82
|
+
**Inspired by:** Lenny Rachitsky's workflow from his newsletter - used for screenshots in his articles
|
|
83
|
+
|
|
84
|
+
## Tips
|
|
85
|
+
|
|
86
|
+
- Always keeps original files as backup
|
|
87
|
+
- Works best with screenshots and digital images
|
|
88
|
+
- Can batch process entire folders
|
|
89
|
+
- Specify output format if needed (PNG for quality, JPG for smaller size)
|
|
90
|
+
- For social media, mention the platform for optimal sizing
|
|
91
|
+
|
|
92
|
+
## Common Use Cases
|
|
93
|
+
|
|
94
|
+
- **Blog Posts**: Enhance screenshots before publishing
|
|
95
|
+
- **Documentation**: Make UI screenshots crystal clear
|
|
96
|
+
- **Social Media**: Optimize images for Twitter, LinkedIn, Instagram
|
|
97
|
+
- **Presentations**: Upscale images for large screens
|
|
98
|
+
- **Print Materials**: Increase resolution for physical media
|
|
99
|
+
|