@wonsukchoi/crondex 0.7.0 → 0.9.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 +58 -128
- package/bin/crondex.js +44 -0
- package/catalog.json +1298 -14
- package/jobs/agriculture/equipment-maintenance-due-reminder.yaml +36 -0
- package/jobs/agriculture/irrigation-schedule-check.yaml +41 -0
- package/jobs/agriculture/weather-frost-alert.yaml +41 -0
- package/jobs/construction/change-order-approval-reminder.yaml +31 -0
- package/jobs/creator/crosspost-lag-check.yaml +35 -0
- package/jobs/crypto/gas-price-alert.yaml +34 -0
- package/jobs/crypto/smart-contract-upgrade-watch.yaml +49 -0
- package/jobs/crypto/wallet-balance-watch.yaml +37 -0
- package/jobs/devops/github-issue-triage.yaml +38 -0
- package/jobs/ecommerce/abandoned-cart-recovery-check.yaml +38 -0
- package/jobs/ecommerce/low-stock-reorder-alert.yaml +33 -0
- package/jobs/ecommerce/return-refund-backlog-check.yaml +29 -0
- package/jobs/education/report-card-deadline-reminder.yaml +27 -0
- package/jobs/events/event-budget-overrun-check.yaml +31 -0
- package/jobs/finance/subscription-price-hike-watch.yaml +44 -0
- package/jobs/fleet/vehicle-registration-expiry-check.yaml +31 -0
- package/jobs/gaming/game-patch-notes-watch.yaml +39 -0
- package/jobs/gaming/stream-schedule-reminder.yaml +30 -0
- package/jobs/gaming/subscriber-churn-watch.yaml +39 -0
- package/jobs/healthcare/appointment-no-show-follow-up.yaml +32 -0
- package/jobs/healthcare/license-credential-expiry-check.yaml +35 -0
- package/jobs/healthcare/patient-recall-reminder.yaml +34 -0
- package/jobs/hiring/offer-expiry-reminder.yaml +31 -0
- package/jobs/hospitality/health-inspection-due-reminder.yaml +32 -0
- package/jobs/hr/benefits-enrollment-deadline-reminder.yaml +34 -0
- package/jobs/hr/new-hire-paperwork-check.yaml +35 -0
- package/jobs/hr/payroll-run-reminder.yaml +30 -0
- package/jobs/insurance/claim-status-check.yaml +30 -0
- package/jobs/insurance/coverage-gap-audit.yaml +37 -0
- package/jobs/insurance/policy-renewal-reminder.yaml +35 -0
- package/jobs/inventory/expiring-perishable-stock-check.yaml +24 -0
- package/jobs/investing/dividend-payment-tracker.yaml +34 -0
- package/jobs/legal/nda-expiry-check.yaml +31 -0
- package/jobs/logistics/freight-rate-spike-watch.yaml +38 -0
- package/jobs/manufacturing/preventive-maintenance-due-check.yaml +31 -0
- package/jobs/marketing/competitor-page-diff-watch.yaml +48 -0
- package/jobs/marketing/seo-rank-drop-watch.yaml +38 -0
- package/jobs/nonprofit/volunteer-hours-shortfall-check.yaml +30 -0
- package/jobs/personal/end-of-day-wrap-message.yaml +32 -0
- package/jobs/personal/new-restaurant-roundup.yaml +35 -0
- package/jobs/podcast/guest-followup-reminder.yaml +31 -0
- package/jobs/productivity/morning-briefing-digest.yaml +42 -0
- package/jobs/productivity/recurring-task-queue-reset.yaml +37 -0
- package/jobs/realestate/rent-payment-late-check.yaml +23 -0
- package/jobs/restaurant/health-inspection-prep-reminder.yaml +29 -0
- package/jobs/restaurant/inventory-waste-log-review.yaml +32 -0
- package/jobs/restaurant/reservation-noshow-deposit-check.yaml +32 -0
- package/jobs/sales/newly-funded-leads-scout.yaml +44 -0
- package/jobs/sales/quota-attainment-check.yaml +33 -0
- package/jobs/support/sla-breach-warning.yaml +31 -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": 182,
|
|
5
5
|
"jobs": [
|
|
6
6
|
{
|
|
7
7
|
"id": "1on1-prep-reminder",
|
|
@@ -51,6 +51,33 @@
|
|
|
51
51
|
],
|
|
52
52
|
"path": "jobs/security/2fa-enrollment-audit.yaml"
|
|
53
53
|
},
|
|
54
|
+
{
|
|
55
|
+
"id": "abandoned-cart-recovery-check",
|
|
56
|
+
"version": 1,
|
|
57
|
+
"name": "Abandoned Cart Recovery Check",
|
|
58
|
+
"description": "Reviews carts abandoned in the last day and drafts recovery emails for ones above a minimum value, instead of relying only on your platform's generic auto-recovery flow. Use this if you've ever suspected your default abandoned-cart email is too generic to convert high-value carts.",
|
|
59
|
+
"category": "ecommerce",
|
|
60
|
+
"tags": [
|
|
61
|
+
"ecommerce",
|
|
62
|
+
"cart-abandonment",
|
|
63
|
+
"recovery",
|
|
64
|
+
"sales"
|
|
65
|
+
],
|
|
66
|
+
"schedule": "0 10 * * *",
|
|
67
|
+
"timezone": "UTC",
|
|
68
|
+
"runner": "agent-prompt",
|
|
69
|
+
"modes": [
|
|
70
|
+
"agent-prompt"
|
|
71
|
+
],
|
|
72
|
+
"compatible_agents": [
|
|
73
|
+
"claude",
|
|
74
|
+
"codex",
|
|
75
|
+
"hermes",
|
|
76
|
+
"openclaw",
|
|
77
|
+
"generic"
|
|
78
|
+
],
|
|
79
|
+
"path": "jobs/ecommerce/abandoned-cart-recovery-check.yaml"
|
|
80
|
+
},
|
|
54
81
|
{
|
|
55
82
|
"id": "ad-spend-pacing-check",
|
|
56
83
|
"version": 1,
|
|
@@ -101,6 +128,33 @@
|
|
|
101
128
|
],
|
|
102
129
|
"path": "jobs/devops/api-rate-limit-check.yaml"
|
|
103
130
|
},
|
|
131
|
+
{
|
|
132
|
+
"id": "appointment-no-show-follow-up",
|
|
133
|
+
"version": 1,
|
|
134
|
+
"name": "Appointment No-Show Follow-Up",
|
|
135
|
+
"description": "Reviews yesterday's no-show appointments and drafts a follow-up message offering to rebook. Use this if you've ever let a missed appointment go quiet and lost the patient/client entirely instead of just rebooking them.",
|
|
136
|
+
"category": "healthcare",
|
|
137
|
+
"tags": [
|
|
138
|
+
"appointments",
|
|
139
|
+
"no-show",
|
|
140
|
+
"patients",
|
|
141
|
+
"scheduling"
|
|
142
|
+
],
|
|
143
|
+
"schedule": "0 9 * * *",
|
|
144
|
+
"timezone": "America/New_York",
|
|
145
|
+
"runner": "agent-prompt",
|
|
146
|
+
"modes": [
|
|
147
|
+
"agent-prompt"
|
|
148
|
+
],
|
|
149
|
+
"compatible_agents": [
|
|
150
|
+
"claude",
|
|
151
|
+
"codex",
|
|
152
|
+
"hermes",
|
|
153
|
+
"openclaw",
|
|
154
|
+
"generic"
|
|
155
|
+
],
|
|
156
|
+
"path": "jobs/healthcare/appointment-no-show-follow-up.yaml"
|
|
157
|
+
},
|
|
104
158
|
{
|
|
105
159
|
"id": "assignment-grading-backlog-check",
|
|
106
160
|
"version": 1,
|
|
@@ -175,6 +229,33 @@
|
|
|
175
229
|
],
|
|
176
230
|
"path": "jobs/devops/backup-reminder.yaml"
|
|
177
231
|
},
|
|
232
|
+
{
|
|
233
|
+
"id": "benefits-enrollment-deadline-reminder",
|
|
234
|
+
"version": 1,
|
|
235
|
+
"name": "Benefits Open Enrollment Deadline Reminder",
|
|
236
|
+
"description": "Counts down to the open-enrollment deadline and flags employees who haven't submitted elections yet. Use this if open enrollment has ever closed with people accidentally defaulting to no coverage or last year's plan.",
|
|
237
|
+
"category": "hr",
|
|
238
|
+
"tags": [
|
|
239
|
+
"hr",
|
|
240
|
+
"benefits",
|
|
241
|
+
"enrollment",
|
|
242
|
+
"deadline"
|
|
243
|
+
],
|
|
244
|
+
"schedule": "0 9 * * *",
|
|
245
|
+
"timezone": "UTC",
|
|
246
|
+
"runner": "agent-prompt",
|
|
247
|
+
"modes": [
|
|
248
|
+
"agent-prompt"
|
|
249
|
+
],
|
|
250
|
+
"compatible_agents": [
|
|
251
|
+
"claude",
|
|
252
|
+
"codex",
|
|
253
|
+
"hermes",
|
|
254
|
+
"openclaw",
|
|
255
|
+
"generic"
|
|
256
|
+
],
|
|
257
|
+
"path": "jobs/hr/benefits-enrollment-deadline-reminder.yaml"
|
|
258
|
+
},
|
|
178
259
|
{
|
|
179
260
|
"id": "bill-due-reminder",
|
|
180
261
|
"version": 1,
|
|
@@ -444,6 +525,30 @@
|
|
|
444
525
|
],
|
|
445
526
|
"path": "jobs/security/certificate-transparency-watch.yaml"
|
|
446
527
|
},
|
|
528
|
+
{
|
|
529
|
+
"id": "change-order-approval-reminder",
|
|
530
|
+
"version": 1,
|
|
531
|
+
"name": "Change Order Approval Reminder",
|
|
532
|
+
"description": "Flags change orders that have been waiting on client sign-off too long. Use this if work has ever stalled, or gone ahead unapproved, because a change order sat in someone's inbox for weeks.",
|
|
533
|
+
"category": "construction",
|
|
534
|
+
"tags": [
|
|
535
|
+
"construction",
|
|
536
|
+
"change-orders",
|
|
537
|
+
"approvals"
|
|
538
|
+
],
|
|
539
|
+
"schedule": "0 8 * * 1-5",
|
|
540
|
+
"timezone": "UTC",
|
|
541
|
+
"runner": "shell",
|
|
542
|
+
"modes": [
|
|
543
|
+
"script"
|
|
544
|
+
],
|
|
545
|
+
"compatible_agents": [
|
|
546
|
+
"generic",
|
|
547
|
+
"claude",
|
|
548
|
+
"codex"
|
|
549
|
+
],
|
|
550
|
+
"path": "jobs/construction/change-order-approval-reminder.yaml"
|
|
551
|
+
},
|
|
447
552
|
{
|
|
448
553
|
"id": "changelog-digest",
|
|
449
554
|
"version": 1,
|
|
@@ -523,6 +628,60 @@
|
|
|
523
628
|
],
|
|
524
629
|
"path": "jobs/devops/ci-build-time-regression-watch.yaml"
|
|
525
630
|
},
|
|
631
|
+
{
|
|
632
|
+
"id": "claim-status-check",
|
|
633
|
+
"version": 1,
|
|
634
|
+
"name": "Open Claim Status Check",
|
|
635
|
+
"description": "Checks the status of any open insurance claims and flags ones that haven't moved in a while. Use this if a claim has ever gone quiet for weeks because nobody was following up with the adjuster.",
|
|
636
|
+
"category": "insurance",
|
|
637
|
+
"tags": [
|
|
638
|
+
"insurance",
|
|
639
|
+
"claims",
|
|
640
|
+
"follow-up"
|
|
641
|
+
],
|
|
642
|
+
"schedule": "0 9 * * 1",
|
|
643
|
+
"timezone": "UTC",
|
|
644
|
+
"runner": "agent-prompt",
|
|
645
|
+
"modes": [
|
|
646
|
+
"agent-prompt"
|
|
647
|
+
],
|
|
648
|
+
"compatible_agents": [
|
|
649
|
+
"claude",
|
|
650
|
+
"codex",
|
|
651
|
+
"hermes",
|
|
652
|
+
"openclaw",
|
|
653
|
+
"generic"
|
|
654
|
+
],
|
|
655
|
+
"path": "jobs/insurance/claim-status-check.yaml"
|
|
656
|
+
},
|
|
657
|
+
{
|
|
658
|
+
"id": "competitor-page-diff-watch",
|
|
659
|
+
"version": 1,
|
|
660
|
+
"name": "Competitor Page Diff Watch",
|
|
661
|
+
"description": "Snapshots a competitor's pricing or landing page and diffs it against the last snapshot, turning any real change into a short action memo instead of a wall of markup diff. Use this if a competitor has ever changed pricing or repositioned a page and you found out from a customer instead of noticing it yourself.",
|
|
662
|
+
"category": "marketing",
|
|
663
|
+
"tags": [
|
|
664
|
+
"competitor",
|
|
665
|
+
"monitoring",
|
|
666
|
+
"pricing",
|
|
667
|
+
"marketing"
|
|
668
|
+
],
|
|
669
|
+
"schedule": "0 9 * * 1",
|
|
670
|
+
"timezone": "UTC",
|
|
671
|
+
"runner": "hybrid",
|
|
672
|
+
"modes": [
|
|
673
|
+
"script",
|
|
674
|
+
"agent-prompt"
|
|
675
|
+
],
|
|
676
|
+
"compatible_agents": [
|
|
677
|
+
"claude",
|
|
678
|
+
"codex",
|
|
679
|
+
"hermes",
|
|
680
|
+
"openclaw",
|
|
681
|
+
"generic"
|
|
682
|
+
],
|
|
683
|
+
"path": "jobs/marketing/competitor-page-diff-watch.yaml"
|
|
684
|
+
},
|
|
526
685
|
{
|
|
527
686
|
"id": "conference-cfp-deadline-reminder",
|
|
528
687
|
"version": 1,
|
|
@@ -650,6 +809,59 @@
|
|
|
650
809
|
],
|
|
651
810
|
"path": "jobs/learning/course-progress-checkin.yaml"
|
|
652
811
|
},
|
|
812
|
+
{
|
|
813
|
+
"id": "coverage-gap-audit",
|
|
814
|
+
"version": 1,
|
|
815
|
+
"name": "Coverage Gap Audit",
|
|
816
|
+
"description": "Compares your current insurance policies against a standard coverage checklist for your situation and flags anything missing or underinsured. Use this if you've ever added a policy for one specific thing and never circled back to check the overall picture still made sense.",
|
|
817
|
+
"category": "insurance",
|
|
818
|
+
"tags": [
|
|
819
|
+
"insurance",
|
|
820
|
+
"coverage",
|
|
821
|
+
"audit",
|
|
822
|
+
"risk"
|
|
823
|
+
],
|
|
824
|
+
"schedule": "0 9 1 1,7 *",
|
|
825
|
+
"timezone": "UTC",
|
|
826
|
+
"runner": "agent-prompt",
|
|
827
|
+
"modes": [
|
|
828
|
+
"agent-prompt"
|
|
829
|
+
],
|
|
830
|
+
"compatible_agents": [
|
|
831
|
+
"claude",
|
|
832
|
+
"codex",
|
|
833
|
+
"hermes",
|
|
834
|
+
"openclaw",
|
|
835
|
+
"generic"
|
|
836
|
+
],
|
|
837
|
+
"path": "jobs/insurance/coverage-gap-audit.yaml"
|
|
838
|
+
},
|
|
839
|
+
{
|
|
840
|
+
"id": "crosspost-lag-check",
|
|
841
|
+
"version": 1,
|
|
842
|
+
"name": "Crosspost Lag Check",
|
|
843
|
+
"description": "Checks that content published on your primary platform actually got mirrored to your other channels. Use this if a video or post has ever gone up on YouTube and just never made it to the other platforms because crossposting was manual and someone forgot.",
|
|
844
|
+
"category": "creator",
|
|
845
|
+
"tags": [
|
|
846
|
+
"content",
|
|
847
|
+
"crosspost",
|
|
848
|
+
"publishing"
|
|
849
|
+
],
|
|
850
|
+
"schedule": "0 10 * * *",
|
|
851
|
+
"timezone": "UTC",
|
|
852
|
+
"runner": "agent-prompt",
|
|
853
|
+
"modes": [
|
|
854
|
+
"agent-prompt"
|
|
855
|
+
],
|
|
856
|
+
"compatible_agents": [
|
|
857
|
+
"claude",
|
|
858
|
+
"codex",
|
|
859
|
+
"hermes",
|
|
860
|
+
"openclaw",
|
|
861
|
+
"generic"
|
|
862
|
+
],
|
|
863
|
+
"path": "jobs/creator/crosspost-lag-check.yaml"
|
|
864
|
+
},
|
|
653
865
|
{
|
|
654
866
|
"id": "crypto-price-alert",
|
|
655
867
|
"version": 1,
|
|
@@ -902,6 +1114,30 @@
|
|
|
902
1114
|
],
|
|
903
1115
|
"path": "jobs/devops/disk-space-check.yaml"
|
|
904
1116
|
},
|
|
1117
|
+
{
|
|
1118
|
+
"id": "dividend-payment-tracker",
|
|
1119
|
+
"version": 1,
|
|
1120
|
+
"name": "Dividend Payment Tracker",
|
|
1121
|
+
"description": "Checks that an expected dividend payment actually landed by its scheduled pay date. Use this if a dividend has ever quietly not shown up and it took weeks to notice something was wrong with a holding or broker.",
|
|
1122
|
+
"category": "investing",
|
|
1123
|
+
"tags": [
|
|
1124
|
+
"investing",
|
|
1125
|
+
"dividends",
|
|
1126
|
+
"income"
|
|
1127
|
+
],
|
|
1128
|
+
"schedule": "0 9 * * *",
|
|
1129
|
+
"timezone": "UTC",
|
|
1130
|
+
"runner": "shell",
|
|
1131
|
+
"modes": [
|
|
1132
|
+
"script"
|
|
1133
|
+
],
|
|
1134
|
+
"compatible_agents": [
|
|
1135
|
+
"generic",
|
|
1136
|
+
"claude",
|
|
1137
|
+
"codex"
|
|
1138
|
+
],
|
|
1139
|
+
"path": "jobs/investing/dividend-payment-tracker.yaml"
|
|
1140
|
+
},
|
|
905
1141
|
{
|
|
906
1142
|
"id": "dns-record-check",
|
|
907
1143
|
"version": 1,
|
|
@@ -974,6 +1210,33 @@
|
|
|
974
1210
|
],
|
|
975
1211
|
"path": "jobs/marketing/email-deliverability-check.yaml"
|
|
976
1212
|
},
|
|
1213
|
+
{
|
|
1214
|
+
"id": "end-of-day-wrap-message",
|
|
1215
|
+
"version": 1,
|
|
1216
|
+
"name": "End-of-Day Wrap Message",
|
|
1217
|
+
"description": "Fires around the end of your work calendar and drafts a short wrap-up: what got done today, what's carrying over to tomorrow. Use this if you close your laptop most days without a clear sense of what actually happened or what's still pending.",
|
|
1218
|
+
"category": "personal",
|
|
1219
|
+
"tags": [
|
|
1220
|
+
"reflection",
|
|
1221
|
+
"end-of-day",
|
|
1222
|
+
"productivity",
|
|
1223
|
+
"wrap-up"
|
|
1224
|
+
],
|
|
1225
|
+
"schedule": "0 18 * * 1-5",
|
|
1226
|
+
"timezone": "America/Los_Angeles",
|
|
1227
|
+
"runner": "agent-prompt",
|
|
1228
|
+
"modes": [
|
|
1229
|
+
"agent-prompt"
|
|
1230
|
+
],
|
|
1231
|
+
"compatible_agents": [
|
|
1232
|
+
"claude",
|
|
1233
|
+
"codex",
|
|
1234
|
+
"hermes",
|
|
1235
|
+
"openclaw",
|
|
1236
|
+
"generic"
|
|
1237
|
+
],
|
|
1238
|
+
"path": "jobs/personal/end-of-day-wrap-message.yaml"
|
|
1239
|
+
},
|
|
977
1240
|
{
|
|
978
1241
|
"id": "engagement-drop-watch",
|
|
979
1242
|
"version": 1,
|
|
@@ -1048,6 +1311,31 @@
|
|
|
1048
1311
|
],
|
|
1049
1312
|
"path": "jobs/podcast/episode-publish-gap-check.yaml"
|
|
1050
1313
|
},
|
|
1314
|
+
{
|
|
1315
|
+
"id": "equipment-maintenance-due-reminder",
|
|
1316
|
+
"version": 1,
|
|
1317
|
+
"name": "Farm Equipment Maintenance Due Reminder",
|
|
1318
|
+
"description": "Tracks engine hours or mileage against manufacturer service intervals for tractors and other equipment, and warns when service is coming due. Use this if equipment has ever broken down mid-season because a service interval slipped by.",
|
|
1319
|
+
"category": "agriculture",
|
|
1320
|
+
"tags": [
|
|
1321
|
+
"equipment",
|
|
1322
|
+
"maintenance",
|
|
1323
|
+
"tractor",
|
|
1324
|
+
"service"
|
|
1325
|
+
],
|
|
1326
|
+
"schedule": "0 6 * * 1",
|
|
1327
|
+
"timezone": "UTC",
|
|
1328
|
+
"runner": "shell",
|
|
1329
|
+
"modes": [
|
|
1330
|
+
"script"
|
|
1331
|
+
],
|
|
1332
|
+
"compatible_agents": [
|
|
1333
|
+
"generic",
|
|
1334
|
+
"claude",
|
|
1335
|
+
"codex"
|
|
1336
|
+
],
|
|
1337
|
+
"path": "jobs/agriculture/equipment-maintenance-due-reminder.yaml"
|
|
1338
|
+
},
|
|
1051
1339
|
{
|
|
1052
1340
|
"id": "error-rate-spike-watch",
|
|
1053
1341
|
"version": 1,
|
|
@@ -1075,6 +1363,30 @@
|
|
|
1075
1363
|
],
|
|
1076
1364
|
"path": "jobs/devops/error-rate-spike-watch.yaml"
|
|
1077
1365
|
},
|
|
1366
|
+
{
|
|
1367
|
+
"id": "event-budget-overrun-check",
|
|
1368
|
+
"version": 1,
|
|
1369
|
+
"name": "Event Budget Overrun Check",
|
|
1370
|
+
"description": "Compares committed spend so far against the event budget and flags overrun risk. Use this if an event has ever come in over budget because nobody totaled up the vendor contracts until after the fact.",
|
|
1371
|
+
"category": "events",
|
|
1372
|
+
"tags": [
|
|
1373
|
+
"events",
|
|
1374
|
+
"budget",
|
|
1375
|
+
"planning"
|
|
1376
|
+
],
|
|
1377
|
+
"schedule": "0 9 * * 1",
|
|
1378
|
+
"timezone": "UTC",
|
|
1379
|
+
"runner": "shell",
|
|
1380
|
+
"modes": [
|
|
1381
|
+
"script"
|
|
1382
|
+
],
|
|
1383
|
+
"compatible_agents": [
|
|
1384
|
+
"generic",
|
|
1385
|
+
"claude",
|
|
1386
|
+
"codex"
|
|
1387
|
+
],
|
|
1388
|
+
"path": "jobs/events/event-budget-overrun-check.yaml"
|
|
1389
|
+
},
|
|
1078
1390
|
{
|
|
1079
1391
|
"id": "expiring-api-key-rotation",
|
|
1080
1392
|
"version": 1,
|
|
@@ -1099,6 +1411,30 @@
|
|
|
1099
1411
|
],
|
|
1100
1412
|
"path": "jobs/security/expiring-api-key-rotation.yaml"
|
|
1101
1413
|
},
|
|
1414
|
+
{
|
|
1415
|
+
"id": "expiring-perishable-stock-check",
|
|
1416
|
+
"version": 1,
|
|
1417
|
+
"name": "Expiring Perishable Stock Check",
|
|
1418
|
+
"description": "Flags perishable inventory nearing its expiry date so it can be sold, discounted, or used before it's wasted. Use this if stock has ever expired on the shelf because nobody was tracking dates until it was too late.",
|
|
1419
|
+
"category": "inventory",
|
|
1420
|
+
"tags": [
|
|
1421
|
+
"inventory",
|
|
1422
|
+
"perishables",
|
|
1423
|
+
"waste"
|
|
1424
|
+
],
|
|
1425
|
+
"schedule": "0 6 * * *",
|
|
1426
|
+
"timezone": "UTC",
|
|
1427
|
+
"runner": "shell",
|
|
1428
|
+
"modes": [
|
|
1429
|
+
"script"
|
|
1430
|
+
],
|
|
1431
|
+
"compatible_agents": [
|
|
1432
|
+
"generic",
|
|
1433
|
+
"claude",
|
|
1434
|
+
"codex"
|
|
1435
|
+
],
|
|
1436
|
+
"path": "jobs/inventory/expiring-perishable-stock-check.yaml"
|
|
1437
|
+
},
|
|
1102
1438
|
{
|
|
1103
1439
|
"id": "failed-login-watch",
|
|
1104
1440
|
"version": 1,
|
|
@@ -1246,18 +1582,44 @@
|
|
|
1246
1582
|
"path": "jobs/hospitality/food-safety-temp-log-check.yaml"
|
|
1247
1583
|
},
|
|
1248
1584
|
{
|
|
1249
|
-
"id": "
|
|
1585
|
+
"id": "freight-rate-spike-watch",
|
|
1250
1586
|
"version": 1,
|
|
1251
|
-
"name": "
|
|
1252
|
-
"description": "
|
|
1253
|
-
"category": "
|
|
1587
|
+
"name": "Freight Rate Spike Watch",
|
|
1588
|
+
"description": "Checks a freight lane's current quoted rate against your baseline and flags a spike. Use this if a shipping rate has ever quietly doubled and only got noticed when the invoice came in.",
|
|
1589
|
+
"category": "logistics",
|
|
1254
1590
|
"tags": [
|
|
1255
|
-
"
|
|
1256
|
-
"
|
|
1257
|
-
"
|
|
1258
|
-
"loyalty"
|
|
1591
|
+
"logistics",
|
|
1592
|
+
"freight",
|
|
1593
|
+
"rates"
|
|
1259
1594
|
],
|
|
1260
|
-
"schedule": "0
|
|
1595
|
+
"schedule": "0 7 * * 1",
|
|
1596
|
+
"timezone": "UTC",
|
|
1597
|
+
"runner": "agent-prompt",
|
|
1598
|
+
"modes": [
|
|
1599
|
+
"agent-prompt"
|
|
1600
|
+
],
|
|
1601
|
+
"compatible_agents": [
|
|
1602
|
+
"claude",
|
|
1603
|
+
"codex",
|
|
1604
|
+
"hermes",
|
|
1605
|
+
"openclaw",
|
|
1606
|
+
"generic"
|
|
1607
|
+
],
|
|
1608
|
+
"path": "jobs/logistics/freight-rate-spike-watch.yaml"
|
|
1609
|
+
},
|
|
1610
|
+
{
|
|
1611
|
+
"id": "frequent-flyer-miles-expiry",
|
|
1612
|
+
"version": 1,
|
|
1613
|
+
"name": "Frequent Flyer Miles Expiry Check",
|
|
1614
|
+
"description": "Warns you before frequent flyer miles or points expire from inactivity. Use this if you've ever lost a stash of miles just because you didn't fly or transact on the account in time.",
|
|
1615
|
+
"category": "travel",
|
|
1616
|
+
"tags": [
|
|
1617
|
+
"travel",
|
|
1618
|
+
"miles",
|
|
1619
|
+
"points",
|
|
1620
|
+
"loyalty"
|
|
1621
|
+
],
|
|
1622
|
+
"schedule": "0 9 1 * *",
|
|
1261
1623
|
"timezone": "UTC",
|
|
1262
1624
|
"runner": "shell",
|
|
1263
1625
|
"modes": [
|
|
@@ -1320,6 +1682,86 @@
|
|
|
1320
1682
|
],
|
|
1321
1683
|
"path": "jobs/finance/fx-rate-watch.yaml"
|
|
1322
1684
|
},
|
|
1685
|
+
{
|
|
1686
|
+
"id": "game-patch-notes-watch",
|
|
1687
|
+
"version": 1,
|
|
1688
|
+
"name": "Game Patch Notes Watch",
|
|
1689
|
+
"description": "Checks whether any game you regularly stream or play competitively has shipped a new patch, and summarizes what changed. Use this if you've ever gone live only to discover mid-stream that a balance patch dropped and your strategies are stale.",
|
|
1690
|
+
"category": "gaming",
|
|
1691
|
+
"tags": [
|
|
1692
|
+
"gaming",
|
|
1693
|
+
"patch-notes",
|
|
1694
|
+
"updates",
|
|
1695
|
+
"competitive"
|
|
1696
|
+
],
|
|
1697
|
+
"schedule": "0 8 * * *",
|
|
1698
|
+
"timezone": "UTC",
|
|
1699
|
+
"runner": "hybrid",
|
|
1700
|
+
"modes": [
|
|
1701
|
+
"script",
|
|
1702
|
+
"agent-prompt"
|
|
1703
|
+
],
|
|
1704
|
+
"compatible_agents": [
|
|
1705
|
+
"claude",
|
|
1706
|
+
"codex",
|
|
1707
|
+
"hermes",
|
|
1708
|
+
"openclaw",
|
|
1709
|
+
"generic"
|
|
1710
|
+
],
|
|
1711
|
+
"path": "jobs/gaming/game-patch-notes-watch.yaml"
|
|
1712
|
+
},
|
|
1713
|
+
{
|
|
1714
|
+
"id": "gas-price-alert",
|
|
1715
|
+
"version": 1,
|
|
1716
|
+
"name": "Gas Price Alert",
|
|
1717
|
+
"description": "Checks current network gas price and alerts when it drops below your target, so you can time a planned transaction instead of overpaying during a busy window. Use this if you've ever paid 5x normal gas because you executed at a random moment instead of waiting.",
|
|
1718
|
+
"category": "crypto",
|
|
1719
|
+
"tags": [
|
|
1720
|
+
"crypto",
|
|
1721
|
+
"gas",
|
|
1722
|
+
"ethereum",
|
|
1723
|
+
"blockchain"
|
|
1724
|
+
],
|
|
1725
|
+
"schedule": "*/15 * * * *",
|
|
1726
|
+
"timezone": "UTC",
|
|
1727
|
+
"runner": "shell",
|
|
1728
|
+
"modes": [
|
|
1729
|
+
"script"
|
|
1730
|
+
],
|
|
1731
|
+
"compatible_agents": [
|
|
1732
|
+
"generic",
|
|
1733
|
+
"claude",
|
|
1734
|
+
"codex"
|
|
1735
|
+
],
|
|
1736
|
+
"path": "jobs/crypto/gas-price-alert.yaml"
|
|
1737
|
+
},
|
|
1738
|
+
{
|
|
1739
|
+
"id": "github-issue-triage",
|
|
1740
|
+
"version": 1,
|
|
1741
|
+
"name": "GitHub Issue Triage",
|
|
1742
|
+
"description": "Reviews new GitHub issues opened since the last run and sorts them into urgent/normal/low-priority with a suggested label and one-line reason. Use this if issues pile up untriaged and the urgent ones get lost in the noise until someone stumbles on them days later.",
|
|
1743
|
+
"category": "devops",
|
|
1744
|
+
"tags": [
|
|
1745
|
+
"github",
|
|
1746
|
+
"issues",
|
|
1747
|
+
"triage",
|
|
1748
|
+
"devops"
|
|
1749
|
+
],
|
|
1750
|
+
"schedule": "0 8,14 * * 1-5",
|
|
1751
|
+
"timezone": "UTC",
|
|
1752
|
+
"runner": "agent-prompt",
|
|
1753
|
+
"modes": [
|
|
1754
|
+
"agent-prompt"
|
|
1755
|
+
],
|
|
1756
|
+
"compatible_agents": [
|
|
1757
|
+
"claude",
|
|
1758
|
+
"codex",
|
|
1759
|
+
"hermes",
|
|
1760
|
+
"openclaw",
|
|
1761
|
+
"generic"
|
|
1762
|
+
],
|
|
1763
|
+
"path": "jobs/devops/github-issue-triage.yaml"
|
|
1764
|
+
},
|
|
1323
1765
|
{
|
|
1324
1766
|
"id": "grant-deadline-reminder",
|
|
1325
1767
|
"version": 1,
|
|
@@ -1347,6 +1789,30 @@
|
|
|
1347
1789
|
],
|
|
1348
1790
|
"path": "jobs/nonprofit/grant-deadline-reminder.yaml"
|
|
1349
1791
|
},
|
|
1792
|
+
{
|
|
1793
|
+
"id": "guest-followup-reminder",
|
|
1794
|
+
"version": 1,
|
|
1795
|
+
"name": "Podcast Guest Follow-up Reminder",
|
|
1796
|
+
"description": "Flags recorded guest episodes that haven't been published or thanked yet. Use this if a guest has ever had to awkwardly ask when their episode was coming out because nobody followed up after recording.",
|
|
1797
|
+
"category": "podcast",
|
|
1798
|
+
"tags": [
|
|
1799
|
+
"podcast",
|
|
1800
|
+
"guests",
|
|
1801
|
+
"followup"
|
|
1802
|
+
],
|
|
1803
|
+
"schedule": "0 9 * * 1",
|
|
1804
|
+
"timezone": "UTC",
|
|
1805
|
+
"runner": "shell",
|
|
1806
|
+
"modes": [
|
|
1807
|
+
"script"
|
|
1808
|
+
],
|
|
1809
|
+
"compatible_agents": [
|
|
1810
|
+
"generic",
|
|
1811
|
+
"claude",
|
|
1812
|
+
"codex"
|
|
1813
|
+
],
|
|
1814
|
+
"path": "jobs/podcast/guest-followup-reminder.yaml"
|
|
1815
|
+
},
|
|
1350
1816
|
{
|
|
1351
1817
|
"id": "habit-checkin",
|
|
1352
1818
|
"version": 1,
|
|
@@ -1371,6 +1837,55 @@
|
|
|
1371
1837
|
],
|
|
1372
1838
|
"path": "jobs/personal/habit-checkin.yaml"
|
|
1373
1839
|
},
|
|
1840
|
+
{
|
|
1841
|
+
"id": "health-inspection-due-reminder",
|
|
1842
|
+
"version": 1,
|
|
1843
|
+
"name": "Health Inspection Due Reminder",
|
|
1844
|
+
"description": "Warns you before a health department inspection is expected, based on your jurisdiction's typical interval. Use this if an inspector has ever shown up to a kitchen that wasn't ready because nobody was tracking when the last one happened.",
|
|
1845
|
+
"category": "hospitality",
|
|
1846
|
+
"tags": [
|
|
1847
|
+
"hospitality",
|
|
1848
|
+
"health-inspection",
|
|
1849
|
+
"compliance"
|
|
1850
|
+
],
|
|
1851
|
+
"schedule": "0 8 1 * *",
|
|
1852
|
+
"timezone": "UTC",
|
|
1853
|
+
"runner": "shell",
|
|
1854
|
+
"modes": [
|
|
1855
|
+
"script"
|
|
1856
|
+
],
|
|
1857
|
+
"compatible_agents": [
|
|
1858
|
+
"generic",
|
|
1859
|
+
"claude",
|
|
1860
|
+
"codex"
|
|
1861
|
+
],
|
|
1862
|
+
"path": "jobs/hospitality/health-inspection-due-reminder.yaml"
|
|
1863
|
+
},
|
|
1864
|
+
{
|
|
1865
|
+
"id": "health-inspection-prep-reminder",
|
|
1866
|
+
"version": 1,
|
|
1867
|
+
"name": "Health Inspection Prep Reminder",
|
|
1868
|
+
"description": "Reminds the team of the standard health-inspection checklist on a recurring basis, not just when an inspection is imminent. Use this if you've ever scrambled the morning an inspector showed up unannounced.",
|
|
1869
|
+
"category": "restaurant",
|
|
1870
|
+
"tags": [
|
|
1871
|
+
"compliance",
|
|
1872
|
+
"health-inspection",
|
|
1873
|
+
"checklist",
|
|
1874
|
+
"kitchen"
|
|
1875
|
+
],
|
|
1876
|
+
"schedule": "0 7 * * 1",
|
|
1877
|
+
"timezone": "America/New_York",
|
|
1878
|
+
"runner": "shell",
|
|
1879
|
+
"modes": [
|
|
1880
|
+
"script"
|
|
1881
|
+
],
|
|
1882
|
+
"compatible_agents": [
|
|
1883
|
+
"generic",
|
|
1884
|
+
"claude",
|
|
1885
|
+
"codex"
|
|
1886
|
+
],
|
|
1887
|
+
"path": "jobs/restaurant/health-inspection-prep-reminder.yaml"
|
|
1888
|
+
},
|
|
1374
1889
|
{
|
|
1375
1890
|
"id": "hreflang-audit",
|
|
1376
1891
|
"version": 1,
|
|
@@ -1544,6 +2059,33 @@
|
|
|
1544
2059
|
],
|
|
1545
2060
|
"path": "jobs/inventory/inventory-count-discrepancy-check.yaml"
|
|
1546
2061
|
},
|
|
2062
|
+
{
|
|
2063
|
+
"id": "inventory-waste-log-review",
|
|
2064
|
+
"version": 1,
|
|
2065
|
+
"name": "Inventory Waste Log Review",
|
|
2066
|
+
"description": "Reviews the kitchen's waste log for the week and flags which items are being tossed most, in case it's an over-ordering or portioning problem. Use this if food cost keeps creeping up and nobody's sure why.",
|
|
2067
|
+
"category": "restaurant",
|
|
2068
|
+
"tags": [
|
|
2069
|
+
"inventory",
|
|
2070
|
+
"waste",
|
|
2071
|
+
"food-cost",
|
|
2072
|
+
"kitchen"
|
|
2073
|
+
],
|
|
2074
|
+
"schedule": "0 10 * * 1",
|
|
2075
|
+
"timezone": "America/New_York",
|
|
2076
|
+
"runner": "agent-prompt",
|
|
2077
|
+
"modes": [
|
|
2078
|
+
"agent-prompt"
|
|
2079
|
+
],
|
|
2080
|
+
"compatible_agents": [
|
|
2081
|
+
"claude",
|
|
2082
|
+
"codex",
|
|
2083
|
+
"hermes",
|
|
2084
|
+
"openclaw",
|
|
2085
|
+
"generic"
|
|
2086
|
+
],
|
|
2087
|
+
"path": "jobs/restaurant/inventory-waste-log-review.yaml"
|
|
2088
|
+
},
|
|
1547
2089
|
{
|
|
1548
2090
|
"id": "invoice-overdue-check",
|
|
1549
2091
|
"version": 1,
|
|
@@ -1568,6 +2110,33 @@
|
|
|
1568
2110
|
],
|
|
1569
2111
|
"path": "jobs/finance/invoice-overdue-check.yaml"
|
|
1570
2112
|
},
|
|
2113
|
+
{
|
|
2114
|
+
"id": "irrigation-schedule-check",
|
|
2115
|
+
"version": 1,
|
|
2116
|
+
"name": "Irrigation Need Check",
|
|
2117
|
+
"description": "Checks recent rainfall and forecast against a soil-moisture threshold to tell you whether irrigation is actually needed today. Use this if you've ever watered on a fixed schedule and either wasted water after rain or under-watered during a dry stretch.",
|
|
2118
|
+
"category": "agriculture",
|
|
2119
|
+
"tags": [
|
|
2120
|
+
"irrigation",
|
|
2121
|
+
"water",
|
|
2122
|
+
"weather",
|
|
2123
|
+
"crops"
|
|
2124
|
+
],
|
|
2125
|
+
"schedule": "0 6 * * *",
|
|
2126
|
+
"timezone": "America/Chicago",
|
|
2127
|
+
"runner": "agent-prompt",
|
|
2128
|
+
"modes": [
|
|
2129
|
+
"agent-prompt"
|
|
2130
|
+
],
|
|
2131
|
+
"compatible_agents": [
|
|
2132
|
+
"claude",
|
|
2133
|
+
"codex",
|
|
2134
|
+
"hermes",
|
|
2135
|
+
"openclaw",
|
|
2136
|
+
"generic"
|
|
2137
|
+
],
|
|
2138
|
+
"path": "jobs/agriculture/irrigation-schedule-check.yaml"
|
|
2139
|
+
},
|
|
1571
2140
|
{
|
|
1572
2141
|
"id": "k8s-pod-restart-watch",
|
|
1573
2142
|
"version": 1,
|
|
@@ -1688,6 +2257,31 @@
|
|
|
1688
2257
|
],
|
|
1689
2258
|
"path": "jobs/devops/license-compliance-check.yaml"
|
|
1690
2259
|
},
|
|
2260
|
+
{
|
|
2261
|
+
"id": "license-credential-expiry-check",
|
|
2262
|
+
"version": 1,
|
|
2263
|
+
"name": "Staff License/Credential Expiry Check",
|
|
2264
|
+
"description": "Checks a tracked list of staff licenses, certifications, or credentials (e.g. nursing license, CPR cert, DEA registration) and warns before any expire. Use this if you've ever had a provider accidentally see patients on a lapsed license or certification.",
|
|
2265
|
+
"category": "healthcare",
|
|
2266
|
+
"tags": [
|
|
2267
|
+
"compliance",
|
|
2268
|
+
"licensing",
|
|
2269
|
+
"credentials",
|
|
2270
|
+
"staff"
|
|
2271
|
+
],
|
|
2272
|
+
"schedule": "0 8 * * 1",
|
|
2273
|
+
"timezone": "UTC",
|
|
2274
|
+
"runner": "shell",
|
|
2275
|
+
"modes": [
|
|
2276
|
+
"script"
|
|
2277
|
+
],
|
|
2278
|
+
"compatible_agents": [
|
|
2279
|
+
"generic",
|
|
2280
|
+
"claude",
|
|
2281
|
+
"codex"
|
|
2282
|
+
],
|
|
2283
|
+
"path": "jobs/healthcare/license-credential-expiry-check.yaml"
|
|
2284
|
+
},
|
|
1691
2285
|
{
|
|
1692
2286
|
"id": "log-cleanup",
|
|
1693
2287
|
"version": 1,
|
|
@@ -1759,6 +2353,31 @@
|
|
|
1759
2353
|
],
|
|
1760
2354
|
"path": "jobs/inventory/low-stock-alert.yaml"
|
|
1761
2355
|
},
|
|
2356
|
+
{
|
|
2357
|
+
"id": "low-stock-reorder-alert",
|
|
2358
|
+
"version": 1,
|
|
2359
|
+
"name": "Low Stock Reorder Alert",
|
|
2360
|
+
"description": "Checks inventory levels against a reorder threshold per SKU and flags anything that needs restocking before it actually sells out. Use this if a bestseller has ever gone out of stock because nobody was watching the count.",
|
|
2361
|
+
"category": "ecommerce",
|
|
2362
|
+
"tags": [
|
|
2363
|
+
"ecommerce",
|
|
2364
|
+
"inventory",
|
|
2365
|
+
"stock",
|
|
2366
|
+
"reorder"
|
|
2367
|
+
],
|
|
2368
|
+
"schedule": "0 7 * * *",
|
|
2369
|
+
"timezone": "UTC",
|
|
2370
|
+
"runner": "shell",
|
|
2371
|
+
"modes": [
|
|
2372
|
+
"script"
|
|
2373
|
+
],
|
|
2374
|
+
"compatible_agents": [
|
|
2375
|
+
"generic",
|
|
2376
|
+
"claude",
|
|
2377
|
+
"codex"
|
|
2378
|
+
],
|
|
2379
|
+
"path": "jobs/ecommerce/low-stock-reorder-alert.yaml"
|
|
2380
|
+
},
|
|
1762
2381
|
{
|
|
1763
2382
|
"id": "meal-plan-reminder",
|
|
1764
2383
|
"version": 1,
|
|
@@ -1810,6 +2429,58 @@
|
|
|
1810
2429
|
],
|
|
1811
2430
|
"path": "jobs/personal/medication-refill-reminder.yaml"
|
|
1812
2431
|
},
|
|
2432
|
+
{
|
|
2433
|
+
"id": "morning-briefing-digest",
|
|
2434
|
+
"version": 1,
|
|
2435
|
+
"name": "Morning Briefing Digest",
|
|
2436
|
+
"description": "Pulls together overnight email, today's calendar, and any connected analytics/monitoring dashboards into one short digest waiting for you at the start of the day. Use this if you start your morning tab-hopping across five dashboards before you've even had coffee.",
|
|
2437
|
+
"category": "productivity",
|
|
2438
|
+
"tags": [
|
|
2439
|
+
"briefing",
|
|
2440
|
+
"digest",
|
|
2441
|
+
"morning",
|
|
2442
|
+
"calendar",
|
|
2443
|
+
"email"
|
|
2444
|
+
],
|
|
2445
|
+
"schedule": "0 7 * * 1-5",
|
|
2446
|
+
"timezone": "America/Los_Angeles",
|
|
2447
|
+
"runner": "agent-prompt",
|
|
2448
|
+
"modes": [
|
|
2449
|
+
"agent-prompt"
|
|
2450
|
+
],
|
|
2451
|
+
"compatible_agents": [
|
|
2452
|
+
"claude",
|
|
2453
|
+
"codex",
|
|
2454
|
+
"hermes",
|
|
2455
|
+
"openclaw",
|
|
2456
|
+
"generic"
|
|
2457
|
+
],
|
|
2458
|
+
"path": "jobs/productivity/morning-briefing-digest.yaml"
|
|
2459
|
+
},
|
|
2460
|
+
{
|
|
2461
|
+
"id": "nda-expiry-check",
|
|
2462
|
+
"version": 1,
|
|
2463
|
+
"name": "NDA Expiry Check",
|
|
2464
|
+
"description": "Warns you before a signed NDA reaches its expiration or renewal date. Use this if an NDA has ever lapsed mid-relationship and nobody noticed the confidentiality coverage had run out.",
|
|
2465
|
+
"category": "legal",
|
|
2466
|
+
"tags": [
|
|
2467
|
+
"legal",
|
|
2468
|
+
"nda",
|
|
2469
|
+
"contracts"
|
|
2470
|
+
],
|
|
2471
|
+
"schedule": "0 9 1 * *",
|
|
2472
|
+
"timezone": "UTC",
|
|
2473
|
+
"runner": "shell",
|
|
2474
|
+
"modes": [
|
|
2475
|
+
"script"
|
|
2476
|
+
],
|
|
2477
|
+
"compatible_agents": [
|
|
2478
|
+
"generic",
|
|
2479
|
+
"claude",
|
|
2480
|
+
"codex"
|
|
2481
|
+
],
|
|
2482
|
+
"path": "jobs/legal/nda-expiry-check.yaml"
|
|
2483
|
+
},
|
|
1813
2484
|
{
|
|
1814
2485
|
"id": "net-worth-snapshot",
|
|
1815
2486
|
"version": 1,
|
|
@@ -1834,6 +2505,112 @@
|
|
|
1834
2505
|
],
|
|
1835
2506
|
"path": "jobs/finance/net-worth-snapshot.yaml"
|
|
1836
2507
|
},
|
|
2508
|
+
{
|
|
2509
|
+
"id": "new-hire-paperwork-check",
|
|
2510
|
+
"version": 1,
|
|
2511
|
+
"name": "New Hire Paperwork Completion Check",
|
|
2512
|
+
"description": "Checks which recently started employees still have incomplete onboarding paperwork (I-9, tax forms, benefits enrollment, signed handbook) and flags them before they become a compliance problem. Use this if onboarding paperwork has ever slipped through the cracks past the legal deadline.",
|
|
2513
|
+
"category": "hr",
|
|
2514
|
+
"tags": [
|
|
2515
|
+
"hr",
|
|
2516
|
+
"onboarding",
|
|
2517
|
+
"compliance",
|
|
2518
|
+
"paperwork"
|
|
2519
|
+
],
|
|
2520
|
+
"schedule": "0 9 * * 1",
|
|
2521
|
+
"timezone": "UTC",
|
|
2522
|
+
"runner": "agent-prompt",
|
|
2523
|
+
"modes": [
|
|
2524
|
+
"agent-prompt"
|
|
2525
|
+
],
|
|
2526
|
+
"compatible_agents": [
|
|
2527
|
+
"claude",
|
|
2528
|
+
"codex",
|
|
2529
|
+
"hermes",
|
|
2530
|
+
"openclaw",
|
|
2531
|
+
"generic"
|
|
2532
|
+
],
|
|
2533
|
+
"path": "jobs/hr/new-hire-paperwork-check.yaml"
|
|
2534
|
+
},
|
|
2535
|
+
{
|
|
2536
|
+
"id": "new-restaurant-roundup",
|
|
2537
|
+
"version": 1,
|
|
2538
|
+
"name": "New Restaurant Roundup",
|
|
2539
|
+
"description": "Checks for restaurants that newly opened near you in the last week and gives you a short list to consider. Use this if you like trying new places but never remember to actually go looking for what just opened.",
|
|
2540
|
+
"category": "personal",
|
|
2541
|
+
"tags": [
|
|
2542
|
+
"restaurants",
|
|
2543
|
+
"local",
|
|
2544
|
+
"discovery",
|
|
2545
|
+
"weekly"
|
|
2546
|
+
],
|
|
2547
|
+
"schedule": "0 17 * * 5",
|
|
2548
|
+
"timezone": "America/Los_Angeles",
|
|
2549
|
+
"runner": "agent-prompt",
|
|
2550
|
+
"modes": [
|
|
2551
|
+
"agent-prompt"
|
|
2552
|
+
],
|
|
2553
|
+
"compatible_agents": [
|
|
2554
|
+
"claude",
|
|
2555
|
+
"codex",
|
|
2556
|
+
"hermes",
|
|
2557
|
+
"openclaw",
|
|
2558
|
+
"generic"
|
|
2559
|
+
],
|
|
2560
|
+
"path": "jobs/personal/new-restaurant-roundup.yaml"
|
|
2561
|
+
},
|
|
2562
|
+
{
|
|
2563
|
+
"id": "newly-funded-leads-scout",
|
|
2564
|
+
"version": 1,
|
|
2565
|
+
"name": "Newly Funded Companies Lead Scout",
|
|
2566
|
+
"description": "Checks funding-announcement sources for companies that just raised in your target market and drafts a first-outreach message for each. Use this if you sell to companies that spend differently right after a funding round and you want to reach them before every other vendor does.",
|
|
2567
|
+
"category": "sales",
|
|
2568
|
+
"tags": [
|
|
2569
|
+
"sales",
|
|
2570
|
+
"leads",
|
|
2571
|
+
"funding",
|
|
2572
|
+
"outreach",
|
|
2573
|
+
"prospecting"
|
|
2574
|
+
],
|
|
2575
|
+
"schedule": "0 8 * * 1-5",
|
|
2576
|
+
"timezone": "UTC",
|
|
2577
|
+
"runner": "agent-prompt",
|
|
2578
|
+
"modes": [
|
|
2579
|
+
"agent-prompt"
|
|
2580
|
+
],
|
|
2581
|
+
"compatible_agents": [
|
|
2582
|
+
"claude",
|
|
2583
|
+
"codex",
|
|
2584
|
+
"hermes",
|
|
2585
|
+
"openclaw",
|
|
2586
|
+
"generic"
|
|
2587
|
+
],
|
|
2588
|
+
"path": "jobs/sales/newly-funded-leads-scout.yaml"
|
|
2589
|
+
},
|
|
2590
|
+
{
|
|
2591
|
+
"id": "offer-expiry-reminder",
|
|
2592
|
+
"version": 1,
|
|
2593
|
+
"name": "Offer Expiry Reminder",
|
|
2594
|
+
"description": "Flags extended offers that are close to their response deadline with no answer yet. Use this if an offer has ever quietly expired because nobody followed up before the deadline passed.",
|
|
2595
|
+
"category": "hiring",
|
|
2596
|
+
"tags": [
|
|
2597
|
+
"hiring",
|
|
2598
|
+
"offers",
|
|
2599
|
+
"recruiting"
|
|
2600
|
+
],
|
|
2601
|
+
"schedule": "0 9 * * 1-5",
|
|
2602
|
+
"timezone": "UTC",
|
|
2603
|
+
"runner": "shell",
|
|
2604
|
+
"modes": [
|
|
2605
|
+
"script"
|
|
2606
|
+
],
|
|
2607
|
+
"compatible_agents": [
|
|
2608
|
+
"generic",
|
|
2609
|
+
"claude",
|
|
2610
|
+
"codex"
|
|
2611
|
+
],
|
|
2612
|
+
"path": "jobs/hiring/offer-expiry-reminder.yaml"
|
|
2613
|
+
},
|
|
1837
2614
|
{
|
|
1838
2615
|
"id": "oncall-handoff-reminder",
|
|
1839
2616
|
"version": 1,
|
|
@@ -1980,6 +2757,33 @@
|
|
|
1980
2757
|
],
|
|
1981
2758
|
"path": "jobs/travel/passport-expiry-check.yaml"
|
|
1982
2759
|
},
|
|
2760
|
+
{
|
|
2761
|
+
"id": "patient-recall-reminder",
|
|
2762
|
+
"version": 1,
|
|
2763
|
+
"name": "Patient Recall Reminder",
|
|
2764
|
+
"description": "Finds patients due (or overdue) for a routine checkup, cleaning, or screening and lists them for outreach. Use this if recall/recare lists pile up and patients quietly fall off the schedule for a year or more.",
|
|
2765
|
+
"category": "healthcare",
|
|
2766
|
+
"tags": [
|
|
2767
|
+
"patients",
|
|
2768
|
+
"recall",
|
|
2769
|
+
"checkup",
|
|
2770
|
+
"outreach"
|
|
2771
|
+
],
|
|
2772
|
+
"schedule": "0 8 1 * *",
|
|
2773
|
+
"timezone": "America/New_York",
|
|
2774
|
+
"runner": "agent-prompt",
|
|
2775
|
+
"modes": [
|
|
2776
|
+
"agent-prompt"
|
|
2777
|
+
],
|
|
2778
|
+
"compatible_agents": [
|
|
2779
|
+
"claude",
|
|
2780
|
+
"codex",
|
|
2781
|
+
"hermes",
|
|
2782
|
+
"openclaw",
|
|
2783
|
+
"generic"
|
|
2784
|
+
],
|
|
2785
|
+
"path": "jobs/healthcare/patient-recall-reminder.yaml"
|
|
2786
|
+
},
|
|
1983
2787
|
{
|
|
1984
2788
|
"id": "payroll-run-reminder",
|
|
1985
2789
|
"version": 1,
|
|
@@ -2004,6 +2808,31 @@
|
|
|
2004
2808
|
],
|
|
2005
2809
|
"path": "jobs/finance/payroll-run-reminder.yaml"
|
|
2006
2810
|
},
|
|
2811
|
+
{
|
|
2812
|
+
"id": "payroll-run-reminder",
|
|
2813
|
+
"version": 1,
|
|
2814
|
+
"name": "Payroll Run Cutoff Reminder",
|
|
2815
|
+
"description": "Reminds you before the payroll submission cutoff so timesheets and changes get in on time. Use this if payroll has ever run late because a timesheet or new-hire update missed the cutoff by a day.",
|
|
2816
|
+
"category": "hr",
|
|
2817
|
+
"tags": [
|
|
2818
|
+
"payroll",
|
|
2819
|
+
"hr",
|
|
2820
|
+
"reminder",
|
|
2821
|
+
"deadline"
|
|
2822
|
+
],
|
|
2823
|
+
"schedule": "0 9 * * *",
|
|
2824
|
+
"timezone": "America/New_York",
|
|
2825
|
+
"runner": "shell",
|
|
2826
|
+
"modes": [
|
|
2827
|
+
"script"
|
|
2828
|
+
],
|
|
2829
|
+
"compatible_agents": [
|
|
2830
|
+
"generic",
|
|
2831
|
+
"claude",
|
|
2832
|
+
"codex"
|
|
2833
|
+
],
|
|
2834
|
+
"path": "jobs/hr/payroll-run-reminder.yaml"
|
|
2835
|
+
},
|
|
2007
2836
|
{
|
|
2008
2837
|
"id": "permit-expiry-check",
|
|
2009
2838
|
"version": 1,
|
|
@@ -2052,6 +2881,31 @@
|
|
|
2052
2881
|
],
|
|
2053
2882
|
"path": "jobs/home/plant-watering-reminder.yaml"
|
|
2054
2883
|
},
|
|
2884
|
+
{
|
|
2885
|
+
"id": "policy-renewal-reminder",
|
|
2886
|
+
"version": 1,
|
|
2887
|
+
"name": "Policy Renewal Reminder",
|
|
2888
|
+
"description": "Warns you before an insurance policy's renewal date so you have time to shop around or review coverage, instead of auto-renewing on autopilot. Use this if you've ever realized a policy renewed months ago at a higher rate without you noticing.",
|
|
2889
|
+
"category": "insurance",
|
|
2890
|
+
"tags": [
|
|
2891
|
+
"insurance",
|
|
2892
|
+
"renewal",
|
|
2893
|
+
"policy",
|
|
2894
|
+
"reminder"
|
|
2895
|
+
],
|
|
2896
|
+
"schedule": "0 8 * * *",
|
|
2897
|
+
"timezone": "UTC",
|
|
2898
|
+
"runner": "shell",
|
|
2899
|
+
"modes": [
|
|
2900
|
+
"script"
|
|
2901
|
+
],
|
|
2902
|
+
"compatible_agents": [
|
|
2903
|
+
"generic",
|
|
2904
|
+
"claude",
|
|
2905
|
+
"codex"
|
|
2906
|
+
],
|
|
2907
|
+
"path": "jobs/insurance/policy-renewal-reminder.yaml"
|
|
2908
|
+
},
|
|
2055
2909
|
{
|
|
2056
2910
|
"id": "portfolio-rebalance-check",
|
|
2057
2911
|
"version": 1,
|
|
@@ -2078,6 +2932,30 @@
|
|
|
2078
2932
|
],
|
|
2079
2933
|
"path": "jobs/investing/portfolio-rebalance-check.yaml"
|
|
2080
2934
|
},
|
|
2935
|
+
{
|
|
2936
|
+
"id": "preventive-maintenance-due-check",
|
|
2937
|
+
"version": 1,
|
|
2938
|
+
"name": "Preventive Maintenance Due Check",
|
|
2939
|
+
"description": "Flags equipment coming due for scheduled preventive maintenance. Use this if a machine has ever failed unexpectedly that would've been caught by a PM visit nobody scheduled in time.",
|
|
2940
|
+
"category": "manufacturing",
|
|
2941
|
+
"tags": [
|
|
2942
|
+
"manufacturing",
|
|
2943
|
+
"maintenance",
|
|
2944
|
+
"equipment"
|
|
2945
|
+
],
|
|
2946
|
+
"schedule": "0 7 * * 1",
|
|
2947
|
+
"timezone": "UTC",
|
|
2948
|
+
"runner": "shell",
|
|
2949
|
+
"modes": [
|
|
2950
|
+
"script"
|
|
2951
|
+
],
|
|
2952
|
+
"compatible_agents": [
|
|
2953
|
+
"generic",
|
|
2954
|
+
"claude",
|
|
2955
|
+
"codex"
|
|
2956
|
+
],
|
|
2957
|
+
"path": "jobs/manufacturing/preventive-maintenance-due-check.yaml"
|
|
2958
|
+
},
|
|
2081
2959
|
{
|
|
2082
2960
|
"id": "production-line-downtime-watch",
|
|
2083
2961
|
"version": 1,
|
|
@@ -2174,6 +3052,30 @@
|
|
|
2174
3052
|
],
|
|
2175
3053
|
"path": "jobs/devops/queue-depth-check.yaml"
|
|
2176
3054
|
},
|
|
3055
|
+
{
|
|
3056
|
+
"id": "quota-attainment-check",
|
|
3057
|
+
"version": 1,
|
|
3058
|
+
"name": "Quota Attainment Check",
|
|
3059
|
+
"description": "Compares a rep's closed-won revenue this period against their quota pace and flags whether they're on track. Use this if a rep has ever found out they missed quota only at the end of the quarter, instead of with enough runway left to fix it.",
|
|
3060
|
+
"category": "sales",
|
|
3061
|
+
"tags": [
|
|
3062
|
+
"sales",
|
|
3063
|
+
"quota",
|
|
3064
|
+
"pipeline"
|
|
3065
|
+
],
|
|
3066
|
+
"schedule": "0 8 * * 1",
|
|
3067
|
+
"timezone": "UTC",
|
|
3068
|
+
"runner": "shell",
|
|
3069
|
+
"modes": [
|
|
3070
|
+
"script"
|
|
3071
|
+
],
|
|
3072
|
+
"compatible_agents": [
|
|
3073
|
+
"generic",
|
|
3074
|
+
"claude",
|
|
3075
|
+
"codex"
|
|
3076
|
+
],
|
|
3077
|
+
"path": "jobs/sales/quota-attainment-check.yaml"
|
|
3078
|
+
},
|
|
2177
3079
|
{
|
|
2178
3080
|
"id": "reading-list-nudge",
|
|
2179
3081
|
"version": 1,
|
|
@@ -2205,11 +3107,60 @@
|
|
|
2205
3107
|
"description": "Flags subscription charges that failed and haven't successfully retried yet. Use this if a failed card has ever silently churned a customer because nobody noticed the retry never succeeded.",
|
|
2206
3108
|
"category": "finance",
|
|
2207
3109
|
"tags": [
|
|
2208
|
-
"finance",
|
|
2209
|
-
"billing",
|
|
3110
|
+
"finance",
|
|
3111
|
+
"billing",
|
|
3112
|
+
"payments"
|
|
3113
|
+
],
|
|
3114
|
+
"schedule": "0 */6 * * *",
|
|
3115
|
+
"timezone": "UTC",
|
|
3116
|
+
"runner": "shell",
|
|
3117
|
+
"modes": [
|
|
3118
|
+
"script"
|
|
3119
|
+
],
|
|
3120
|
+
"compatible_agents": [
|
|
3121
|
+
"generic",
|
|
3122
|
+
"claude",
|
|
3123
|
+
"codex"
|
|
3124
|
+
],
|
|
3125
|
+
"path": "jobs/finance/recurring-payment-failure-check.yaml"
|
|
3126
|
+
},
|
|
3127
|
+
{
|
|
3128
|
+
"id": "recurring-task-queue-reset",
|
|
3129
|
+
"version": 1,
|
|
3130
|
+
"name": "Recurring Task Queue Reset",
|
|
3131
|
+
"description": "Clears out last week's completed recurring-task checklist and creates a fresh one from your template, so every cycle starts with the same predefined owners and checklist instead of a copy-pasted mess. Use this if your recurring weekly checklist has ever quietly drifted because someone edited last week's copy instead of starting clean.",
|
|
3132
|
+
"category": "productivity",
|
|
3133
|
+
"tags": [
|
|
3134
|
+
"productivity",
|
|
3135
|
+
"checklist",
|
|
3136
|
+
"recurring",
|
|
3137
|
+
"template"
|
|
3138
|
+
],
|
|
3139
|
+
"schedule": "0 6 * * 1",
|
|
3140
|
+
"timezone": "UTC",
|
|
3141
|
+
"runner": "shell",
|
|
3142
|
+
"modes": [
|
|
3143
|
+
"script"
|
|
3144
|
+
],
|
|
3145
|
+
"compatible_agents": [
|
|
3146
|
+
"generic",
|
|
3147
|
+
"claude",
|
|
3148
|
+
"codex"
|
|
3149
|
+
],
|
|
3150
|
+
"path": "jobs/productivity/recurring-task-queue-reset.yaml"
|
|
3151
|
+
},
|
|
3152
|
+
{
|
|
3153
|
+
"id": "rent-payment-late-check",
|
|
3154
|
+
"version": 1,
|
|
3155
|
+
"name": "Rent Payment Late Check",
|
|
3156
|
+
"description": "Flags tenants whose rent is overdue past the grace period. Use this if a late payment has ever gone unnoticed for weeks because nobody was cross-checking the rent roll against the bank deposits.",
|
|
3157
|
+
"category": "realestate",
|
|
3158
|
+
"tags": [
|
|
3159
|
+
"realestate",
|
|
3160
|
+
"rent",
|
|
2210
3161
|
"payments"
|
|
2211
3162
|
],
|
|
2212
|
-
"schedule": "0
|
|
3163
|
+
"schedule": "0 9 * * *",
|
|
2213
3164
|
"timezone": "UTC",
|
|
2214
3165
|
"runner": "shell",
|
|
2215
3166
|
"modes": [
|
|
@@ -2220,7 +3171,7 @@
|
|
|
2220
3171
|
"claude",
|
|
2221
3172
|
"codex"
|
|
2222
3173
|
],
|
|
2223
|
-
"path": "jobs/
|
|
3174
|
+
"path": "jobs/realestate/rent-payment-late-check.yaml"
|
|
2224
3175
|
},
|
|
2225
3176
|
{
|
|
2226
3177
|
"id": "rental-vacancy-check",
|
|
@@ -2273,6 +3224,30 @@
|
|
|
2273
3224
|
],
|
|
2274
3225
|
"path": "jobs/devops/repo-health-check.yaml"
|
|
2275
3226
|
},
|
|
3227
|
+
{
|
|
3228
|
+
"id": "report-card-deadline-reminder",
|
|
3229
|
+
"version": 1,
|
|
3230
|
+
"name": "Report Card Deadline Reminder",
|
|
3231
|
+
"description": "Warns you before the grade submission deadline for report cards. Use this if grades have ever gone in late because the cutoff snuck up during the last busy week of the term.",
|
|
3232
|
+
"category": "education",
|
|
3233
|
+
"tags": [
|
|
3234
|
+
"education",
|
|
3235
|
+
"grading",
|
|
3236
|
+
"deadlines"
|
|
3237
|
+
],
|
|
3238
|
+
"schedule": "0 8 * * *",
|
|
3239
|
+
"timezone": "UTC",
|
|
3240
|
+
"runner": "shell",
|
|
3241
|
+
"modes": [
|
|
3242
|
+
"script"
|
|
3243
|
+
],
|
|
3244
|
+
"compatible_agents": [
|
|
3245
|
+
"generic",
|
|
3246
|
+
"claude",
|
|
3247
|
+
"codex"
|
|
3248
|
+
],
|
|
3249
|
+
"path": "jobs/education/report-card-deadline-reminder.yaml"
|
|
3250
|
+
},
|
|
2276
3251
|
{
|
|
2277
3252
|
"id": "reservation-noshow-check",
|
|
2278
3253
|
"version": 1,
|
|
@@ -2297,6 +3272,59 @@
|
|
|
2297
3272
|
],
|
|
2298
3273
|
"path": "jobs/hospitality/reservation-noshow-check.yaml"
|
|
2299
3274
|
},
|
|
3275
|
+
{
|
|
3276
|
+
"id": "reservation-noshow-deposit-check",
|
|
3277
|
+
"version": 1,
|
|
3278
|
+
"name": "Reservation No-Show Pattern Check",
|
|
3279
|
+
"description": "Reviews recent reservation no-shows and flags parties/times where no-shows cluster, so you know whether a deposit or confirmation-call policy would help. Use this if a certain night or party size keeps costing you empty tables.",
|
|
3280
|
+
"category": "restaurant",
|
|
3281
|
+
"tags": [
|
|
3282
|
+
"reservations",
|
|
3283
|
+
"no-show",
|
|
3284
|
+
"hospitality"
|
|
3285
|
+
],
|
|
3286
|
+
"schedule": "0 11 * * 1",
|
|
3287
|
+
"timezone": "America/New_York",
|
|
3288
|
+
"runner": "agent-prompt",
|
|
3289
|
+
"modes": [
|
|
3290
|
+
"agent-prompt"
|
|
3291
|
+
],
|
|
3292
|
+
"compatible_agents": [
|
|
3293
|
+
"claude",
|
|
3294
|
+
"codex",
|
|
3295
|
+
"hermes",
|
|
3296
|
+
"openclaw",
|
|
3297
|
+
"generic"
|
|
3298
|
+
],
|
|
3299
|
+
"path": "jobs/restaurant/reservation-noshow-deposit-check.yaml"
|
|
3300
|
+
},
|
|
3301
|
+
{
|
|
3302
|
+
"id": "return-refund-backlog-check",
|
|
3303
|
+
"version": 1,
|
|
3304
|
+
"name": "Return/Refund Backlog Check",
|
|
3305
|
+
"description": "Checks how many return/refund requests are sitting unprocessed and flags any past your stated turnaround time. Use this if refund complaints have ever shown up in reviews before anyone internally noticed the backlog.",
|
|
3306
|
+
"category": "ecommerce",
|
|
3307
|
+
"tags": [
|
|
3308
|
+
"ecommerce",
|
|
3309
|
+
"returns",
|
|
3310
|
+
"refunds",
|
|
3311
|
+
"backlog"
|
|
3312
|
+
],
|
|
3313
|
+
"schedule": "0 9 * * *",
|
|
3314
|
+
"timezone": "UTC",
|
|
3315
|
+
"runner": "agent-prompt",
|
|
3316
|
+
"modes": [
|
|
3317
|
+
"agent-prompt"
|
|
3318
|
+
],
|
|
3319
|
+
"compatible_agents": [
|
|
3320
|
+
"claude",
|
|
3321
|
+
"codex",
|
|
3322
|
+
"hermes",
|
|
3323
|
+
"openclaw",
|
|
3324
|
+
"generic"
|
|
3325
|
+
],
|
|
3326
|
+
"path": "jobs/ecommerce/return-refund-backlog-check.yaml"
|
|
3327
|
+
},
|
|
2300
3328
|
{
|
|
2301
3329
|
"id": "review-request-nudge",
|
|
2302
3330
|
"version": 1,
|
|
@@ -2517,6 +3545,32 @@
|
|
|
2517
3545
|
],
|
|
2518
3546
|
"path": "jobs/content/seo-meta-check.yaml"
|
|
2519
3547
|
},
|
|
3548
|
+
{
|
|
3549
|
+
"id": "seo-rank-drop-watch",
|
|
3550
|
+
"version": 1,
|
|
3551
|
+
"name": "SEO Keyword Rank Drop Watch",
|
|
3552
|
+
"description": "Checks a tracked keyword's search ranking and flags a real drop. Use this if a page has ever slipped off page one and nobody noticed until organic traffic was already down for weeks.",
|
|
3553
|
+
"category": "marketing",
|
|
3554
|
+
"tags": [
|
|
3555
|
+
"seo",
|
|
3556
|
+
"rankings",
|
|
3557
|
+
"marketing"
|
|
3558
|
+
],
|
|
3559
|
+
"schedule": "0 8 * * 1",
|
|
3560
|
+
"timezone": "UTC",
|
|
3561
|
+
"runner": "agent-prompt",
|
|
3562
|
+
"modes": [
|
|
3563
|
+
"agent-prompt"
|
|
3564
|
+
],
|
|
3565
|
+
"compatible_agents": [
|
|
3566
|
+
"claude",
|
|
3567
|
+
"codex",
|
|
3568
|
+
"hermes",
|
|
3569
|
+
"openclaw",
|
|
3570
|
+
"generic"
|
|
3571
|
+
],
|
|
3572
|
+
"path": "jobs/marketing/seo-rank-drop-watch.yaml"
|
|
3573
|
+
},
|
|
2520
3574
|
{
|
|
2521
3575
|
"id": "shipment-delay-watch",
|
|
2522
3576
|
"version": 1,
|
|
@@ -2565,6 +3619,58 @@
|
|
|
2565
3619
|
],
|
|
2566
3620
|
"path": "jobs/content/sitemap-freshness-check.yaml"
|
|
2567
3621
|
},
|
|
3622
|
+
{
|
|
3623
|
+
"id": "sla-breach-warning",
|
|
3624
|
+
"version": 1,
|
|
3625
|
+
"name": "SLA Breach Warning",
|
|
3626
|
+
"description": "Flags open tickets that are about to breach their SLA, before they actually do. Use this if a ticket has ever blown past its SLA with zero warning because the only check was after the fact.",
|
|
3627
|
+
"category": "support",
|
|
3628
|
+
"tags": [
|
|
3629
|
+
"support",
|
|
3630
|
+
"sla",
|
|
3631
|
+
"tickets"
|
|
3632
|
+
],
|
|
3633
|
+
"schedule": "*/15 * * * *",
|
|
3634
|
+
"timezone": "UTC",
|
|
3635
|
+
"runner": "shell",
|
|
3636
|
+
"modes": [
|
|
3637
|
+
"script"
|
|
3638
|
+
],
|
|
3639
|
+
"compatible_agents": [
|
|
3640
|
+
"generic",
|
|
3641
|
+
"claude",
|
|
3642
|
+
"codex"
|
|
3643
|
+
],
|
|
3644
|
+
"path": "jobs/support/sla-breach-warning.yaml"
|
|
3645
|
+
},
|
|
3646
|
+
{
|
|
3647
|
+
"id": "smart-contract-upgrade-watch",
|
|
3648
|
+
"version": 1,
|
|
3649
|
+
"name": "Smart Contract Upgrade/Deprecation Watch",
|
|
3650
|
+
"description": "Watches a tracked smart contract's on-chain events and any linked project announcements for upgrades, migrations, or deprecation notices. Use this if a protocol you depend on has ever migrated to a new contract address and you found out only after something broke.",
|
|
3651
|
+
"category": "crypto",
|
|
3652
|
+
"tags": [
|
|
3653
|
+
"crypto",
|
|
3654
|
+
"smart-contract",
|
|
3655
|
+
"upgrade",
|
|
3656
|
+
"monitoring"
|
|
3657
|
+
],
|
|
3658
|
+
"schedule": "0 */6 * * *",
|
|
3659
|
+
"timezone": "UTC",
|
|
3660
|
+
"runner": "hybrid",
|
|
3661
|
+
"modes": [
|
|
3662
|
+
"script",
|
|
3663
|
+
"agent-prompt"
|
|
3664
|
+
],
|
|
3665
|
+
"compatible_agents": [
|
|
3666
|
+
"claude",
|
|
3667
|
+
"codex",
|
|
3668
|
+
"hermes",
|
|
3669
|
+
"openclaw",
|
|
3670
|
+
"generic"
|
|
3671
|
+
],
|
|
3672
|
+
"path": "jobs/crypto/smart-contract-upgrade-watch.yaml"
|
|
3673
|
+
},
|
|
2568
3674
|
{
|
|
2569
3675
|
"id": "smoke-detector-battery-check",
|
|
2570
3676
|
"version": 1,
|
|
@@ -2789,6 +3895,58 @@
|
|
|
2789
3895
|
],
|
|
2790
3896
|
"path": "jobs/productivity/stale-todo-sweep.yaml"
|
|
2791
3897
|
},
|
|
3898
|
+
{
|
|
3899
|
+
"id": "stream-schedule-reminder",
|
|
3900
|
+
"version": 1,
|
|
3901
|
+
"name": "Stream Schedule Prep Reminder",
|
|
3902
|
+
"description": "Reminds you before a scheduled stream and checks that your streaming software/overlays are up to date. Use this if you've ever gone live late because you were still fighting an OBS update mid-countdown.",
|
|
3903
|
+
"category": "gaming",
|
|
3904
|
+
"tags": [
|
|
3905
|
+
"streaming",
|
|
3906
|
+
"schedule",
|
|
3907
|
+
"obs",
|
|
3908
|
+
"reminder"
|
|
3909
|
+
],
|
|
3910
|
+
"schedule": "0 * * * *",
|
|
3911
|
+
"timezone": "America/Los_Angeles",
|
|
3912
|
+
"runner": "shell",
|
|
3913
|
+
"modes": [
|
|
3914
|
+
"script"
|
|
3915
|
+
],
|
|
3916
|
+
"compatible_agents": [
|
|
3917
|
+
"generic",
|
|
3918
|
+
"claude",
|
|
3919
|
+
"codex"
|
|
3920
|
+
],
|
|
3921
|
+
"path": "jobs/gaming/stream-schedule-reminder.yaml"
|
|
3922
|
+
},
|
|
3923
|
+
{
|
|
3924
|
+
"id": "subscriber-churn-watch",
|
|
3925
|
+
"version": 1,
|
|
3926
|
+
"name": "Subscriber/Follower Churn Watch",
|
|
3927
|
+
"description": "Checks your channel's subscriber or follower count trend and flags a meaningful drop so you can investigate before it becomes a pattern. Use this if you've ever noticed a slow bleed of subscribers only after checking your dashboard months later.",
|
|
3928
|
+
"category": "gaming",
|
|
3929
|
+
"tags": [
|
|
3930
|
+
"streaming",
|
|
3931
|
+
"subscribers",
|
|
3932
|
+
"churn",
|
|
3933
|
+
"analytics"
|
|
3934
|
+
],
|
|
3935
|
+
"schedule": "0 9 * * 1",
|
|
3936
|
+
"timezone": "America/Los_Angeles",
|
|
3937
|
+
"runner": "agent-prompt",
|
|
3938
|
+
"modes": [
|
|
3939
|
+
"agent-prompt"
|
|
3940
|
+
],
|
|
3941
|
+
"compatible_agents": [
|
|
3942
|
+
"claude",
|
|
3943
|
+
"codex",
|
|
3944
|
+
"hermes",
|
|
3945
|
+
"openclaw",
|
|
3946
|
+
"generic"
|
|
3947
|
+
],
|
|
3948
|
+
"path": "jobs/gaming/subscriber-churn-watch.yaml"
|
|
3949
|
+
},
|
|
2792
3950
|
{
|
|
2793
3951
|
"id": "subscription-audit",
|
|
2794
3952
|
"version": 1,
|
|
@@ -2813,6 +3971,31 @@
|
|
|
2813
3971
|
],
|
|
2814
3972
|
"path": "jobs/finance/subscription-audit.yaml"
|
|
2815
3973
|
},
|
|
3974
|
+
{
|
|
3975
|
+
"id": "subscription-price-hike-watch",
|
|
3976
|
+
"version": 1,
|
|
3977
|
+
"name": "Subscription Price Hike Watch",
|
|
3978
|
+
"description": "Checks a tracked subscription's current price against the last price you recorded and flags any increase. Use this if a service has ever quietly raised its price and you only noticed months later scrolling through a bank statement.",
|
|
3979
|
+
"category": "finance",
|
|
3980
|
+
"tags": [
|
|
3981
|
+
"subscriptions",
|
|
3982
|
+
"price",
|
|
3983
|
+
"billing",
|
|
3984
|
+
"finance"
|
|
3985
|
+
],
|
|
3986
|
+
"schedule": "0 8 1 * *",
|
|
3987
|
+
"timezone": "UTC",
|
|
3988
|
+
"runner": "shell",
|
|
3989
|
+
"modes": [
|
|
3990
|
+
"script"
|
|
3991
|
+
],
|
|
3992
|
+
"compatible_agents": [
|
|
3993
|
+
"generic",
|
|
3994
|
+
"claude",
|
|
3995
|
+
"codex"
|
|
3996
|
+
],
|
|
3997
|
+
"path": "jobs/finance/subscription-price-hike-watch.yaml"
|
|
3998
|
+
},
|
|
2816
3999
|
{
|
|
2817
4000
|
"id": "sudo-usage-audit",
|
|
2818
4001
|
"version": 1,
|
|
@@ -3106,6 +4289,30 @@
|
|
|
3106
4289
|
],
|
|
3107
4290
|
"path": "jobs/fleet/vehicle-maintenance-due-check.yaml"
|
|
3108
4291
|
},
|
|
4292
|
+
{
|
|
4293
|
+
"id": "vehicle-registration-expiry-check",
|
|
4294
|
+
"version": 1,
|
|
4295
|
+
"name": "Fleet Vehicle Registration Expiry Check",
|
|
4296
|
+
"description": "Warns you before a fleet vehicle's registration expires. Use this if a vehicle has ever gotten pulled over, or failed a job site check-in, because its registration quietly lapsed.",
|
|
4297
|
+
"category": "fleet",
|
|
4298
|
+
"tags": [
|
|
4299
|
+
"fleet",
|
|
4300
|
+
"registration",
|
|
4301
|
+
"compliance"
|
|
4302
|
+
],
|
|
4303
|
+
"schedule": "0 8 1 * *",
|
|
4304
|
+
"timezone": "UTC",
|
|
4305
|
+
"runner": "shell",
|
|
4306
|
+
"modes": [
|
|
4307
|
+
"script"
|
|
4308
|
+
],
|
|
4309
|
+
"compatible_agents": [
|
|
4310
|
+
"generic",
|
|
4311
|
+
"claude",
|
|
4312
|
+
"codex"
|
|
4313
|
+
],
|
|
4314
|
+
"path": "jobs/fleet/vehicle-registration-expiry-check.yaml"
|
|
4315
|
+
},
|
|
3109
4316
|
{
|
|
3110
4317
|
"id": "vendor-payment-deadline-reminder",
|
|
3111
4318
|
"version": 1,
|
|
@@ -3154,6 +4361,30 @@
|
|
|
3154
4361
|
],
|
|
3155
4362
|
"path": "jobs/travel/visa-expiry-check.yaml"
|
|
3156
4363
|
},
|
|
4364
|
+
{
|
|
4365
|
+
"id": "volunteer-hours-shortfall-check",
|
|
4366
|
+
"version": 1,
|
|
4367
|
+
"name": "Volunteer Hours Shortfall Check",
|
|
4368
|
+
"description": "Compares logged volunteer hours against a program's target and flags a shortfall. Use this if a program has ever fallen behind on a grant's volunteer-hour commitment without anyone noticing until the report was due.",
|
|
4369
|
+
"category": "nonprofit",
|
|
4370
|
+
"tags": [
|
|
4371
|
+
"nonprofit",
|
|
4372
|
+
"volunteers",
|
|
4373
|
+
"programs"
|
|
4374
|
+
],
|
|
4375
|
+
"schedule": "0 9 1 * *",
|
|
4376
|
+
"timezone": "UTC",
|
|
4377
|
+
"runner": "shell",
|
|
4378
|
+
"modes": [
|
|
4379
|
+
"script"
|
|
4380
|
+
],
|
|
4381
|
+
"compatible_agents": [
|
|
4382
|
+
"generic",
|
|
4383
|
+
"claude",
|
|
4384
|
+
"codex"
|
|
4385
|
+
],
|
|
4386
|
+
"path": "jobs/nonprofit/volunteer-hours-shortfall-check.yaml"
|
|
4387
|
+
},
|
|
3157
4388
|
{
|
|
3158
4389
|
"id": "waf-rule-change-watch",
|
|
3159
4390
|
"version": 1,
|
|
@@ -3178,6 +4409,31 @@
|
|
|
3178
4409
|
],
|
|
3179
4410
|
"path": "jobs/security/waf-rule-change-watch.yaml"
|
|
3180
4411
|
},
|
|
4412
|
+
{
|
|
4413
|
+
"id": "wallet-balance-watch",
|
|
4414
|
+
"version": 1,
|
|
4415
|
+
"name": "Wallet Balance Watch",
|
|
4416
|
+
"description": "Checks a public wallet address's balance and alerts if it drops below a threshold, without needing any private key or exchange API access. Use this if you've ever wanted a heads-up when a hot wallet's gas/funding balance ran low.",
|
|
4417
|
+
"category": "crypto",
|
|
4418
|
+
"tags": [
|
|
4419
|
+
"crypto",
|
|
4420
|
+
"wallet",
|
|
4421
|
+
"balance",
|
|
4422
|
+
"blockchain"
|
|
4423
|
+
],
|
|
4424
|
+
"schedule": "*/30 * * * *",
|
|
4425
|
+
"timezone": "UTC",
|
|
4426
|
+
"runner": "shell",
|
|
4427
|
+
"modes": [
|
|
4428
|
+
"script"
|
|
4429
|
+
],
|
|
4430
|
+
"compatible_agents": [
|
|
4431
|
+
"generic",
|
|
4432
|
+
"claude",
|
|
4433
|
+
"codex"
|
|
4434
|
+
],
|
|
4435
|
+
"path": "jobs/crypto/wallet-balance-watch.yaml"
|
|
4436
|
+
},
|
|
3181
4437
|
{
|
|
3182
4438
|
"id": "warranty-expiry-reminder",
|
|
3183
4439
|
"version": 1,
|
|
@@ -3226,6 +4482,34 @@
|
|
|
3226
4482
|
],
|
|
3227
4483
|
"path": "jobs/personal/water-intake-reminder.yaml"
|
|
3228
4484
|
},
|
|
4485
|
+
{
|
|
4486
|
+
"id": "weather-frost-alert",
|
|
4487
|
+
"version": 1,
|
|
4488
|
+
"name": "Frost/Freeze Risk Alert",
|
|
4489
|
+
"description": "Checks the forecast for your fields and warns if frost or freeze temperatures are coming, so you have time to cover crops or run frost-protection irrigation. Use this if a surprise cold snap has ever cost you a harvest.",
|
|
4490
|
+
"category": "agriculture",
|
|
4491
|
+
"tags": [
|
|
4492
|
+
"weather",
|
|
4493
|
+
"frost",
|
|
4494
|
+
"crops",
|
|
4495
|
+
"alert"
|
|
4496
|
+
],
|
|
4497
|
+
"schedule": "0 18 * * *",
|
|
4498
|
+
"timezone": "America/Chicago",
|
|
4499
|
+
"runner": "hybrid",
|
|
4500
|
+
"modes": [
|
|
4501
|
+
"script",
|
|
4502
|
+
"agent-prompt"
|
|
4503
|
+
],
|
|
4504
|
+
"compatible_agents": [
|
|
4505
|
+
"claude",
|
|
4506
|
+
"codex",
|
|
4507
|
+
"hermes",
|
|
4508
|
+
"openclaw",
|
|
4509
|
+
"generic"
|
|
4510
|
+
],
|
|
4511
|
+
"path": "jobs/agriculture/weather-frost-alert.yaml"
|
|
4512
|
+
},
|
|
3229
4513
|
{
|
|
3230
4514
|
"id": "weekly-report",
|
|
3231
4515
|
"version": 1,
|