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,446 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: invoice-organizer
|
|
3
|
+
description: Automatically organizes invoices and receipts for tax preparation by reading messy files, extracting key information, renaming them consistently, and sorting them into logical folders. Turns hours of manual bookkeeping into minutes of automated organization.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# Invoice Organizer
|
|
7
|
+
|
|
8
|
+
This skill transforms chaotic folders of invoices, receipts, and financial documents into a clean, tax-ready filing system without manual effort.
|
|
9
|
+
|
|
10
|
+
## When to Use This Skill
|
|
11
|
+
|
|
12
|
+
- Preparing for tax season and need organized records
|
|
13
|
+
- Managing business expenses across multiple vendors
|
|
14
|
+
- Organizing receipts from a messy folder or email downloads
|
|
15
|
+
- Setting up automated invoice filing for ongoing bookkeeping
|
|
16
|
+
- Archiving financial records by year or category
|
|
17
|
+
- Reconciling expenses for reimbursement
|
|
18
|
+
- Preparing documentation for accountants
|
|
19
|
+
|
|
20
|
+
## What This Skill Does
|
|
21
|
+
|
|
22
|
+
1. **Reads Invoice Content**: Extracts information from PDFs, images, and documents:
|
|
23
|
+
- Vendor/company name
|
|
24
|
+
- Invoice number
|
|
25
|
+
- Date
|
|
26
|
+
- Amount
|
|
27
|
+
- Product or service description
|
|
28
|
+
- Payment method
|
|
29
|
+
|
|
30
|
+
2. **Renames Files Consistently**: Creates standardized filenames:
|
|
31
|
+
- Format: `YYYY-MM-DD Vendor - Invoice - ProductOrService.pdf`
|
|
32
|
+
- Examples: `2024-03-15 Adobe - Invoice - Creative Cloud.pdf`
|
|
33
|
+
|
|
34
|
+
3. **Organizes by Category**: Sorts into logical folders:
|
|
35
|
+
- By vendor
|
|
36
|
+
- By expense category (software, office, travel, etc.)
|
|
37
|
+
- By time period (year, quarter, month)
|
|
38
|
+
- By tax category (deductible, personal, etc.)
|
|
39
|
+
|
|
40
|
+
4. **Handles Multiple Formats**: Works with:
|
|
41
|
+
- PDF invoices
|
|
42
|
+
- Scanned receipts (JPG, PNG)
|
|
43
|
+
- Email attachments
|
|
44
|
+
- Screenshots
|
|
45
|
+
- Bank statements
|
|
46
|
+
|
|
47
|
+
5. **Maintains Originals**: Preserves original files while organizing copies
|
|
48
|
+
|
|
49
|
+
## How to Use
|
|
50
|
+
|
|
51
|
+
### Basic Usage
|
|
52
|
+
|
|
53
|
+
Navigate to your messy invoice folder:
|
|
54
|
+
```
|
|
55
|
+
cd ~/Desktop/receipts-to-sort
|
|
56
|
+
```
|
|
57
|
+
|
|
58
|
+
Then ask Claude Code:
|
|
59
|
+
```
|
|
60
|
+
Organize these invoices for taxes
|
|
61
|
+
```
|
|
62
|
+
|
|
63
|
+
Or more specifically:
|
|
64
|
+
```
|
|
65
|
+
Read all invoices in this folder, rename them to
|
|
66
|
+
"YYYY-MM-DD Vendor - Invoice - Product.pdf" format,
|
|
67
|
+
and organize them by vendor
|
|
68
|
+
```
|
|
69
|
+
|
|
70
|
+
### Advanced Organization
|
|
71
|
+
|
|
72
|
+
```
|
|
73
|
+
Organize these invoices:
|
|
74
|
+
1. Extract date, vendor, and description from each file
|
|
75
|
+
2. Rename to standard format
|
|
76
|
+
3. Sort into folders by expense category (Software, Office, Travel, etc.)
|
|
77
|
+
4. Create a CSV spreadsheet with all invoice details for my accountant
|
|
78
|
+
```
|
|
79
|
+
|
|
80
|
+
## Instructions
|
|
81
|
+
|
|
82
|
+
When a user requests invoice organization:
|
|
83
|
+
|
|
84
|
+
1. **Scan the Folder**
|
|
85
|
+
|
|
86
|
+
Identify all invoice files:
|
|
87
|
+
```bash
|
|
88
|
+
# Find all invoice-related files
|
|
89
|
+
find . -type f \( -name "*.pdf" -o -name "*.jpg" -o -name "*.png" \) -print
|
|
90
|
+
```
|
|
91
|
+
|
|
92
|
+
Report findings:
|
|
93
|
+
- Total number of files
|
|
94
|
+
- File types
|
|
95
|
+
- Date range (if discernible from names)
|
|
96
|
+
- Current organization (or lack thereof)
|
|
97
|
+
|
|
98
|
+
2. **Extract Information from Each File**
|
|
99
|
+
|
|
100
|
+
For each invoice, extract:
|
|
101
|
+
|
|
102
|
+
**From PDF invoices**:
|
|
103
|
+
- Use text extraction to read invoice content
|
|
104
|
+
- Look for common patterns:
|
|
105
|
+
- "Invoice Date:", "Date:", "Issued:"
|
|
106
|
+
- "Invoice #:", "Invoice Number:"
|
|
107
|
+
- Company name (usually at top)
|
|
108
|
+
- "Amount Due:", "Total:", "Amount:"
|
|
109
|
+
- "Description:", "Service:", "Product:"
|
|
110
|
+
|
|
111
|
+
**From image receipts**:
|
|
112
|
+
- Read visible text from images
|
|
113
|
+
- Identify vendor name (often at top)
|
|
114
|
+
- Look for date (common formats)
|
|
115
|
+
- Find total amount
|
|
116
|
+
|
|
117
|
+
**Fallback for unclear files**:
|
|
118
|
+
- Use filename clues
|
|
119
|
+
- Check file creation/modification date
|
|
120
|
+
- Flag for manual review if critical info missing
|
|
121
|
+
|
|
122
|
+
3. **Determine Organization Strategy**
|
|
123
|
+
|
|
124
|
+
Ask user preference if not specified:
|
|
125
|
+
|
|
126
|
+
```markdown
|
|
127
|
+
I found [X] invoices from [date range].
|
|
128
|
+
|
|
129
|
+
How would you like them organized?
|
|
130
|
+
|
|
131
|
+
1. **By Vendor** (Adobe/, Amazon/, Stripe/, etc.)
|
|
132
|
+
2. **By Category** (Software/, Office Supplies/, Travel/, etc.)
|
|
133
|
+
3. **By Date** (2024/Q1/, 2024/Q2/, etc.)
|
|
134
|
+
4. **By Tax Category** (Deductible/, Personal/, etc.)
|
|
135
|
+
5. **Custom** (describe your structure)
|
|
136
|
+
|
|
137
|
+
Or I can use a default structure: Year/Category/Vendor
|
|
138
|
+
```
|
|
139
|
+
|
|
140
|
+
4. **Create Standardized Filename**
|
|
141
|
+
|
|
142
|
+
For each invoice, create a filename following this pattern:
|
|
143
|
+
|
|
144
|
+
```
|
|
145
|
+
YYYY-MM-DD Vendor - Invoice - Description.ext
|
|
146
|
+
```
|
|
147
|
+
|
|
148
|
+
Examples:
|
|
149
|
+
- `2024-03-15 Adobe - Invoice - Creative Cloud.pdf`
|
|
150
|
+
- `2024-01-10 Amazon - Receipt - Office Supplies.pdf`
|
|
151
|
+
- `2023-12-01 Stripe - Invoice - Monthly Payment Processing.pdf`
|
|
152
|
+
|
|
153
|
+
**Filename Best Practices**:
|
|
154
|
+
- Remove special characters except hyphens
|
|
155
|
+
- Capitalize vendor names properly
|
|
156
|
+
- Keep descriptions concise but meaningful
|
|
157
|
+
- Use consistent date format (YYYY-MM-DD) for sorting
|
|
158
|
+
- Preserve original file extension
|
|
159
|
+
|
|
160
|
+
5. **Execute Organization**
|
|
161
|
+
|
|
162
|
+
Before moving files, show the plan:
|
|
163
|
+
|
|
164
|
+
```markdown
|
|
165
|
+
# Organization Plan
|
|
166
|
+
|
|
167
|
+
## Proposed Structure
|
|
168
|
+
```
|
|
169
|
+
Invoices/
|
|
170
|
+
├── 2023/
|
|
171
|
+
│ ├── Software/
|
|
172
|
+
│ │ ├── Adobe/
|
|
173
|
+
│ │ └── Microsoft/
|
|
174
|
+
│ ├── Services/
|
|
175
|
+
│ └── Office/
|
|
176
|
+
└── 2024/
|
|
177
|
+
├── Software/
|
|
178
|
+
├── Services/
|
|
179
|
+
└── Office/
|
|
180
|
+
```
|
|
181
|
+
|
|
182
|
+
## Sample Changes
|
|
183
|
+
|
|
184
|
+
Before: `invoice_adobe_march.pdf`
|
|
185
|
+
After: `2024-03-15 Adobe - Invoice - Creative Cloud.pdf`
|
|
186
|
+
Location: `Invoices/2024/Software/Adobe/`
|
|
187
|
+
|
|
188
|
+
Before: `IMG_2847.jpg`
|
|
189
|
+
After: `2024-02-10 Staples - Receipt - Office Supplies.jpg`
|
|
190
|
+
Location: `Invoices/2024/Office/Staples/`
|
|
191
|
+
|
|
192
|
+
Process [X] files? (yes/no)
|
|
193
|
+
```
|
|
194
|
+
|
|
195
|
+
After approval:
|
|
196
|
+
```bash
|
|
197
|
+
# Create folder structure
|
|
198
|
+
mkdir -p "Invoices/2024/Software/Adobe"
|
|
199
|
+
|
|
200
|
+
# Copy (don't move) to preserve originals
|
|
201
|
+
cp "original.pdf" "Invoices/2024/Software/Adobe/2024-03-15 Adobe - Invoice - Creative Cloud.pdf"
|
|
202
|
+
|
|
203
|
+
# Or move if user prefers
|
|
204
|
+
mv "original.pdf" "new/path/standardized-name.pdf"
|
|
205
|
+
```
|
|
206
|
+
|
|
207
|
+
6. **Generate Summary Report**
|
|
208
|
+
|
|
209
|
+
Create a CSV file with all invoice details:
|
|
210
|
+
|
|
211
|
+
```csv
|
|
212
|
+
Date,Vendor,Invoice Number,Description,Amount,Category,File Path
|
|
213
|
+
2024-03-15,Adobe,INV-12345,Creative Cloud,52.99,Software,Invoices/2024/Software/Adobe/2024-03-15 Adobe - Invoice - Creative Cloud.pdf
|
|
214
|
+
2024-03-10,Amazon,123-4567890-1234567,Office Supplies,127.45,Office,Invoices/2024/Office/Amazon/2024-03-10 Amazon - Receipt - Office Supplies.pdf
|
|
215
|
+
...
|
|
216
|
+
```
|
|
217
|
+
|
|
218
|
+
This CSV is useful for:
|
|
219
|
+
- Importing into accounting software
|
|
220
|
+
- Sharing with accountants
|
|
221
|
+
- Expense tracking and reporting
|
|
222
|
+
- Tax preparation
|
|
223
|
+
|
|
224
|
+
7. **Provide Completion Summary**
|
|
225
|
+
|
|
226
|
+
```markdown
|
|
227
|
+
# Organization Complete! 📊
|
|
228
|
+
|
|
229
|
+
## Summary
|
|
230
|
+
- **Processed**: [X] invoices
|
|
231
|
+
- **Date range**: [earliest] to [latest]
|
|
232
|
+
- **Total amount**: $[sum] (if amounts extracted)
|
|
233
|
+
- **Vendors**: [Y] unique vendors
|
|
234
|
+
|
|
235
|
+
## New Structure
|
|
236
|
+
```
|
|
237
|
+
Invoices/
|
|
238
|
+
├── 2024/ (45 files)
|
|
239
|
+
│ ├── Software/ (23 files)
|
|
240
|
+
│ ├── Services/ (12 files)
|
|
241
|
+
│ └── Office/ (10 files)
|
|
242
|
+
└── 2023/ (12 files)
|
|
243
|
+
```
|
|
244
|
+
|
|
245
|
+
## Files Created
|
|
246
|
+
- `/Invoices/` - Organized invoices
|
|
247
|
+
- `/Invoices/invoice-summary.csv` - Spreadsheet for accounting
|
|
248
|
+
- `/Invoices/originals/` - Original files (if copied)
|
|
249
|
+
|
|
250
|
+
## Files Needing Review
|
|
251
|
+
[List any files where information couldn't be extracted completely]
|
|
252
|
+
|
|
253
|
+
## Next Steps
|
|
254
|
+
1. Review the `invoice-summary.csv` file
|
|
255
|
+
2. Check files in "Needs Review" folder
|
|
256
|
+
3. Import CSV into your accounting software
|
|
257
|
+
4. Set up auto-organization for future invoices
|
|
258
|
+
|
|
259
|
+
Ready for tax season! 🎉
|
|
260
|
+
```
|
|
261
|
+
|
|
262
|
+
## Examples
|
|
263
|
+
|
|
264
|
+
### Example 1: Tax Preparation (From Martin Merschroth)
|
|
265
|
+
|
|
266
|
+
**User**: "I have a messy folder of invoices for taxes. Sort them and rename properly."
|
|
267
|
+
|
|
268
|
+
**Process**:
|
|
269
|
+
1. Scans folder: finds 147 PDFs and images
|
|
270
|
+
2. Reads each invoice to extract:
|
|
271
|
+
- Date
|
|
272
|
+
- Vendor name
|
|
273
|
+
- Invoice number
|
|
274
|
+
- Product/service description
|
|
275
|
+
3. Renames all files: `YYYY-MM-DD Vendor - Invoice - Product.pdf`
|
|
276
|
+
4. Organizes into: `2024/Software/`, `2024/Travel/`, etc.
|
|
277
|
+
5. Creates `invoice-summary.csv` for accountant
|
|
278
|
+
6. Result: Tax-ready organized invoices in minutes
|
|
279
|
+
|
|
280
|
+
### Example 2: Monthly Expense Reconciliation
|
|
281
|
+
|
|
282
|
+
**User**: "Organize my business receipts from last month by category."
|
|
283
|
+
|
|
284
|
+
**Output**:
|
|
285
|
+
```markdown
|
|
286
|
+
# March 2024 Receipts Organized
|
|
287
|
+
|
|
288
|
+
## By Category
|
|
289
|
+
- Software & Tools: $847.32 (12 invoices)
|
|
290
|
+
- Office Supplies: $234.18 (8 receipts)
|
|
291
|
+
- Travel & Meals: $1,456.90 (15 receipts)
|
|
292
|
+
- Professional Services: $2,500.00 (3 invoices)
|
|
293
|
+
|
|
294
|
+
Total: $5,038.40
|
|
295
|
+
|
|
296
|
+
All receipts renamed and filed in:
|
|
297
|
+
`Business-Receipts/2024/03-March/[Category]/`
|
|
298
|
+
|
|
299
|
+
CSV export: `march-2024-expenses.csv`
|
|
300
|
+
```
|
|
301
|
+
|
|
302
|
+
### Example 3: Multi-Year Archive
|
|
303
|
+
|
|
304
|
+
**User**: "I have 3 years of random invoices. Organize them by year, then by vendor."
|
|
305
|
+
|
|
306
|
+
**Output**: Creates structure:
|
|
307
|
+
```
|
|
308
|
+
Invoices/
|
|
309
|
+
├── 2022/
|
|
310
|
+
│ ├── Adobe/
|
|
311
|
+
│ ├── Amazon/
|
|
312
|
+
│ └── ...
|
|
313
|
+
├── 2023/
|
|
314
|
+
│ ├── Adobe/
|
|
315
|
+
│ ├── Amazon/
|
|
316
|
+
│ └── ...
|
|
317
|
+
└── 2024/
|
|
318
|
+
├── Adobe/
|
|
319
|
+
├── Amazon/
|
|
320
|
+
└── ...
|
|
321
|
+
```
|
|
322
|
+
|
|
323
|
+
Each file properly renamed with date and description.
|
|
324
|
+
|
|
325
|
+
### Example 4: Email Downloads Cleanup
|
|
326
|
+
|
|
327
|
+
**User**: "I download invoices from Gmail. They're all named 'invoice.pdf', 'invoice(1).pdf', etc. Fix this mess."
|
|
328
|
+
|
|
329
|
+
**Output**:
|
|
330
|
+
```markdown
|
|
331
|
+
Found 89 files all named "invoice*.pdf"
|
|
332
|
+
|
|
333
|
+
Reading each file to extract real information...
|
|
334
|
+
|
|
335
|
+
Renamed examples:
|
|
336
|
+
- invoice.pdf → 2024-03-15 Shopify - Invoice - Monthly Subscription.pdf
|
|
337
|
+
- invoice(1).pdf → 2024-03-14 Google - Invoice - Workspace.pdf
|
|
338
|
+
- invoice(2).pdf → 2024-03-10 Netlify - Invoice - Pro Plan.pdf
|
|
339
|
+
|
|
340
|
+
All files renamed and organized by vendor.
|
|
341
|
+
```
|
|
342
|
+
|
|
343
|
+
## Common Organization Patterns
|
|
344
|
+
|
|
345
|
+
### By Vendor (Simple)
|
|
346
|
+
```
|
|
347
|
+
Invoices/
|
|
348
|
+
├── Adobe/
|
|
349
|
+
├── Amazon/
|
|
350
|
+
├── Google/
|
|
351
|
+
└── Microsoft/
|
|
352
|
+
```
|
|
353
|
+
|
|
354
|
+
### By Year and Category (Tax-Friendly)
|
|
355
|
+
```
|
|
356
|
+
Invoices/
|
|
357
|
+
├── 2023/
|
|
358
|
+
│ ├── Software/
|
|
359
|
+
│ ├── Hardware/
|
|
360
|
+
│ ├── Services/
|
|
361
|
+
│ └── Travel/
|
|
362
|
+
└── 2024/
|
|
363
|
+
└── ...
|
|
364
|
+
```
|
|
365
|
+
|
|
366
|
+
### By Quarter (Detailed Tracking)
|
|
367
|
+
```
|
|
368
|
+
Invoices/
|
|
369
|
+
├── 2024/
|
|
370
|
+
│ ├── Q1/
|
|
371
|
+
│ │ ├── Software/
|
|
372
|
+
│ │ ├── Office/
|
|
373
|
+
│ │ └── Travel/
|
|
374
|
+
│ └── Q2/
|
|
375
|
+
│ └── ...
|
|
376
|
+
```
|
|
377
|
+
|
|
378
|
+
### By Tax Category (Accountant-Ready)
|
|
379
|
+
```
|
|
380
|
+
Invoices/
|
|
381
|
+
├── Deductible/
|
|
382
|
+
│ ├── Software/
|
|
383
|
+
│ ├── Office/
|
|
384
|
+
│ └── Professional-Services/
|
|
385
|
+
├── Partially-Deductible/
|
|
386
|
+
│ └── Meals-Travel/
|
|
387
|
+
└── Personal/
|
|
388
|
+
```
|
|
389
|
+
|
|
390
|
+
## Automation Setup
|
|
391
|
+
|
|
392
|
+
For ongoing organization:
|
|
393
|
+
|
|
394
|
+
```
|
|
395
|
+
Create a script that watches my ~/Downloads/invoices folder
|
|
396
|
+
and auto-organizes any new invoice files using our standard
|
|
397
|
+
naming and folder structure.
|
|
398
|
+
```
|
|
399
|
+
|
|
400
|
+
This creates a persistent solution that organizes invoices as they arrive.
|
|
401
|
+
|
|
402
|
+
## Pro Tips
|
|
403
|
+
|
|
404
|
+
1. **Scan emails to PDF**: Use Preview or similar to save email invoices as PDFs first
|
|
405
|
+
2. **Consistent downloads**: Save all invoices to one folder for batch processing
|
|
406
|
+
3. **Monthly routine**: Organize invoices monthly, not annually
|
|
407
|
+
4. **Backup originals**: Keep original files before reorganizing
|
|
408
|
+
5. **Include amounts in CSV**: Useful for budget tracking
|
|
409
|
+
6. **Tag by deductibility**: Note which expenses are tax-deductible
|
|
410
|
+
7. **Keep receipts 7 years**: Standard audit period
|
|
411
|
+
|
|
412
|
+
## Handling Special Cases
|
|
413
|
+
|
|
414
|
+
### Missing Information
|
|
415
|
+
If date/vendor can't be extracted:
|
|
416
|
+
- Flag file for manual review
|
|
417
|
+
- Use file modification date as fallback
|
|
418
|
+
- Create "Needs-Review/" folder
|
|
419
|
+
|
|
420
|
+
### Duplicate Invoices
|
|
421
|
+
If same invoice appears multiple times:
|
|
422
|
+
- Compare file hashes
|
|
423
|
+
- Keep highest quality version
|
|
424
|
+
- Note duplicates in summary
|
|
425
|
+
|
|
426
|
+
### Multi-Page Invoices
|
|
427
|
+
For invoices split across files:
|
|
428
|
+
- Merge PDFs if needed
|
|
429
|
+
- Use consistent naming for parts
|
|
430
|
+
- Note in CSV if invoice is split
|
|
431
|
+
|
|
432
|
+
### Non-Standard Formats
|
|
433
|
+
For unusual receipt formats:
|
|
434
|
+
- Extract what's possible
|
|
435
|
+
- Standardize what you can
|
|
436
|
+
- Flag for review if critical info missing
|
|
437
|
+
|
|
438
|
+
## Related Use Cases
|
|
439
|
+
|
|
440
|
+
- Creating expense reports for reimbursement
|
|
441
|
+
- Organizing bank statements
|
|
442
|
+
- Managing vendor contracts
|
|
443
|
+
- Archiving old financial records
|
|
444
|
+
- Preparing for audits
|
|
445
|
+
- Tracking subscription costs over time
|
|
446
|
+
|
|
@@ -0,0 +1,199 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: lead-research-assistant
|
|
3
|
+
description: Identifies high-quality leads for your product or service by analyzing your business, searching for target companies, and providing actionable contact strategies. Perfect for sales, business development, and marketing professionals.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# Lead Research Assistant
|
|
7
|
+
|
|
8
|
+
This skill helps you identify and qualify potential leads for your business by analyzing your product/service, understanding your ideal customer profile, and providing actionable outreach strategies.
|
|
9
|
+
|
|
10
|
+
## When to Use This Skill
|
|
11
|
+
|
|
12
|
+
- Finding potential customers or clients for your product/service
|
|
13
|
+
- Building a list of companies to reach out to for partnerships
|
|
14
|
+
- Identifying target accounts for sales outreach
|
|
15
|
+
- Researching companies that match your ideal customer profile
|
|
16
|
+
- Preparing for business development activities
|
|
17
|
+
|
|
18
|
+
## What This Skill Does
|
|
19
|
+
|
|
20
|
+
1. **Understands Your Business**: Analyzes your product/service, value proposition, and target market
|
|
21
|
+
2. **Identifies Target Companies**: Finds companies that match your ideal customer profile based on:
|
|
22
|
+
- Industry and sector
|
|
23
|
+
- Company size and location
|
|
24
|
+
- Technology stack and tools they use
|
|
25
|
+
- Growth stage and funding
|
|
26
|
+
- Pain points your product solves
|
|
27
|
+
3. **Prioritizes Leads**: Ranks companies based on fit score and relevance
|
|
28
|
+
4. **Provides Contact Strategies**: Suggests how to approach each lead with personalized messaging
|
|
29
|
+
5. **Enriches Data**: Gathers relevant information about decision-makers and company context
|
|
30
|
+
|
|
31
|
+
## How to Use
|
|
32
|
+
|
|
33
|
+
### Basic Usage
|
|
34
|
+
|
|
35
|
+
Simply describe your product/service and what you're looking for:
|
|
36
|
+
|
|
37
|
+
```
|
|
38
|
+
I'm building [product description]. Find me 10 companies in [location/industry]
|
|
39
|
+
that would be good leads for this.
|
|
40
|
+
```
|
|
41
|
+
|
|
42
|
+
### With Your Codebase
|
|
43
|
+
|
|
44
|
+
For even better results, run this from your product's source code directory:
|
|
45
|
+
|
|
46
|
+
```
|
|
47
|
+
Look at what I'm building in this repository and identify the top 10 companies
|
|
48
|
+
in [location/industry] that would benefit from this product.
|
|
49
|
+
```
|
|
50
|
+
|
|
51
|
+
### Advanced Usage
|
|
52
|
+
|
|
53
|
+
For more targeted research:
|
|
54
|
+
|
|
55
|
+
```
|
|
56
|
+
My product: [description]
|
|
57
|
+
Ideal customer profile:
|
|
58
|
+
- Industry: [industry]
|
|
59
|
+
- Company size: [size range]
|
|
60
|
+
- Location: [location]
|
|
61
|
+
- Current pain points: [pain points]
|
|
62
|
+
- Technologies they use: [tech stack]
|
|
63
|
+
|
|
64
|
+
Find me 20 qualified leads with contact strategies for each.
|
|
65
|
+
```
|
|
66
|
+
|
|
67
|
+
## Instructions
|
|
68
|
+
|
|
69
|
+
When a user requests lead research:
|
|
70
|
+
|
|
71
|
+
1. **Understand the Product/Service**
|
|
72
|
+
- If in a code directory, analyze the codebase to understand the product
|
|
73
|
+
- Ask clarifying questions about the value proposition
|
|
74
|
+
- Identify key features and benefits
|
|
75
|
+
- Understand what problems it solves
|
|
76
|
+
|
|
77
|
+
2. **Define Ideal Customer Profile**
|
|
78
|
+
- Determine target industries and sectors
|
|
79
|
+
- Identify company size ranges
|
|
80
|
+
- Consider geographic preferences
|
|
81
|
+
- Understand relevant pain points
|
|
82
|
+
- Note any technology requirements
|
|
83
|
+
|
|
84
|
+
3. **Research and Identify Leads**
|
|
85
|
+
- Search for companies matching the criteria
|
|
86
|
+
- Look for signals of need (job postings, tech stack, recent news)
|
|
87
|
+
- Consider growth indicators (funding, expansion, hiring)
|
|
88
|
+
- Identify companies with complementary products/services
|
|
89
|
+
- Check for budget indicators
|
|
90
|
+
|
|
91
|
+
4. **Prioritize and Score**
|
|
92
|
+
- Create a fit score (1-10) for each lead
|
|
93
|
+
- Consider factors like:
|
|
94
|
+
- Alignment with ICP
|
|
95
|
+
- Signals of immediate need
|
|
96
|
+
- Budget availability
|
|
97
|
+
- Competitive landscape
|
|
98
|
+
- Timing indicators
|
|
99
|
+
|
|
100
|
+
5. **Provide Actionable Output**
|
|
101
|
+
|
|
102
|
+
For each lead, provide:
|
|
103
|
+
- **Company Name** and website
|
|
104
|
+
- **Why They're a Good Fit**: Specific reasons based on their business
|
|
105
|
+
- **Priority Score**: 1-10 with explanation
|
|
106
|
+
- **Decision Maker**: Role/title to target (e.g., "VP of Engineering")
|
|
107
|
+
- **Contact Strategy**: Personalized approach suggestions
|
|
108
|
+
- **Value Proposition**: How your product solves their specific problem
|
|
109
|
+
- **Conversation Starters**: Specific points to mention in outreach
|
|
110
|
+
- **LinkedIn URL**: If available, for easy connection
|
|
111
|
+
|
|
112
|
+
6. **Format the Output**
|
|
113
|
+
|
|
114
|
+
Present results in a clear, scannable format:
|
|
115
|
+
|
|
116
|
+
```markdown
|
|
117
|
+
# Lead Research Results
|
|
118
|
+
|
|
119
|
+
## Summary
|
|
120
|
+
- Total leads found: [X]
|
|
121
|
+
- High priority (8-10): [X]
|
|
122
|
+
- Medium priority (5-7): [X]
|
|
123
|
+
- Average fit score: [X]
|
|
124
|
+
|
|
125
|
+
---
|
|
126
|
+
|
|
127
|
+
## Lead 1: [Company Name]
|
|
128
|
+
|
|
129
|
+
**Website**: [URL]
|
|
130
|
+
**Priority Score**: [X/10]
|
|
131
|
+
**Industry**: [Industry]
|
|
132
|
+
**Size**: [Employee count/revenue range]
|
|
133
|
+
|
|
134
|
+
**Why They're a Good Fit**:
|
|
135
|
+
[2-3 specific reasons based on their business]
|
|
136
|
+
|
|
137
|
+
**Target Decision Maker**: [Role/Title]
|
|
138
|
+
**LinkedIn**: [URL if available]
|
|
139
|
+
|
|
140
|
+
**Value Proposition for Them**:
|
|
141
|
+
[Specific benefit for this company]
|
|
142
|
+
|
|
143
|
+
**Outreach Strategy**:
|
|
144
|
+
[Personalized approach - mention specific pain points, recent company news, or relevant context]
|
|
145
|
+
|
|
146
|
+
**Conversation Starters**:
|
|
147
|
+
- [Specific point 1]
|
|
148
|
+
- [Specific point 2]
|
|
149
|
+
|
|
150
|
+
---
|
|
151
|
+
|
|
152
|
+
[Repeat for each lead]
|
|
153
|
+
```
|
|
154
|
+
|
|
155
|
+
7. **Offer Next Steps**
|
|
156
|
+
- Suggest saving results to a CSV for CRM import
|
|
157
|
+
- Offer to draft personalized outreach messages
|
|
158
|
+
- Recommend prioritization based on timing
|
|
159
|
+
- Suggest follow-up research for top leads
|
|
160
|
+
|
|
161
|
+
## Examples
|
|
162
|
+
|
|
163
|
+
### Example 1: From Lenny's Newsletter
|
|
164
|
+
|
|
165
|
+
**User**: "I'm building a tool that masks sensitive data in AI coding assistant queries. Find potential leads."
|
|
166
|
+
|
|
167
|
+
**Output**: Creates a prioritized list of companies that:
|
|
168
|
+
- Use AI coding assistants (Copilot, Cursor, etc.)
|
|
169
|
+
- Handle sensitive data (fintech, healthcare, legal)
|
|
170
|
+
- Have evidence in their GitHub repos of using coding agents
|
|
171
|
+
- May have accidentally exposed sensitive data in code
|
|
172
|
+
- Includes LinkedIn URLs of relevant decision-makers
|
|
173
|
+
|
|
174
|
+
### Example 2: Local Business
|
|
175
|
+
|
|
176
|
+
**User**: "I run a consulting practice for remote team productivity. Find me 10 companies in the Bay Area that recently went remote."
|
|
177
|
+
|
|
178
|
+
**Output**: Identifies companies that:
|
|
179
|
+
- Recently posted remote job listings
|
|
180
|
+
- Announced remote-first policies
|
|
181
|
+
- Are hiring distributed teams
|
|
182
|
+
- Show signs of remote work challenges
|
|
183
|
+
- Provides personalized outreach strategies for each
|
|
184
|
+
|
|
185
|
+
## Tips for Best Results
|
|
186
|
+
|
|
187
|
+
- **Be specific** about your product and its unique value
|
|
188
|
+
- **Run from your codebase** if applicable for automatic context
|
|
189
|
+
- **Provide context** about your ideal customer profile
|
|
190
|
+
- **Specify constraints** like industry, location, or company size
|
|
191
|
+
- **Request follow-up** research on promising leads for deeper insights
|
|
192
|
+
|
|
193
|
+
## Related Use Cases
|
|
194
|
+
|
|
195
|
+
- Drafting personalized outreach emails after identifying leads
|
|
196
|
+
- Building a CRM-ready CSV of qualified prospects
|
|
197
|
+
- Researching specific companies in detail
|
|
198
|
+
- Analyzing competitor customer bases
|
|
199
|
+
- Identifying partnership opportunities
|