@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.
Files changed (41) hide show
  1. package/README.md +39 -39
  2. package/catalog.json +979 -33
  3. package/jobs/agriculture/grain-storage-temperature-check.yaml +34 -0
  4. package/jobs/automotive/warranty-claim-deadline-check.yaml +35 -0
  5. package/jobs/childcare/allergy-action-plan-expiry-check.yaml +34 -0
  6. package/jobs/construction/material-delivery-delay-check.yaml +32 -0
  7. package/jobs/creator/brand-deal-payment-followup-check.yaml +32 -0
  8. package/jobs/crypto/stablecoin-peg-deviation-watch.yaml +33 -0
  9. package/jobs/ecommerce/shipping-delay-check.yaml +31 -0
  10. package/jobs/education/overdue-library-materials-check.yaml +34 -0
  11. package/jobs/events/speaker-confirmation-deadline-check.yaml +35 -0
  12. package/jobs/fitness/locker-rental-expiry-check.yaml +35 -0
  13. package/jobs/fleet/fleet-insurance-expiry-check.yaml +34 -0
  14. package/jobs/gaming/game-server-disk-space-check.yaml +34 -0
  15. package/jobs/government/public-comment-period-closing-check.yaml +35 -0
  16. package/jobs/growth/seat-utilization-upsell-check.yaml +34 -0
  17. package/jobs/healthcare/medical-equipment-calibration-check.yaml +35 -0
  18. package/jobs/hiring/job-posting-expiry-check.yaml +41 -0
  19. package/jobs/home/utility-bill-anomaly-check.yaml +36 -0
  20. package/jobs/hospitality/housekeeping-turnover-time-check.yaml +41 -0
  21. package/jobs/hr/i9-reverification-deadline-check.yaml +36 -0
  22. package/jobs/insurance/beneficiary-designation-review-reminder.yaml +35 -0
  23. package/jobs/inventory/supplier-lead-time-drift-check.yaml +34 -0
  24. package/jobs/investing/bond-cd-maturity-reminder.yaml +31 -0
  25. package/jobs/learning/practice-streak-check.yaml +33 -0
  26. package/jobs/legal/business-license-renewal-check.yaml +37 -0
  27. package/jobs/logistics/port-congestion-watch.yaml +34 -0
  28. package/jobs/manufacturing/equipment-calibration-due-check.yaml +32 -0
  29. package/jobs/marketing/newsletter-unsubscribe-spike-check.yaml +37 -0
  30. package/jobs/nonprofit/event-rsvp-shortfall-check.yaml +40 -0
  31. package/jobs/podcast/transcript-publish-lag-check.yaml +31 -0
  32. package/jobs/realestate/hoa-fee-collection-check.yaml +35 -0
  33. package/jobs/restaurant/supplier-price-increase-watch.yaml +36 -0
  34. package/jobs/retail/markdown-aging-inventory-check.yaml +33 -0
  35. package/jobs/sales/proposal-followup-nudge.yaml +31 -0
  36. package/jobs/support/macro-usage-staleness-check.yaml +33 -0
  37. package/jobs/team/expense-report-deadline-reminder.yaml +28 -0
  38. package/jobs/travel/hotel-cancellation-deadline-reminder.yaml +32 -0
  39. package/jobs/veterinary/medication-inventory-expiry-check.yaml +31 -0
  40. package/jobs/warehousing/returns-processing-backlog-check.yaml +33 -0
  41. package/package.json +1 -1
@@ -0,0 +1,31 @@
1
+ id: medication-inventory-expiry-check
2
+ version: 1
3
+ name: Medication Inventory Expiry Check
4
+ description: >
5
+ Scans the clinic's drug and vaccine inventory log for items expiring
6
+ soon so they can be used, returned, or discarded before they go bad.
7
+ Use this if expired medication has ever turned up still on the shelf
8
+ during an audit.
9
+ category: veterinary
10
+ tags: [veterinary, inventory, medication, expiry]
11
+ schedule: "0 8 * * 1"
12
+ timezone: "UTC"
13
+ runner: shell
14
+ command: >
15
+ today_epoch=$(date +%s); warn_days={{warn_days_before_expiry}};
16
+ { read -r header; while IFS=',' read -r drug lot expiry; do
17
+ [ -z "$drug" ] && continue;
18
+ exp_epoch=$(date -j -f %Y-%m-%d "$expiry" +%s 2>/dev/null || date -d "$expiry" +%s);
19
+ days_left=$(( (exp_epoch-today_epoch)/86400 ));
20
+ if [ "$days_left" -lt 0 ]; then echo "EXPIRED: $drug (lot $lot) expired on $expiry — remove from shelf.";
21
+ elif [ "$days_left" -le "$warn_days" ]; then echo "EXPIRING SOON: $drug (lot $lot), $days_left day(s) left ($expiry)."; fi
22
+ done; } < "{{inventory_csv_path}}"
23
+ variables:
24
+ inventory_csv_path:
25
+ default: "./medication-inventory.csv"
26
+ description: "Path to a CSV with columns: drug_name,lot_number,expiry_date (YYYY-MM-DD)."
27
+ warn_days_before_expiry:
28
+ default: 30
29
+ description: Flag items expiring within this many days.
30
+ compatible_agents: [generic, claude, codex]
31
+ notes: Zero-token. Read-only check — always visually confirm an item before discarding or returning it.
@@ -0,0 +1,33 @@
1
+ id: returns-processing-backlog-check
2
+ version: 1
3
+ name: Returns Processing Backlog Check
4
+ description: >
5
+ Scans the returns log for items that have sat unprocessed longer than
6
+ your target turnaround time. Use this if returned inventory has ever
7
+ piled up because nobody was tracking how long items had been waiting
8
+ to be inspected and restocked or disposed of.
9
+ category: warehousing
10
+ tags: [warehousing, returns, backlog, logistics]
11
+ schedule: "0 7 * * *"
12
+ timezone: "UTC"
13
+ runner: shell
14
+ command: >
15
+ today_epoch=$(date +%s); max_days={{max_days_in_queue}};
16
+ { read -r header; while IFS=',' read -r rma_id received_date status; do
17
+ [ -z "$rma_id" ] && continue;
18
+ [ "$status" = "processed" ] && continue;
19
+ recv_epoch=$(date -j -f %Y-%m-%d "$received_date" +%s 2>/dev/null || date -d "$received_date" +%s);
20
+ days_waiting=$(( (today_epoch-recv_epoch)/86400 ));
21
+ if [ "$days_waiting" -ge "$max_days" ]; then
22
+ echo "BACKLOGGED: RMA $rma_id received $received_date, $days_waiting day(s) unprocessed (status: $status).";
23
+ fi
24
+ done; } < "{{returns_log_csv_path}}"
25
+ variables:
26
+ returns_log_csv_path:
27
+ default: "./returns-log.csv"
28
+ description: "Path to a CSV with columns: rma_id,received_date (YYYY-MM-DD),status (processed/pending/etc)."
29
+ max_days_in_queue:
30
+ default: 3
31
+ description: Flag returns that have sat unprocessed this many days or longer.
32
+ compatible_agents: [generic, claude, codex]
33
+ notes: Zero-token. Assumes one row per return in the CSV; any status other than "processed" is treated as still in queue.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wonsukchoi/crondex",
3
- "version": "0.18.0",
3
+ "version": "0.19.0",
4
4
  "description": "A public directory of pre-made, agent-editable cron jobs.",
5
5
  "type": "module",
6
6
  "license": "MIT",