@wonsukchoi/crondex 0.18.0 → 0.19.0
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/README.md +39 -39
- package/catalog.json +979 -33
- package/jobs/agriculture/grain-storage-temperature-check.yaml +34 -0
- package/jobs/automotive/warranty-claim-deadline-check.yaml +35 -0
- package/jobs/childcare/allergy-action-plan-expiry-check.yaml +34 -0
- package/jobs/construction/material-delivery-delay-check.yaml +32 -0
- package/jobs/creator/brand-deal-payment-followup-check.yaml +32 -0
- package/jobs/crypto/stablecoin-peg-deviation-watch.yaml +33 -0
- package/jobs/ecommerce/shipping-delay-check.yaml +31 -0
- package/jobs/education/overdue-library-materials-check.yaml +34 -0
- package/jobs/events/speaker-confirmation-deadline-check.yaml +35 -0
- package/jobs/fitness/locker-rental-expiry-check.yaml +35 -0
- package/jobs/fleet/fleet-insurance-expiry-check.yaml +34 -0
- package/jobs/gaming/game-server-disk-space-check.yaml +34 -0
- package/jobs/government/public-comment-period-closing-check.yaml +35 -0
- package/jobs/growth/seat-utilization-upsell-check.yaml +34 -0
- package/jobs/healthcare/medical-equipment-calibration-check.yaml +35 -0
- package/jobs/hiring/job-posting-expiry-check.yaml +41 -0
- package/jobs/home/utility-bill-anomaly-check.yaml +36 -0
- package/jobs/hospitality/housekeeping-turnover-time-check.yaml +41 -0
- package/jobs/hr/i9-reverification-deadline-check.yaml +36 -0
- package/jobs/insurance/beneficiary-designation-review-reminder.yaml +35 -0
- package/jobs/inventory/supplier-lead-time-drift-check.yaml +34 -0
- package/jobs/investing/bond-cd-maturity-reminder.yaml +31 -0
- package/jobs/learning/practice-streak-check.yaml +33 -0
- package/jobs/legal/business-license-renewal-check.yaml +37 -0
- package/jobs/logistics/port-congestion-watch.yaml +34 -0
- package/jobs/manufacturing/equipment-calibration-due-check.yaml +32 -0
- package/jobs/marketing/newsletter-unsubscribe-spike-check.yaml +37 -0
- package/jobs/nonprofit/event-rsvp-shortfall-check.yaml +40 -0
- package/jobs/podcast/transcript-publish-lag-check.yaml +31 -0
- package/jobs/realestate/hoa-fee-collection-check.yaml +35 -0
- package/jobs/restaurant/supplier-price-increase-watch.yaml +36 -0
- package/jobs/retail/markdown-aging-inventory-check.yaml +33 -0
- package/jobs/sales/proposal-followup-nudge.yaml +31 -0
- package/jobs/support/macro-usage-staleness-check.yaml +33 -0
- package/jobs/team/expense-report-deadline-reminder.yaml +28 -0
- package/jobs/travel/hotel-cancellation-deadline-reminder.yaml +32 -0
- package/jobs/veterinary/medication-inventory-expiry-check.yaml +31 -0
- package/jobs/warehousing/returns-processing-backlog-check.yaml +33 -0
- package/package.json +1 -1
package/catalog.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"generated_by": "scripts/build-catalog.js",
|
|
3
3
|
"schema": "schema/job.schema.json",
|
|
4
|
-
"count":
|
|
4
|
+
"count": 309,
|
|
5
5
|
"jobs": [
|
|
6
6
|
{
|
|
7
7
|
"id": "1on1-prep-reminder",
|
|
@@ -131,6 +131,31 @@
|
|
|
131
131
|
],
|
|
132
132
|
"path": "jobs/support/agent-workload-balance-check.yaml"
|
|
133
133
|
},
|
|
134
|
+
{
|
|
135
|
+
"id": "allergy-action-plan-expiry-check",
|
|
136
|
+
"version": 1,
|
|
137
|
+
"name": "Allergy Action Plan Expiry Check",
|
|
138
|
+
"description": "Checks each child's allergy action plan against its annual renewal date and warns before it lapses. Use this if a plan has ever gone stale without anyone noticing until an incident made it obvious.",
|
|
139
|
+
"category": "childcare",
|
|
140
|
+
"tags": [
|
|
141
|
+
"childcare",
|
|
142
|
+
"allergy",
|
|
143
|
+
"health",
|
|
144
|
+
"compliance"
|
|
145
|
+
],
|
|
146
|
+
"schedule": "0 8 * * 1",
|
|
147
|
+
"timezone": "UTC",
|
|
148
|
+
"runner": "shell",
|
|
149
|
+
"modes": [
|
|
150
|
+
"script"
|
|
151
|
+
],
|
|
152
|
+
"compatible_agents": [
|
|
153
|
+
"generic",
|
|
154
|
+
"claude",
|
|
155
|
+
"codex"
|
|
156
|
+
],
|
|
157
|
+
"path": "jobs/childcare/allergy-action-plan-expiry-check.yaml"
|
|
158
|
+
},
|
|
134
159
|
{
|
|
135
160
|
"id": "api-rate-limit-check",
|
|
136
161
|
"version": 1,
|
|
@@ -335,6 +360,31 @@
|
|
|
335
360
|
],
|
|
336
361
|
"path": "jobs/devops/backup-reminder.yaml"
|
|
337
362
|
},
|
|
363
|
+
{
|
|
364
|
+
"id": "beneficiary-designation-review-reminder",
|
|
365
|
+
"version": 1,
|
|
366
|
+
"name": "Beneficiary Designation Review Reminder",
|
|
367
|
+
"description": "Reminds you to review beneficiary designations on your insurance policies and retirement accounts once they haven't been checked in a while. Use this if a beneficiary has ever gone unchanged for years through a marriage, divorce, or new child without anyone catching it.",
|
|
368
|
+
"category": "insurance",
|
|
369
|
+
"tags": [
|
|
370
|
+
"insurance",
|
|
371
|
+
"beneficiary",
|
|
372
|
+
"review",
|
|
373
|
+
"reminder"
|
|
374
|
+
],
|
|
375
|
+
"schedule": "0 9 * * 1",
|
|
376
|
+
"timezone": "UTC",
|
|
377
|
+
"runner": "shell",
|
|
378
|
+
"modes": [
|
|
379
|
+
"script"
|
|
380
|
+
],
|
|
381
|
+
"compatible_agents": [
|
|
382
|
+
"generic",
|
|
383
|
+
"claude",
|
|
384
|
+
"codex"
|
|
385
|
+
],
|
|
386
|
+
"path": "jobs/insurance/beneficiary-designation-review-reminder.yaml"
|
|
387
|
+
},
|
|
338
388
|
{
|
|
339
389
|
"id": "benefits-enrollment-deadline-reminder",
|
|
340
390
|
"version": 1,
|
|
@@ -438,6 +488,56 @@
|
|
|
438
488
|
],
|
|
439
489
|
"path": "jobs/veterinary/boarding-checkout-reminder.yaml"
|
|
440
490
|
},
|
|
491
|
+
{
|
|
492
|
+
"id": "bond-cd-maturity-reminder",
|
|
493
|
+
"version": 1,
|
|
494
|
+
"name": "Bond & CD Maturity Reminder",
|
|
495
|
+
"description": "Warns you before a bond or certificate of deposit reaches its maturity date. Use this if a CD has ever auto-renewed into a worse rate because the maturity date crept up unnoticed.",
|
|
496
|
+
"category": "investing",
|
|
497
|
+
"tags": [
|
|
498
|
+
"investing",
|
|
499
|
+
"bonds",
|
|
500
|
+
"cd",
|
|
501
|
+
"maturity"
|
|
502
|
+
],
|
|
503
|
+
"schedule": "0 9 1 * *",
|
|
504
|
+
"timezone": "UTC",
|
|
505
|
+
"runner": "shell",
|
|
506
|
+
"modes": [
|
|
507
|
+
"script"
|
|
508
|
+
],
|
|
509
|
+
"compatible_agents": [
|
|
510
|
+
"generic",
|
|
511
|
+
"claude",
|
|
512
|
+
"codex"
|
|
513
|
+
],
|
|
514
|
+
"path": "jobs/investing/bond-cd-maturity-reminder.yaml"
|
|
515
|
+
},
|
|
516
|
+
{
|
|
517
|
+
"id": "brand-deal-payment-followup-check",
|
|
518
|
+
"version": 1,
|
|
519
|
+
"name": "Brand Deal Payment Followup Check",
|
|
520
|
+
"description": "Checks sponsor invoices against their agreed payment due date and flags anything overdue and unpaid. Use this if a sponsor has ever gone quiet on an invoice and you only noticed the payment never showed up weeks later.",
|
|
521
|
+
"category": "creator",
|
|
522
|
+
"tags": [
|
|
523
|
+
"creator",
|
|
524
|
+
"sponsorship",
|
|
525
|
+
"invoicing",
|
|
526
|
+
"payment"
|
|
527
|
+
],
|
|
528
|
+
"schedule": "0 9 * * 1",
|
|
529
|
+
"timezone": "UTC",
|
|
530
|
+
"runner": "shell",
|
|
531
|
+
"modes": [
|
|
532
|
+
"script"
|
|
533
|
+
],
|
|
534
|
+
"compatible_agents": [
|
|
535
|
+
"generic",
|
|
536
|
+
"claude",
|
|
537
|
+
"codex"
|
|
538
|
+
],
|
|
539
|
+
"path": "jobs/creator/brand-deal-payment-followup-check.yaml"
|
|
540
|
+
},
|
|
441
541
|
{
|
|
442
542
|
"id": "broken-link-check",
|
|
443
543
|
"version": 1,
|
|
@@ -511,6 +611,31 @@
|
|
|
511
611
|
],
|
|
512
612
|
"path": "jobs/finance/budget-overspend-check.yaml"
|
|
513
613
|
},
|
|
614
|
+
{
|
|
615
|
+
"id": "business-license-renewal-check",
|
|
616
|
+
"version": 1,
|
|
617
|
+
"name": "Business License Renewal Check",
|
|
618
|
+
"description": "Warns you before a specific business license or permit (liquor, contractor, professional, health department, etc.) reaches its renewal deadline. Use this if a license has ever lapsed because its renewal date lived only in someone's memory instead of a calendar.",
|
|
619
|
+
"category": "legal",
|
|
620
|
+
"tags": [
|
|
621
|
+
"legal",
|
|
622
|
+
"license",
|
|
623
|
+
"permit",
|
|
624
|
+
"renewal"
|
|
625
|
+
],
|
|
626
|
+
"schedule": "0 9 1 * *",
|
|
627
|
+
"timezone": "UTC",
|
|
628
|
+
"runner": "shell",
|
|
629
|
+
"modes": [
|
|
630
|
+
"script"
|
|
631
|
+
],
|
|
632
|
+
"compatible_agents": [
|
|
633
|
+
"generic",
|
|
634
|
+
"claude",
|
|
635
|
+
"codex"
|
|
636
|
+
],
|
|
637
|
+
"path": "jobs/legal/business-license-renewal-check.yaml"
|
|
638
|
+
},
|
|
514
639
|
{
|
|
515
640
|
"id": "calendar-double-booking-check",
|
|
516
641
|
"version": 1,
|
|
@@ -2008,6 +2133,31 @@
|
|
|
2008
2133
|
],
|
|
2009
2134
|
"path": "jobs/podcast/episode-publish-gap-check.yaml"
|
|
2010
2135
|
},
|
|
2136
|
+
{
|
|
2137
|
+
"id": "equipment-calibration-due-check",
|
|
2138
|
+
"version": 1,
|
|
2139
|
+
"name": "Equipment Calibration Due Check",
|
|
2140
|
+
"description": "Warns you before a piece of measurement or test equipment is due for calibration. Use this if an out-of-calibration gauge has ever kept producing \"passing\" measurements nobody could actually trust.",
|
|
2141
|
+
"category": "manufacturing",
|
|
2142
|
+
"tags": [
|
|
2143
|
+
"manufacturing",
|
|
2144
|
+
"calibration",
|
|
2145
|
+
"quality",
|
|
2146
|
+
"compliance"
|
|
2147
|
+
],
|
|
2148
|
+
"schedule": "0 9 1 * *",
|
|
2149
|
+
"timezone": "UTC",
|
|
2150
|
+
"runner": "shell",
|
|
2151
|
+
"modes": [
|
|
2152
|
+
"script"
|
|
2153
|
+
],
|
|
2154
|
+
"compatible_agents": [
|
|
2155
|
+
"generic",
|
|
2156
|
+
"claude",
|
|
2157
|
+
"codex"
|
|
2158
|
+
],
|
|
2159
|
+
"path": "jobs/manufacturing/equipment-calibration-due-check.yaml"
|
|
2160
|
+
},
|
|
2011
2161
|
{
|
|
2012
2162
|
"id": "equipment-maintenance-due-reminder",
|
|
2013
2163
|
"version": 1,
|
|
@@ -2134,6 +2284,31 @@
|
|
|
2134
2284
|
],
|
|
2135
2285
|
"path": "jobs/events/event-budget-overrun-check.yaml"
|
|
2136
2286
|
},
|
|
2287
|
+
{
|
|
2288
|
+
"id": "event-rsvp-shortfall-check",
|
|
2289
|
+
"version": 1,
|
|
2290
|
+
"name": "Fundraising Event RSVP Shortfall Check",
|
|
2291
|
+
"description": "Checks confirmed RSVPs for an upcoming fundraising event against your goal and flags it if you're falling short as the date approaches. Use this if an event has ever snuck up with half-empty RSVPs and no time left to push more invitations.",
|
|
2292
|
+
"category": "nonprofit",
|
|
2293
|
+
"tags": [
|
|
2294
|
+
"nonprofit",
|
|
2295
|
+
"events",
|
|
2296
|
+
"fundraising",
|
|
2297
|
+
"rsvp"
|
|
2298
|
+
],
|
|
2299
|
+
"schedule": "0 9 * * *",
|
|
2300
|
+
"timezone": "UTC",
|
|
2301
|
+
"runner": "shell",
|
|
2302
|
+
"modes": [
|
|
2303
|
+
"script"
|
|
2304
|
+
],
|
|
2305
|
+
"compatible_agents": [
|
|
2306
|
+
"generic",
|
|
2307
|
+
"claude",
|
|
2308
|
+
"codex"
|
|
2309
|
+
],
|
|
2310
|
+
"path": "jobs/nonprofit/event-rsvp-shortfall-check.yaml"
|
|
2311
|
+
},
|
|
2137
2312
|
{
|
|
2138
2313
|
"id": "event-staffing-shortfall-check",
|
|
2139
2314
|
"version": 1,
|
|
@@ -2186,6 +2361,31 @@
|
|
|
2186
2361
|
],
|
|
2187
2362
|
"path": "jobs/hr/exit-interview-completion-check.yaml"
|
|
2188
2363
|
},
|
|
2364
|
+
{
|
|
2365
|
+
"id": "expense-report-deadline-reminder",
|
|
2366
|
+
"version": 1,
|
|
2367
|
+
"name": "Expense Report Deadline Reminder",
|
|
2368
|
+
"description": "Warns you before the monthly expense report submission deadline passes. Use this if you've ever missed reimbursement because the expense window closed before you got around to submitting receipts.",
|
|
2369
|
+
"category": "team",
|
|
2370
|
+
"tags": [
|
|
2371
|
+
"team",
|
|
2372
|
+
"expenses",
|
|
2373
|
+
"finance",
|
|
2374
|
+
"deadline"
|
|
2375
|
+
],
|
|
2376
|
+
"schedule": "0 9 * * *",
|
|
2377
|
+
"timezone": "America/Los_Angeles",
|
|
2378
|
+
"runner": "shell",
|
|
2379
|
+
"modes": [
|
|
2380
|
+
"script"
|
|
2381
|
+
],
|
|
2382
|
+
"compatible_agents": [
|
|
2383
|
+
"generic",
|
|
2384
|
+
"claude",
|
|
2385
|
+
"codex"
|
|
2386
|
+
],
|
|
2387
|
+
"path": "jobs/team/expense-report-deadline-reminder.yaml"
|
|
2388
|
+
},
|
|
2189
2389
|
{
|
|
2190
2390
|
"id": "expiring-api-key-rotation",
|
|
2191
2391
|
"version": 1,
|
|
@@ -2358,6 +2558,30 @@
|
|
|
2358
2558
|
],
|
|
2359
2559
|
"path": "jobs/security/firewall-rule-diff.yaml"
|
|
2360
2560
|
},
|
|
2561
|
+
{
|
|
2562
|
+
"id": "fleet-insurance-expiry-check",
|
|
2563
|
+
"version": 1,
|
|
2564
|
+
"name": "Fleet Insurance Policy Expiry Check",
|
|
2565
|
+
"description": "Checks each vehicle's insurance policy against its expiry date and flags coverage that's about to lapse. Use this if a vehicle has ever been driven on an expired policy because renewal paperwork got missed.",
|
|
2566
|
+
"category": "fleet",
|
|
2567
|
+
"tags": [
|
|
2568
|
+
"fleet",
|
|
2569
|
+
"insurance",
|
|
2570
|
+
"compliance"
|
|
2571
|
+
],
|
|
2572
|
+
"schedule": "0 7 * * *",
|
|
2573
|
+
"timezone": "UTC",
|
|
2574
|
+
"runner": "shell",
|
|
2575
|
+
"modes": [
|
|
2576
|
+
"script"
|
|
2577
|
+
],
|
|
2578
|
+
"compatible_agents": [
|
|
2579
|
+
"generic",
|
|
2580
|
+
"claude",
|
|
2581
|
+
"codex"
|
|
2582
|
+
],
|
|
2583
|
+
"path": "jobs/fleet/fleet-insurance-expiry-check.yaml"
|
|
2584
|
+
},
|
|
2361
2585
|
{
|
|
2362
2586
|
"id": "flight-checkin-reminder",
|
|
2363
2587
|
"version": 1,
|
|
@@ -2661,6 +2885,31 @@
|
|
|
2661
2885
|
],
|
|
2662
2886
|
"path": "jobs/gaming/game-patch-notes-watch.yaml"
|
|
2663
2887
|
},
|
|
2888
|
+
{
|
|
2889
|
+
"id": "game-server-disk-space-check",
|
|
2890
|
+
"version": 1,
|
|
2891
|
+
"name": "Game Server Disk Space Check",
|
|
2892
|
+
"description": "Checks free disk space on your self-hosted game server's world/save data volume and warns before it fills up. Use this if a server has ever stopped saving the world (or crashed outright) because the disk quietly filled up overnight.",
|
|
2893
|
+
"category": "gaming",
|
|
2894
|
+
"tags": [
|
|
2895
|
+
"gaming",
|
|
2896
|
+
"server",
|
|
2897
|
+
"disk-space",
|
|
2898
|
+
"hosting"
|
|
2899
|
+
],
|
|
2900
|
+
"schedule": "*/30 * * * *",
|
|
2901
|
+
"timezone": "UTC",
|
|
2902
|
+
"runner": "shell",
|
|
2903
|
+
"modes": [
|
|
2904
|
+
"script"
|
|
2905
|
+
],
|
|
2906
|
+
"compatible_agents": [
|
|
2907
|
+
"generic",
|
|
2908
|
+
"claude",
|
|
2909
|
+
"codex"
|
|
2910
|
+
],
|
|
2911
|
+
"path": "jobs/gaming/game-server-disk-space-check.yaml"
|
|
2912
|
+
},
|
|
2664
2913
|
{
|
|
2665
2914
|
"id": "game-server-uptime-check",
|
|
2666
2915
|
"version": 1,
|
|
@@ -2763,6 +3012,31 @@
|
|
|
2763
3012
|
],
|
|
2764
3013
|
"path": "jobs/devops/github-issue-triage.yaml"
|
|
2765
3014
|
},
|
|
3015
|
+
{
|
|
3016
|
+
"id": "grain-storage-temperature-check",
|
|
3017
|
+
"version": 1,
|
|
3018
|
+
"name": "Grain Storage Temperature Check",
|
|
3019
|
+
"description": "Checks logged grain bin temperature and moisture readings against safe storage thresholds and flags any bin trending toward spoilage. Use this if you've ever caught hot spots or mold in stored grain only after the smell gave it away.",
|
|
3020
|
+
"category": "agriculture",
|
|
3021
|
+
"tags": [
|
|
3022
|
+
"agriculture",
|
|
3023
|
+
"grain",
|
|
3024
|
+
"storage",
|
|
3025
|
+
"spoilage"
|
|
3026
|
+
],
|
|
3027
|
+
"schedule": "0 6 * * *",
|
|
3028
|
+
"timezone": "America/Chicago",
|
|
3029
|
+
"runner": "shell",
|
|
3030
|
+
"modes": [
|
|
3031
|
+
"script"
|
|
3032
|
+
],
|
|
3033
|
+
"compatible_agents": [
|
|
3034
|
+
"generic",
|
|
3035
|
+
"claude",
|
|
3036
|
+
"codex"
|
|
3037
|
+
],
|
|
3038
|
+
"path": "jobs/agriculture/grain-storage-temperature-check.yaml"
|
|
3039
|
+
},
|
|
2766
3040
|
{
|
|
2767
3041
|
"id": "grant-deadline-reminder",
|
|
2768
3042
|
"version": 1,
|
|
@@ -3015,17 +3289,18 @@
|
|
|
3015
3289
|
"path": "jobs/restaurant/health-inspection-prep-reminder.yaml"
|
|
3016
3290
|
},
|
|
3017
3291
|
{
|
|
3018
|
-
"id": "
|
|
3292
|
+
"id": "hoa-fee-collection-check",
|
|
3019
3293
|
"version": 1,
|
|
3020
|
-
"name": "
|
|
3021
|
-
"description": "
|
|
3022
|
-
"category": "
|
|
3294
|
+
"name": "HOA Fee Collection Check",
|
|
3295
|
+
"description": "Scans an HOA/association dues ledger for owners who are past due and totals what's outstanding. Use this if unpaid association dues have ever piled up silently until the reserve fund came up short.",
|
|
3296
|
+
"category": "realestate",
|
|
3023
3297
|
"tags": [
|
|
3024
|
-
"
|
|
3025
|
-
"
|
|
3026
|
-
"
|
|
3298
|
+
"realestate",
|
|
3299
|
+
"hoa",
|
|
3300
|
+
"dues",
|
|
3301
|
+
"collections"
|
|
3027
3302
|
],
|
|
3028
|
-
"schedule": "0
|
|
3303
|
+
"schedule": "0 8 5 * *",
|
|
3029
3304
|
"timezone": "UTC",
|
|
3030
3305
|
"runner": "shell",
|
|
3031
3306
|
"modes": [
|
|
@@ -3036,21 +3311,22 @@
|
|
|
3036
3311
|
"claude",
|
|
3037
3312
|
"codex"
|
|
3038
3313
|
],
|
|
3039
|
-
"path": "jobs/
|
|
3314
|
+
"path": "jobs/realestate/hoa-fee-collection-check.yaml"
|
|
3040
3315
|
},
|
|
3041
3316
|
{
|
|
3042
|
-
"id": "
|
|
3317
|
+
"id": "hotel-cancellation-deadline-reminder",
|
|
3043
3318
|
"version": 1,
|
|
3044
|
-
"name": "
|
|
3045
|
-
"description": "
|
|
3046
|
-
"category": "
|
|
3319
|
+
"name": "Hotel Cancellation Deadline Reminder",
|
|
3320
|
+
"description": "Warns you before a hotel booking's free-cancellation window closes. Use this if you've ever gotten charged for a hotel you meant to cancel because the deadline passed while you were still deciding.",
|
|
3321
|
+
"category": "travel",
|
|
3047
3322
|
"tags": [
|
|
3048
|
-
"
|
|
3049
|
-
"
|
|
3050
|
-
"
|
|
3323
|
+
"travel",
|
|
3324
|
+
"hotel",
|
|
3325
|
+
"cancellation",
|
|
3326
|
+
"deadline"
|
|
3051
3327
|
],
|
|
3052
|
-
"schedule": "0 9
|
|
3053
|
-
"timezone": "
|
|
3328
|
+
"schedule": "0 9 * * *",
|
|
3329
|
+
"timezone": "UTC",
|
|
3054
3330
|
"runner": "shell",
|
|
3055
3331
|
"modes": [
|
|
3056
3332
|
"script"
|
|
@@ -3060,21 +3336,20 @@
|
|
|
3060
3336
|
"claude",
|
|
3061
3337
|
"codex"
|
|
3062
3338
|
],
|
|
3063
|
-
"path": "jobs/
|
|
3339
|
+
"path": "jobs/travel/hotel-cancellation-deadline-reminder.yaml"
|
|
3064
3340
|
},
|
|
3065
3341
|
{
|
|
3066
|
-
"id": "
|
|
3342
|
+
"id": "housekeeping-turnover-time-check",
|
|
3067
3343
|
"version": 1,
|
|
3068
|
-
"name": "
|
|
3069
|
-
"description": "Checks
|
|
3070
|
-
"category": "
|
|
3344
|
+
"name": "Housekeeping Turnover Time Check",
|
|
3345
|
+
"description": "Checks logged checkout and room-ready timestamps and flags any room whose turnover took longer than your target window, or is still missing a ready time. Use this if a room has ever still been mid-clean when the next guest arrived because nobody was tracking turnover times.",
|
|
3346
|
+
"category": "hospitality",
|
|
3071
3347
|
"tags": [
|
|
3072
|
-
"
|
|
3073
|
-
"
|
|
3074
|
-
"
|
|
3075
|
-
"rotation"
|
|
3348
|
+
"hospitality",
|
|
3349
|
+
"housekeeping",
|
|
3350
|
+
"operations"
|
|
3076
3351
|
],
|
|
3077
|
-
"schedule": "0
|
|
3352
|
+
"schedule": "0 */2 * * *",
|
|
3078
3353
|
"timezone": "UTC",
|
|
3079
3354
|
"runner": "shell",
|
|
3080
3355
|
"modes": [
|
|
@@ -3085,10 +3360,108 @@
|
|
|
3085
3360
|
"claude",
|
|
3086
3361
|
"codex"
|
|
3087
3362
|
],
|
|
3088
|
-
"path": "jobs/
|
|
3363
|
+
"path": "jobs/hospitality/housekeeping-turnover-time-check.yaml"
|
|
3089
3364
|
},
|
|
3090
3365
|
{
|
|
3091
|
-
"id": "
|
|
3366
|
+
"id": "hreflang-audit",
|
|
3367
|
+
"version": 1,
|
|
3368
|
+
"name": "Hreflang Audit",
|
|
3369
|
+
"description": "Checks a page's hreflang tags for missing reciprocal links or obviously wrong language/region codes. Use this if a hreflang mistake has ever quietly sent the wrong country's visitors to the wrong language version.",
|
|
3370
|
+
"category": "content",
|
|
3371
|
+
"tags": [
|
|
3372
|
+
"seo",
|
|
3373
|
+
"hreflang",
|
|
3374
|
+
"international"
|
|
3375
|
+
],
|
|
3376
|
+
"schedule": "0 7 * * 1",
|
|
3377
|
+
"timezone": "UTC",
|
|
3378
|
+
"runner": "shell",
|
|
3379
|
+
"modes": [
|
|
3380
|
+
"script"
|
|
3381
|
+
],
|
|
3382
|
+
"compatible_agents": [
|
|
3383
|
+
"generic",
|
|
3384
|
+
"claude",
|
|
3385
|
+
"codex"
|
|
3386
|
+
],
|
|
3387
|
+
"path": "jobs/content/hreflang-audit.yaml"
|
|
3388
|
+
},
|
|
3389
|
+
{
|
|
3390
|
+
"id": "hvac-filter-reminder",
|
|
3391
|
+
"version": 1,
|
|
3392
|
+
"name": "HVAC Filter Change Reminder",
|
|
3393
|
+
"description": "Reminds you to change your HVAC filter based on how long it's been. Use this if you've ever found a filter so clogged you forgot it was ever white.",
|
|
3394
|
+
"category": "home",
|
|
3395
|
+
"tags": [
|
|
3396
|
+
"home",
|
|
3397
|
+
"hvac",
|
|
3398
|
+
"maintenance"
|
|
3399
|
+
],
|
|
3400
|
+
"schedule": "0 9 1 * *",
|
|
3401
|
+
"timezone": "America/Los_Angeles",
|
|
3402
|
+
"runner": "shell",
|
|
3403
|
+
"modes": [
|
|
3404
|
+
"script"
|
|
3405
|
+
],
|
|
3406
|
+
"compatible_agents": [
|
|
3407
|
+
"generic",
|
|
3408
|
+
"claude",
|
|
3409
|
+
"codex"
|
|
3410
|
+
],
|
|
3411
|
+
"path": "jobs/home/hvac-filter-reminder.yaml"
|
|
3412
|
+
},
|
|
3413
|
+
{
|
|
3414
|
+
"id": "i9-reverification-deadline-check",
|
|
3415
|
+
"version": 1,
|
|
3416
|
+
"name": "I-9 Reverification Deadline Check",
|
|
3417
|
+
"description": "Checks employees whose work authorization document has an expiration date and warns before I-9 reverification is due. Use this if an I-9 reverification deadline has ever been missed and only caught during an audit.",
|
|
3418
|
+
"category": "hr",
|
|
3419
|
+
"tags": [
|
|
3420
|
+
"hr",
|
|
3421
|
+
"compliance",
|
|
3422
|
+
"i9",
|
|
3423
|
+
"employment-eligibility"
|
|
3424
|
+
],
|
|
3425
|
+
"schedule": "0 8 * * 1",
|
|
3426
|
+
"timezone": "America/New_York",
|
|
3427
|
+
"runner": "shell",
|
|
3428
|
+
"modes": [
|
|
3429
|
+
"script"
|
|
3430
|
+
],
|
|
3431
|
+
"compatible_agents": [
|
|
3432
|
+
"generic",
|
|
3433
|
+
"claude",
|
|
3434
|
+
"codex"
|
|
3435
|
+
],
|
|
3436
|
+
"path": "jobs/hr/i9-reverification-deadline-check.yaml"
|
|
3437
|
+
},
|
|
3438
|
+
{
|
|
3439
|
+
"id": "iam-key-rotation-reminder",
|
|
3440
|
+
"version": 1,
|
|
3441
|
+
"name": "IAM Key Rotation Reminder",
|
|
3442
|
+
"description": "Checks how old your IAM access keys are and flags any past your rotation age. Use this if you've ever found a years-old access key still active because nobody was tracking key age.",
|
|
3443
|
+
"category": "security",
|
|
3444
|
+
"tags": [
|
|
3445
|
+
"security",
|
|
3446
|
+
"iam",
|
|
3447
|
+
"aws",
|
|
3448
|
+
"rotation"
|
|
3449
|
+
],
|
|
3450
|
+
"schedule": "0 8 1 * *",
|
|
3451
|
+
"timezone": "UTC",
|
|
3452
|
+
"runner": "shell",
|
|
3453
|
+
"modes": [
|
|
3454
|
+
"script"
|
|
3455
|
+
],
|
|
3456
|
+
"compatible_agents": [
|
|
3457
|
+
"generic",
|
|
3458
|
+
"claude",
|
|
3459
|
+
"codex"
|
|
3460
|
+
],
|
|
3461
|
+
"path": "jobs/security/iam-key-rotation-reminder.yaml"
|
|
3462
|
+
},
|
|
3463
|
+
{
|
|
3464
|
+
"id": "image-alt-text-audit",
|
|
3092
3465
|
"version": 1,
|
|
3093
3466
|
"name": "Image Alt Text Audit",
|
|
3094
3467
|
"description": "Checks a page for images missing alt text. Use this if images have ever shipped without alt text because nobody double-checked before merging.",
|
|
@@ -3371,6 +3744,30 @@
|
|
|
3371
3744
|
],
|
|
3372
3745
|
"path": "jobs/agriculture/irrigation-schedule-check.yaml"
|
|
3373
3746
|
},
|
|
3747
|
+
{
|
|
3748
|
+
"id": "job-posting-expiry-check",
|
|
3749
|
+
"version": 1,
|
|
3750
|
+
"name": "Job Posting Expiry Check",
|
|
3751
|
+
"description": "Checks open job postings against their planned expiry or repost date and flags any that have gone stale on a job board. Use this if a posting has ever sat expired for weeks before anyone noticed applications had quietly stopped coming in.",
|
|
3752
|
+
"category": "hiring",
|
|
3753
|
+
"tags": [
|
|
3754
|
+
"hiring",
|
|
3755
|
+
"recruiting",
|
|
3756
|
+
"job-postings"
|
|
3757
|
+
],
|
|
3758
|
+
"schedule": "0 9 * * 1",
|
|
3759
|
+
"timezone": "UTC",
|
|
3760
|
+
"runner": "shell",
|
|
3761
|
+
"modes": [
|
|
3762
|
+
"script"
|
|
3763
|
+
],
|
|
3764
|
+
"compatible_agents": [
|
|
3765
|
+
"generic",
|
|
3766
|
+
"claude",
|
|
3767
|
+
"codex"
|
|
3768
|
+
],
|
|
3769
|
+
"path": "jobs/hiring/job-posting-expiry-check.yaml"
|
|
3770
|
+
},
|
|
3374
3771
|
{
|
|
3375
3772
|
"id": "k8s-pod-restart-watch",
|
|
3376
3773
|
"version": 1,
|
|
@@ -3645,6 +4042,30 @@
|
|
|
3645
4042
|
],
|
|
3646
4043
|
"path": "jobs/automotive/loaner-vehicle-return-reminder.yaml"
|
|
3647
4044
|
},
|
|
4045
|
+
{
|
|
4046
|
+
"id": "locker-rental-expiry-check",
|
|
4047
|
+
"version": 1,
|
|
4048
|
+
"name": "Locker Rental Expiry Check",
|
|
4049
|
+
"description": "Checks rented lockers against their expiry date and flags the ones coming due soon. Use this if a member's belongings have ever been cleared out of a locker without warning because the rental quietly lapsed.",
|
|
4050
|
+
"category": "fitness",
|
|
4051
|
+
"tags": [
|
|
4052
|
+
"fitness",
|
|
4053
|
+
"lockers",
|
|
4054
|
+
"membership"
|
|
4055
|
+
],
|
|
4056
|
+
"schedule": "0 6 * * *",
|
|
4057
|
+
"timezone": "UTC",
|
|
4058
|
+
"runner": "shell",
|
|
4059
|
+
"modes": [
|
|
4060
|
+
"script"
|
|
4061
|
+
],
|
|
4062
|
+
"compatible_agents": [
|
|
4063
|
+
"generic",
|
|
4064
|
+
"claude",
|
|
4065
|
+
"codex"
|
|
4066
|
+
],
|
|
4067
|
+
"path": "jobs/fitness/locker-rental-expiry-check.yaml"
|
|
4068
|
+
},
|
|
3648
4069
|
{
|
|
3649
4070
|
"id": "log-cleanup",
|
|
3650
4071
|
"version": 1,
|
|
@@ -3741,6 +4162,81 @@
|
|
|
3741
4162
|
],
|
|
3742
4163
|
"path": "jobs/ecommerce/low-stock-reorder-alert.yaml"
|
|
3743
4164
|
},
|
|
4165
|
+
{
|
|
4166
|
+
"id": "macro-usage-staleness-check",
|
|
4167
|
+
"version": 1,
|
|
4168
|
+
"name": "Macro/Canned Response Staleness Check",
|
|
4169
|
+
"description": "Flags saved canned responses (macros) that haven't been used in a long time so someone can check whether they're still accurate. Use this if a stale macro has ever gone out with outdated pricing, a dead link, or a policy that changed months ago.",
|
|
4170
|
+
"category": "support",
|
|
4171
|
+
"tags": [
|
|
4172
|
+
"support",
|
|
4173
|
+
"macros",
|
|
4174
|
+
"canned-responses",
|
|
4175
|
+
"knowledge-base"
|
|
4176
|
+
],
|
|
4177
|
+
"schedule": "0 8 1 * *",
|
|
4178
|
+
"timezone": "UTC",
|
|
4179
|
+
"runner": "shell",
|
|
4180
|
+
"modes": [
|
|
4181
|
+
"script"
|
|
4182
|
+
],
|
|
4183
|
+
"compatible_agents": [
|
|
4184
|
+
"generic",
|
|
4185
|
+
"claude",
|
|
4186
|
+
"codex"
|
|
4187
|
+
],
|
|
4188
|
+
"path": "jobs/support/macro-usage-staleness-check.yaml"
|
|
4189
|
+
},
|
|
4190
|
+
{
|
|
4191
|
+
"id": "markdown-aging-inventory-check",
|
|
4192
|
+
"version": 1,
|
|
4193
|
+
"name": "Markdown Aging Inventory Check",
|
|
4194
|
+
"description": "Flags SKUs that have sat unsold past a set number of days so they can be marked down before they become dead stock. Use this if slow-moving inventory has ever tied up cash for months because nobody was tracking how long items had actually been sitting on the shelf.",
|
|
4195
|
+
"category": "retail",
|
|
4196
|
+
"tags": [
|
|
4197
|
+
"retail",
|
|
4198
|
+
"inventory",
|
|
4199
|
+
"markdown",
|
|
4200
|
+
"aging"
|
|
4201
|
+
],
|
|
4202
|
+
"schedule": "0 7 * * 1",
|
|
4203
|
+
"timezone": "UTC",
|
|
4204
|
+
"runner": "shell",
|
|
4205
|
+
"modes": [
|
|
4206
|
+
"script"
|
|
4207
|
+
],
|
|
4208
|
+
"compatible_agents": [
|
|
4209
|
+
"generic",
|
|
4210
|
+
"claude",
|
|
4211
|
+
"codex"
|
|
4212
|
+
],
|
|
4213
|
+
"path": "jobs/retail/markdown-aging-inventory-check.yaml"
|
|
4214
|
+
},
|
|
4215
|
+
{
|
|
4216
|
+
"id": "material-delivery-delay-check",
|
|
4217
|
+
"version": 1,
|
|
4218
|
+
"name": "Material Delivery Delay Check",
|
|
4219
|
+
"description": "Checks ordered construction materials against their expected delivery date and flags anything overdue from the supplier. Use this if a crew has ever stood idle on site because a material delivery was quietly late and nobody chased it up.",
|
|
4220
|
+
"category": "construction",
|
|
4221
|
+
"tags": [
|
|
4222
|
+
"construction",
|
|
4223
|
+
"materials",
|
|
4224
|
+
"delivery",
|
|
4225
|
+
"supplier"
|
|
4226
|
+
],
|
|
4227
|
+
"schedule": "0 7 * * 1-5",
|
|
4228
|
+
"timezone": "UTC",
|
|
4229
|
+
"runner": "shell",
|
|
4230
|
+
"modes": [
|
|
4231
|
+
"script"
|
|
4232
|
+
],
|
|
4233
|
+
"compatible_agents": [
|
|
4234
|
+
"generic",
|
|
4235
|
+
"claude",
|
|
4236
|
+
"codex"
|
|
4237
|
+
],
|
|
4238
|
+
"path": "jobs/construction/material-delivery-delay-check.yaml"
|
|
4239
|
+
},
|
|
3744
4240
|
{
|
|
3745
4241
|
"id": "meal-plan-reminder",
|
|
3746
4242
|
"version": 1,
|
|
@@ -3768,6 +4264,56 @@
|
|
|
3768
4264
|
],
|
|
3769
4265
|
"path": "jobs/personal/meal-plan-reminder.yaml"
|
|
3770
4266
|
},
|
|
4267
|
+
{
|
|
4268
|
+
"id": "medical-equipment-calibration-check",
|
|
4269
|
+
"version": 1,
|
|
4270
|
+
"name": "Medical Equipment Calibration Check",
|
|
4271
|
+
"description": "Checks a tracked list of medical equipment (blood pressure cuffs, glucometers, defibrillators, scales) against calibration due dates and warns before any lapse. Use this if a piece of equipment has ever been found overdue for calibration only when an inspector or auditor flagged it.",
|
|
4272
|
+
"category": "healthcare",
|
|
4273
|
+
"tags": [
|
|
4274
|
+
"compliance",
|
|
4275
|
+
"equipment",
|
|
4276
|
+
"calibration",
|
|
4277
|
+
"healthcare"
|
|
4278
|
+
],
|
|
4279
|
+
"schedule": "0 8 * * 1",
|
|
4280
|
+
"timezone": "UTC",
|
|
4281
|
+
"runner": "shell",
|
|
4282
|
+
"modes": [
|
|
4283
|
+
"script"
|
|
4284
|
+
],
|
|
4285
|
+
"compatible_agents": [
|
|
4286
|
+
"generic",
|
|
4287
|
+
"claude",
|
|
4288
|
+
"codex"
|
|
4289
|
+
],
|
|
4290
|
+
"path": "jobs/healthcare/medical-equipment-calibration-check.yaml"
|
|
4291
|
+
},
|
|
4292
|
+
{
|
|
4293
|
+
"id": "medication-inventory-expiry-check",
|
|
4294
|
+
"version": 1,
|
|
4295
|
+
"name": "Medication Inventory Expiry Check",
|
|
4296
|
+
"description": "Scans the clinic's drug and vaccine inventory log for items expiring soon so they can be used, returned, or discarded before they go bad. Use this if expired medication has ever turned up still on the shelf during an audit.",
|
|
4297
|
+
"category": "veterinary",
|
|
4298
|
+
"tags": [
|
|
4299
|
+
"veterinary",
|
|
4300
|
+
"inventory",
|
|
4301
|
+
"medication",
|
|
4302
|
+
"expiry"
|
|
4303
|
+
],
|
|
4304
|
+
"schedule": "0 8 * * 1",
|
|
4305
|
+
"timezone": "UTC",
|
|
4306
|
+
"runner": "shell",
|
|
4307
|
+
"modes": [
|
|
4308
|
+
"script"
|
|
4309
|
+
],
|
|
4310
|
+
"compatible_agents": [
|
|
4311
|
+
"generic",
|
|
4312
|
+
"claude",
|
|
4313
|
+
"codex"
|
|
4314
|
+
],
|
|
4315
|
+
"path": "jobs/veterinary/medication-inventory-expiry-check.yaml"
|
|
4316
|
+
},
|
|
3771
4317
|
{
|
|
3772
4318
|
"id": "medication-refill-reminder",
|
|
3773
4319
|
"version": 1,
|
|
@@ -3977,6 +4523,31 @@
|
|
|
3977
4523
|
],
|
|
3978
4524
|
"path": "jobs/sales/newly-funded-leads-scout.yaml"
|
|
3979
4525
|
},
|
|
4526
|
+
{
|
|
4527
|
+
"id": "newsletter-unsubscribe-spike-check",
|
|
4528
|
+
"version": 1,
|
|
4529
|
+
"name": "Newsletter Unsubscribe Spike Check",
|
|
4530
|
+
"description": "Checks your most recent newsletter send's unsubscribe rate against a threshold and flags it if it's abnormally high. Use this if a bad subject line or list segment has ever quietly torched your audience before anyone compared it to prior sends.",
|
|
4531
|
+
"category": "marketing",
|
|
4532
|
+
"tags": [
|
|
4533
|
+
"marketing",
|
|
4534
|
+
"newsletter",
|
|
4535
|
+
"unsubscribe",
|
|
4536
|
+
"retention"
|
|
4537
|
+
],
|
|
4538
|
+
"schedule": "0 9 * * 1",
|
|
4539
|
+
"timezone": "UTC",
|
|
4540
|
+
"runner": "shell",
|
|
4541
|
+
"modes": [
|
|
4542
|
+
"script"
|
|
4543
|
+
],
|
|
4544
|
+
"compatible_agents": [
|
|
4545
|
+
"generic",
|
|
4546
|
+
"claude",
|
|
4547
|
+
"codex"
|
|
4548
|
+
],
|
|
4549
|
+
"path": "jobs/marketing/newsletter-unsubscribe-spike-check.yaml"
|
|
4550
|
+
},
|
|
3980
4551
|
{
|
|
3981
4552
|
"id": "offer-expiry-reminder",
|
|
3982
4553
|
"version": 1,
|
|
@@ -4124,6 +4695,30 @@
|
|
|
4124
4695
|
],
|
|
4125
4696
|
"path": "jobs/devops/orphaned-branch-cleanup.yaml"
|
|
4126
4697
|
},
|
|
4698
|
+
{
|
|
4699
|
+
"id": "overdue-library-materials-check",
|
|
4700
|
+
"version": 1,
|
|
4701
|
+
"name": "Overdue Library Materials Check",
|
|
4702
|
+
"description": "Scans checked-out library items and flags anything past its due date by more than a grace period. Use this if overdue textbooks or library books have ever piled up unnoticed until inventory time.",
|
|
4703
|
+
"category": "education",
|
|
4704
|
+
"tags": [
|
|
4705
|
+
"education",
|
|
4706
|
+
"library",
|
|
4707
|
+
"overdue"
|
|
4708
|
+
],
|
|
4709
|
+
"schedule": "0 8 * * *",
|
|
4710
|
+
"timezone": "UTC",
|
|
4711
|
+
"runner": "shell",
|
|
4712
|
+
"modes": [
|
|
4713
|
+
"script"
|
|
4714
|
+
],
|
|
4715
|
+
"compatible_agents": [
|
|
4716
|
+
"generic",
|
|
4717
|
+
"claude",
|
|
4718
|
+
"codex"
|
|
4719
|
+
],
|
|
4720
|
+
"path": "jobs/education/overdue-library-materials-check.yaml"
|
|
4721
|
+
},
|
|
4127
4722
|
{
|
|
4128
4723
|
"id": "overstock-slow-mover-check",
|
|
4129
4724
|
"version": 1,
|
|
@@ -4514,7 +5109,32 @@
|
|
|
4514
5109
|
"policy",
|
|
4515
5110
|
"reminder"
|
|
4516
5111
|
],
|
|
4517
|
-
"schedule": "0 8 * * *",
|
|
5112
|
+
"schedule": "0 8 * * *",
|
|
5113
|
+
"timezone": "UTC",
|
|
5114
|
+
"runner": "shell",
|
|
5115
|
+
"modes": [
|
|
5116
|
+
"script"
|
|
5117
|
+
],
|
|
5118
|
+
"compatible_agents": [
|
|
5119
|
+
"generic",
|
|
5120
|
+
"claude",
|
|
5121
|
+
"codex"
|
|
5122
|
+
],
|
|
5123
|
+
"path": "jobs/insurance/policy-renewal-reminder.yaml"
|
|
5124
|
+
},
|
|
5125
|
+
{
|
|
5126
|
+
"id": "port-congestion-watch",
|
|
5127
|
+
"version": 1,
|
|
5128
|
+
"name": "Port Congestion Watch",
|
|
5129
|
+
"description": "Checks a port's average vessel wait time and flags it once congestion crosses your threshold. Use this if a congested port has ever blown up a shipping timeline before anyone checked the wait times.",
|
|
5130
|
+
"category": "logistics",
|
|
5131
|
+
"tags": [
|
|
5132
|
+
"logistics",
|
|
5133
|
+
"port",
|
|
5134
|
+
"congestion",
|
|
5135
|
+
"shipping"
|
|
5136
|
+
],
|
|
5137
|
+
"schedule": "0 6 * * *",
|
|
4518
5138
|
"timezone": "UTC",
|
|
4519
5139
|
"runner": "shell",
|
|
4520
5140
|
"modes": [
|
|
@@ -4525,7 +5145,7 @@
|
|
|
4525
5145
|
"claude",
|
|
4526
5146
|
"codex"
|
|
4527
5147
|
],
|
|
4528
|
-
"path": "jobs/
|
|
5148
|
+
"path": "jobs/logistics/port-congestion-watch.yaml"
|
|
4529
5149
|
},
|
|
4530
5150
|
{
|
|
4531
5151
|
"id": "portfolio-rebalance-check",
|
|
@@ -4578,6 +5198,31 @@
|
|
|
4578
5198
|
],
|
|
4579
5199
|
"path": "jobs/retail/pos-till-reconciliation-check.yaml"
|
|
4580
5200
|
},
|
|
5201
|
+
{
|
|
5202
|
+
"id": "practice-streak-check",
|
|
5203
|
+
"version": 1,
|
|
5204
|
+
"name": "Skill Practice Streak Check",
|
|
5205
|
+
"description": "Checks a practice log file for a skill you're building (language, instrument, coding kata) and warns if too many days have passed since the last logged session. Use this if a daily practice habit has ever quietly lapsed without you noticing until weeks had gone by.",
|
|
5206
|
+
"category": "learning",
|
|
5207
|
+
"tags": [
|
|
5208
|
+
"learning",
|
|
5209
|
+
"practice",
|
|
5210
|
+
"streak",
|
|
5211
|
+
"habit"
|
|
5212
|
+
],
|
|
5213
|
+
"schedule": "0 20 * * *",
|
|
5214
|
+
"timezone": "America/Los_Angeles",
|
|
5215
|
+
"runner": "shell",
|
|
5216
|
+
"modes": [
|
|
5217
|
+
"script"
|
|
5218
|
+
],
|
|
5219
|
+
"compatible_agents": [
|
|
5220
|
+
"generic",
|
|
5221
|
+
"claude",
|
|
5222
|
+
"codex"
|
|
5223
|
+
],
|
|
5224
|
+
"path": "jobs/learning/practice-streak-check.yaml"
|
|
5225
|
+
},
|
|
4581
5226
|
{
|
|
4582
5227
|
"id": "premium-payment-due-reminder",
|
|
4583
5228
|
"version": 1,
|
|
@@ -4701,6 +5346,33 @@
|
|
|
4701
5346
|
],
|
|
4702
5347
|
"path": "jobs/realestate/property-tax-deadline-reminder.yaml"
|
|
4703
5348
|
},
|
|
5349
|
+
{
|
|
5350
|
+
"id": "proposal-followup-nudge",
|
|
5351
|
+
"version": 1,
|
|
5352
|
+
"name": "Proposal Follow-Up Nudge",
|
|
5353
|
+
"description": "Checks which sent proposals/quotes have had no reply after a set number of days and drafts a short follow-up nudge for each. Use this if a proposal has ever gone quiet after you sent it, and only much later did you realize nobody had followed up.",
|
|
5354
|
+
"category": "sales",
|
|
5355
|
+
"tags": [
|
|
5356
|
+
"sales",
|
|
5357
|
+
"proposals",
|
|
5358
|
+
"follow-up",
|
|
5359
|
+
"outreach"
|
|
5360
|
+
],
|
|
5361
|
+
"schedule": "0 9 * * 1-5",
|
|
5362
|
+
"timezone": "UTC",
|
|
5363
|
+
"runner": "agent-prompt",
|
|
5364
|
+
"modes": [
|
|
5365
|
+
"agent-prompt"
|
|
5366
|
+
],
|
|
5367
|
+
"compatible_agents": [
|
|
5368
|
+
"claude",
|
|
5369
|
+
"codex",
|
|
5370
|
+
"hermes",
|
|
5371
|
+
"openclaw",
|
|
5372
|
+
"generic"
|
|
5373
|
+
],
|
|
5374
|
+
"path": "jobs/sales/proposal-followup-nudge.yaml"
|
|
5375
|
+
},
|
|
4704
5376
|
{
|
|
4705
5377
|
"id": "pto-balance-check",
|
|
4706
5378
|
"version": 1,
|
|
@@ -4725,6 +5397,31 @@
|
|
|
4725
5397
|
],
|
|
4726
5398
|
"path": "jobs/team/pto-balance-check.yaml"
|
|
4727
5399
|
},
|
|
5400
|
+
{
|
|
5401
|
+
"id": "public-comment-period-closing-check",
|
|
5402
|
+
"version": 1,
|
|
5403
|
+
"name": "Public Comment Period Closing Check",
|
|
5404
|
+
"description": "Checks open public comment periods for pending rules or proposals against their close date and flags the ones closing soon. Use this if a comment period has ever expired with barely any public input logged because nobody was tracking the closing date.",
|
|
5405
|
+
"category": "government",
|
|
5406
|
+
"tags": [
|
|
5407
|
+
"government",
|
|
5408
|
+
"public-comment",
|
|
5409
|
+
"compliance",
|
|
5410
|
+
"deadline"
|
|
5411
|
+
],
|
|
5412
|
+
"schedule": "0 8 * * *",
|
|
5413
|
+
"timezone": "UTC",
|
|
5414
|
+
"runner": "shell",
|
|
5415
|
+
"modes": [
|
|
5416
|
+
"script"
|
|
5417
|
+
],
|
|
5418
|
+
"compatible_agents": [
|
|
5419
|
+
"generic",
|
|
5420
|
+
"claude",
|
|
5421
|
+
"codex"
|
|
5422
|
+
],
|
|
5423
|
+
"path": "jobs/government/public-comment-period-closing-check.yaml"
|
|
5424
|
+
},
|
|
4728
5425
|
{
|
|
4729
5426
|
"id": "public-meeting-notice-compliance-check",
|
|
4730
5427
|
"version": 1,
|
|
@@ -5146,6 +5843,31 @@
|
|
|
5146
5843
|
],
|
|
5147
5844
|
"path": "jobs/ecommerce/return-refund-backlog-check.yaml"
|
|
5148
5845
|
},
|
|
5846
|
+
{
|
|
5847
|
+
"id": "returns-processing-backlog-check",
|
|
5848
|
+
"version": 1,
|
|
5849
|
+
"name": "Returns Processing Backlog Check",
|
|
5850
|
+
"description": "Scans the returns log for items that have sat unprocessed longer than your target turnaround time. Use this if returned inventory has ever piled up because nobody was tracking how long items had been waiting to be inspected and restocked or disposed of.",
|
|
5851
|
+
"category": "warehousing",
|
|
5852
|
+
"tags": [
|
|
5853
|
+
"warehousing",
|
|
5854
|
+
"returns",
|
|
5855
|
+
"backlog",
|
|
5856
|
+
"logistics"
|
|
5857
|
+
],
|
|
5858
|
+
"schedule": "0 7 * * *",
|
|
5859
|
+
"timezone": "UTC",
|
|
5860
|
+
"runner": "shell",
|
|
5861
|
+
"modes": [
|
|
5862
|
+
"script"
|
|
5863
|
+
],
|
|
5864
|
+
"compatible_agents": [
|
|
5865
|
+
"generic",
|
|
5866
|
+
"claude",
|
|
5867
|
+
"codex"
|
|
5868
|
+
],
|
|
5869
|
+
"path": "jobs/warehousing/returns-processing-backlog-check.yaml"
|
|
5870
|
+
},
|
|
5149
5871
|
{
|
|
5150
5872
|
"id": "review-request-nudge",
|
|
5151
5873
|
"version": 1,
|
|
@@ -5345,6 +6067,31 @@
|
|
|
5345
6067
|
],
|
|
5346
6068
|
"path": "jobs/personal/screen-time-check.yaml"
|
|
5347
6069
|
},
|
|
6070
|
+
{
|
|
6071
|
+
"id": "seat-utilization-upsell-check",
|
|
6072
|
+
"version": 1,
|
|
6073
|
+
"name": "Seat Utilization Upsell Check",
|
|
6074
|
+
"description": "Flags accounts that are using most or all of their purchased seats, a strong signal they're about to hit a limit. Use this if you've ever found out an account outgrew its plan only after they complained about being locked out of adding a new user.",
|
|
6075
|
+
"category": "growth",
|
|
6076
|
+
"tags": [
|
|
6077
|
+
"growth",
|
|
6078
|
+
"upsell",
|
|
6079
|
+
"seats",
|
|
6080
|
+
"expansion"
|
|
6081
|
+
],
|
|
6082
|
+
"schedule": "0 9 * * 1",
|
|
6083
|
+
"timezone": "UTC",
|
|
6084
|
+
"runner": "shell",
|
|
6085
|
+
"modes": [
|
|
6086
|
+
"script"
|
|
6087
|
+
],
|
|
6088
|
+
"compatible_agents": [
|
|
6089
|
+
"generic",
|
|
6090
|
+
"claude",
|
|
6091
|
+
"codex"
|
|
6092
|
+
],
|
|
6093
|
+
"path": "jobs/growth/seat-utilization-upsell-check.yaml"
|
|
6094
|
+
},
|
|
5348
6095
|
{
|
|
5349
6096
|
"id": "secrets-scan",
|
|
5350
6097
|
"version": 1,
|
|
@@ -5443,6 +6190,31 @@
|
|
|
5443
6190
|
],
|
|
5444
6191
|
"path": "jobs/logistics/shipment-delay-watch.yaml"
|
|
5445
6192
|
},
|
|
6193
|
+
{
|
|
6194
|
+
"id": "shipping-delay-check",
|
|
6195
|
+
"version": 1,
|
|
6196
|
+
"name": "Shipping Delay Check",
|
|
6197
|
+
"description": "Checks shipped orders against their expected delivery date and flags anything running late. Use this if a customer has ever emailed asking \"where's my order\" before you had any idea it was already late.",
|
|
6198
|
+
"category": "ecommerce",
|
|
6199
|
+
"tags": [
|
|
6200
|
+
"ecommerce",
|
|
6201
|
+
"shipping",
|
|
6202
|
+
"fulfillment",
|
|
6203
|
+
"delivery"
|
|
6204
|
+
],
|
|
6205
|
+
"schedule": "0 8 * * *",
|
|
6206
|
+
"timezone": "UTC",
|
|
6207
|
+
"runner": "shell",
|
|
6208
|
+
"modes": [
|
|
6209
|
+
"script"
|
|
6210
|
+
],
|
|
6211
|
+
"compatible_agents": [
|
|
6212
|
+
"generic",
|
|
6213
|
+
"claude",
|
|
6214
|
+
"codex"
|
|
6215
|
+
],
|
|
6216
|
+
"path": "jobs/ecommerce/shipping-delay-check.yaml"
|
|
6217
|
+
},
|
|
5446
6218
|
{
|
|
5447
6219
|
"id": "sitemap-freshness-check",
|
|
5448
6220
|
"version": 1,
|
|
@@ -5569,6 +6341,30 @@
|
|
|
5569
6341
|
],
|
|
5570
6342
|
"path": "jobs/content/social-mentions-watch.yaml"
|
|
5571
6343
|
},
|
|
6344
|
+
{
|
|
6345
|
+
"id": "speaker-confirmation-deadline-check",
|
|
6346
|
+
"version": 1,
|
|
6347
|
+
"name": "Speaker Confirmation Deadline Check",
|
|
6348
|
+
"description": "Checks the speaker/presenter list against each person's confirm-by date and flags anyone who hasn't confirmed yet. Use this if an event has ever gotten close with a session slot still unconfirmed and nobody noticed until the program had to go to print.",
|
|
6349
|
+
"category": "events",
|
|
6350
|
+
"tags": [
|
|
6351
|
+
"events",
|
|
6352
|
+
"speakers",
|
|
6353
|
+
"confirmation"
|
|
6354
|
+
],
|
|
6355
|
+
"schedule": "0 9 * * *",
|
|
6356
|
+
"timezone": "UTC",
|
|
6357
|
+
"runner": "shell",
|
|
6358
|
+
"modes": [
|
|
6359
|
+
"script"
|
|
6360
|
+
],
|
|
6361
|
+
"compatible_agents": [
|
|
6362
|
+
"generic",
|
|
6363
|
+
"claude",
|
|
6364
|
+
"codex"
|
|
6365
|
+
],
|
|
6366
|
+
"path": "jobs/events/speaker-confirmation-deadline-check.yaml"
|
|
6367
|
+
},
|
|
5572
6368
|
{
|
|
5573
6369
|
"id": "sponsor-deliverable-tracker",
|
|
5574
6370
|
"version": 1,
|
|
@@ -5643,6 +6439,31 @@
|
|
|
5643
6439
|
],
|
|
5644
6440
|
"path": "jobs/devops/ssl-cert-expiry-check.yaml"
|
|
5645
6441
|
},
|
|
6442
|
+
{
|
|
6443
|
+
"id": "stablecoin-peg-deviation-watch",
|
|
6444
|
+
"version": 1,
|
|
6445
|
+
"name": "Stablecoin Peg Deviation Watch",
|
|
6446
|
+
"description": "Checks a stablecoin's market price against its $1 peg and alerts when it drifts beyond your threshold. Use this if you've ever held a \"stable\" balance through a depeg event because nothing was watching the price.",
|
|
6447
|
+
"category": "crypto",
|
|
6448
|
+
"tags": [
|
|
6449
|
+
"crypto",
|
|
6450
|
+
"stablecoin",
|
|
6451
|
+
"peg",
|
|
6452
|
+
"price"
|
|
6453
|
+
],
|
|
6454
|
+
"schedule": "*/30 * * * *",
|
|
6455
|
+
"timezone": "UTC",
|
|
6456
|
+
"runner": "shell",
|
|
6457
|
+
"modes": [
|
|
6458
|
+
"script"
|
|
6459
|
+
],
|
|
6460
|
+
"compatible_agents": [
|
|
6461
|
+
"generic",
|
|
6462
|
+
"claude",
|
|
6463
|
+
"codex"
|
|
6464
|
+
],
|
|
6465
|
+
"path": "jobs/crypto/stablecoin-peg-deviation-watch.yaml"
|
|
6466
|
+
},
|
|
5646
6467
|
{
|
|
5647
6468
|
"id": "staff-certification-expiry-check",
|
|
5648
6469
|
"version": 1,
|
|
@@ -5993,6 +6814,31 @@
|
|
|
5993
6814
|
],
|
|
5994
6815
|
"path": "jobs/security/sudo-usage-audit.yaml"
|
|
5995
6816
|
},
|
|
6817
|
+
{
|
|
6818
|
+
"id": "supplier-lead-time-drift-check",
|
|
6819
|
+
"version": 1,
|
|
6820
|
+
"name": "Supplier Lead Time Drift Check",
|
|
6821
|
+
"description": "Compares each supplier's recent delivery lead time against their historical baseline and flags suppliers who have started shipping noticeably slower. Use this if a reorder point has ever gone stale because a supplier quietly started taking longer to deliver than they used to.",
|
|
6822
|
+
"category": "inventory",
|
|
6823
|
+
"tags": [
|
|
6824
|
+
"inventory",
|
|
6825
|
+
"suppliers",
|
|
6826
|
+
"lead-time",
|
|
6827
|
+
"procurement"
|
|
6828
|
+
],
|
|
6829
|
+
"schedule": "0 6 * * 1",
|
|
6830
|
+
"timezone": "UTC",
|
|
6831
|
+
"runner": "shell",
|
|
6832
|
+
"modes": [
|
|
6833
|
+
"script"
|
|
6834
|
+
],
|
|
6835
|
+
"compatible_agents": [
|
|
6836
|
+
"generic",
|
|
6837
|
+
"claude",
|
|
6838
|
+
"codex"
|
|
6839
|
+
],
|
|
6840
|
+
"path": "jobs/inventory/supplier-lead-time-drift-check.yaml"
|
|
6841
|
+
},
|
|
5996
6842
|
{
|
|
5997
6843
|
"id": "supplier-otd-performance-watch",
|
|
5998
6844
|
"version": 1,
|
|
@@ -6018,6 +6864,31 @@
|
|
|
6018
6864
|
],
|
|
6019
6865
|
"path": "jobs/manufacturing/supplier-otd-performance-watch.yaml"
|
|
6020
6866
|
},
|
|
6867
|
+
{
|
|
6868
|
+
"id": "supplier-price-increase-watch",
|
|
6869
|
+
"version": 1,
|
|
6870
|
+
"name": "Supplier Price Increase Watch",
|
|
6871
|
+
"description": "Compares this week's supplier invoice prices against your reference cost sheet and flags ingredients that jumped more than a set percentage. Use this if a supplier has ever quietly raised prices for months before anyone noticed the food cost creeping up.",
|
|
6872
|
+
"category": "restaurant",
|
|
6873
|
+
"tags": [
|
|
6874
|
+
"restaurant",
|
|
6875
|
+
"suppliers",
|
|
6876
|
+
"cost",
|
|
6877
|
+
"invoices"
|
|
6878
|
+
],
|
|
6879
|
+
"schedule": "0 6 * * 1",
|
|
6880
|
+
"timezone": "UTC",
|
|
6881
|
+
"runner": "shell",
|
|
6882
|
+
"modes": [
|
|
6883
|
+
"script"
|
|
6884
|
+
],
|
|
6885
|
+
"compatible_agents": [
|
|
6886
|
+
"generic",
|
|
6887
|
+
"claude",
|
|
6888
|
+
"codex"
|
|
6889
|
+
],
|
|
6890
|
+
"path": "jobs/restaurant/supplier-price-increase-watch.yaml"
|
|
6891
|
+
},
|
|
6021
6892
|
{
|
|
6022
6893
|
"id": "surgery-prep-check",
|
|
6023
6894
|
"version": 1,
|
|
@@ -6344,6 +7215,31 @@
|
|
|
6344
7215
|
],
|
|
6345
7216
|
"path": "jobs/fitness/trainer-session-package-expiry-check.yaml"
|
|
6346
7217
|
},
|
|
7218
|
+
{
|
|
7219
|
+
"id": "transcript-publish-lag-check",
|
|
7220
|
+
"version": 1,
|
|
7221
|
+
"name": "Transcript Publish Lag Check",
|
|
7222
|
+
"description": "Flags episodes that published without a transcript still missing after a grace period. Use this if you've ever promised accessible, searchable transcripts but had episodes quietly sit for weeks without one.",
|
|
7223
|
+
"category": "podcast",
|
|
7224
|
+
"tags": [
|
|
7225
|
+
"podcast",
|
|
7226
|
+
"transcript",
|
|
7227
|
+
"accessibility",
|
|
7228
|
+
"publishing"
|
|
7229
|
+
],
|
|
7230
|
+
"schedule": "0 9 * * 1",
|
|
7231
|
+
"timezone": "UTC",
|
|
7232
|
+
"runner": "shell",
|
|
7233
|
+
"modes": [
|
|
7234
|
+
"script"
|
|
7235
|
+
],
|
|
7236
|
+
"compatible_agents": [
|
|
7237
|
+
"generic",
|
|
7238
|
+
"claude",
|
|
7239
|
+
"codex"
|
|
7240
|
+
],
|
|
7241
|
+
"path": "jobs/podcast/transcript-publish-lag-check.yaml"
|
|
7242
|
+
},
|
|
6347
7243
|
{
|
|
6348
7244
|
"id": "travel-insurance-expiry-check",
|
|
6349
7245
|
"version": 1,
|
|
@@ -6444,6 +7340,31 @@
|
|
|
6444
7340
|
],
|
|
6445
7341
|
"path": "jobs/devops/uptime-ping-check.yaml"
|
|
6446
7342
|
},
|
|
7343
|
+
{
|
|
7344
|
+
"id": "utility-bill-anomaly-check",
|
|
7345
|
+
"version": 1,
|
|
7346
|
+
"name": "Utility Bill Anomaly Check",
|
|
7347
|
+
"description": "Compares each newly logged utility bill against your recent average for that utility and flags a reading that spikes well beyond normal. Use this if a bill has ever jumped because of a hidden leak or a device left running, and you only found out once the bill arrived.",
|
|
7348
|
+
"category": "home",
|
|
7349
|
+
"tags": [
|
|
7350
|
+
"home",
|
|
7351
|
+
"utilities",
|
|
7352
|
+
"budgeting",
|
|
7353
|
+
"anomaly"
|
|
7354
|
+
],
|
|
7355
|
+
"schedule": "0 9 5 * *",
|
|
7356
|
+
"timezone": "America/Los_Angeles",
|
|
7357
|
+
"runner": "shell",
|
|
7358
|
+
"modes": [
|
|
7359
|
+
"script"
|
|
7360
|
+
],
|
|
7361
|
+
"compatible_agents": [
|
|
7362
|
+
"generic",
|
|
7363
|
+
"claude",
|
|
7364
|
+
"codex"
|
|
7365
|
+
],
|
|
7366
|
+
"path": "jobs/home/utility-bill-anomaly-check.yaml"
|
|
7367
|
+
},
|
|
6447
7368
|
{
|
|
6448
7369
|
"id": "vehicle-inspection-due-check",
|
|
6449
7370
|
"version": 1,
|
|
@@ -6663,6 +7584,31 @@
|
|
|
6663
7584
|
],
|
|
6664
7585
|
"path": "jobs/crypto/wallet-balance-watch.yaml"
|
|
6665
7586
|
},
|
|
7587
|
+
{
|
|
7588
|
+
"id": "warranty-claim-deadline-check",
|
|
7589
|
+
"version": 1,
|
|
7590
|
+
"name": "Warranty Claim Deadline Check",
|
|
7591
|
+
"description": "Checks open warranty claims against the manufacturer's submission deadline and flags any about to expire unfiled. Use this if a claim has ever gone unpaid because it was submitted a day past the manufacturer's filing window.",
|
|
7592
|
+
"category": "automotive",
|
|
7593
|
+
"tags": [
|
|
7594
|
+
"automotive",
|
|
7595
|
+
"warranty",
|
|
7596
|
+
"claims",
|
|
7597
|
+
"deadline"
|
|
7598
|
+
],
|
|
7599
|
+
"schedule": "0 8 * * 1-5",
|
|
7600
|
+
"timezone": "UTC",
|
|
7601
|
+
"runner": "shell",
|
|
7602
|
+
"modes": [
|
|
7603
|
+
"script"
|
|
7604
|
+
],
|
|
7605
|
+
"compatible_agents": [
|
|
7606
|
+
"generic",
|
|
7607
|
+
"claude",
|
|
7608
|
+
"codex"
|
|
7609
|
+
],
|
|
7610
|
+
"path": "jobs/automotive/warranty-claim-deadline-check.yaml"
|
|
7611
|
+
},
|
|
6666
7612
|
{
|
|
6667
7613
|
"id": "warranty-expiry-reminder",
|
|
6668
7614
|
"version": 1,
|