@wonsukchoi/crondex 0.19.0 → 0.20.1

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 (42) hide show
  1. package/README.md +41 -40
  2. package/catalog.json +969 -18
  3. package/jobs/agriculture/field-soil-test-due-reminder.yaml +35 -0
  4. package/jobs/automotive/fleet-inspection-expiry-check.yaml +35 -0
  5. package/jobs/childcare/classroom-supply-low-stock-check.yaml +28 -0
  6. package/jobs/construction/crew-safety-cert-expiry-check.yaml +35 -0
  7. package/jobs/creator/affiliate-link-expiry-check.yaml +35 -0
  8. package/jobs/crypto/nft-floor-price-watch.yaml +37 -0
  9. package/jobs/ecommerce/coupon-code-expiry-check.yaml +36 -0
  10. package/jobs/education/tuition-payment-plan-delinquency-check.yaml +35 -0
  11. package/jobs/events/post-event-survey-response-rate-watch.yaml +39 -0
  12. package/jobs/fitness/class-waitlist-overflow-check.yaml +31 -0
  13. package/jobs/fleet/vehicle-idle-time-check.yaml +31 -0
  14. package/jobs/gaming/player-contract-renewal-check.yaml +35 -0
  15. package/jobs/government/public-records-retention-purge-check.yaml +32 -0
  16. package/jobs/growth/onboarding-completion-stall-check.yaml +38 -0
  17. package/jobs/healthcare/referral-pending-followup-check.yaml +36 -0
  18. package/jobs/hiring/reference-check-overdue-reminder.yaml +36 -0
  19. package/jobs/home/gutter-cleaning-reminder.yaml +30 -0
  20. package/jobs/hospitality/lost-and-found-item-aging-check.yaml +36 -0
  21. package/jobs/hr/{payroll-run-reminder.yaml → payroll-cutoff-checklist-reminder.yaml} +1 -1
  22. package/jobs/hr/probation-period-review-reminder.yaml +36 -0
  23. package/jobs/insurance/endorsement-request-followup-check.yaml +37 -0
  24. package/jobs/inventory/purchase-order-receiving-delay-check.yaml +33 -0
  25. package/jobs/investing/dca-contribution-reminder.yaml +33 -0
  26. package/jobs/learning/webinar-attendance-reminder.yaml +32 -0
  27. package/jobs/legal/patent-maintenance-fee-reminder.yaml +35 -0
  28. package/jobs/logistics/driver-hos-compliance-check.yaml +38 -0
  29. package/jobs/manufacturing/energy-consumption-spike-check.yaml +37 -0
  30. package/jobs/marketing/broken-campaign-link-check.yaml +31 -0
  31. package/jobs/nonprofit/donation-acknowledgment-lag-check.yaml +32 -0
  32. package/jobs/podcast/rss-feed-health-check.yaml +25 -0
  33. package/jobs/realestate/insurance-policy-renewal-reminder.yaml +31 -0
  34. package/jobs/restaurant/walk-in-cooler-temp-log-check.yaml +31 -0
  35. package/jobs/retail/loyalty-points-expiry-reminder.yaml +31 -0
  36. package/jobs/sales/quote-expiry-reminder.yaml +24 -0
  37. package/jobs/support/knowledge-base-article-staleness-check.yaml +39 -0
  38. package/jobs/team/new-hire-onboarding-task-check.yaml +32 -0
  39. package/jobs/travel/flight-layover-buffer-check.yaml +35 -0
  40. package/jobs/veterinary/lab-result-turnaround-check.yaml +35 -0
  41. package/jobs/warehousing/pallet-putaway-delay-check.yaml +35 -0
  42. package/package.json +1 -1
@@ -0,0 +1,35 @@
1
+ id: pallet-putaway-delay-check
2
+ version: 1
3
+ name: Pallet Putaway Delay Check
4
+ description: >
5
+ Checks how long received pallets have been sitting in the receiving
6
+ area before getting put away, and flags anything stuck too long. Use
7
+ this if inventory has ever gone "missing" only to turn up still
8
+ shrink-wrapped on a receiving pallet from three days ago.
9
+ category: warehousing
10
+ tags: [warehousing, receiving, putaway, inventory]
11
+ schedule: "0 */2 * * *"
12
+ timezone: "UTC"
13
+ runner: shell
14
+ command: >
15
+ now=$(date +%s);
16
+ awk -F',' -v now="$now" -v max_hours="{{max_hours_in_receiving}}" '
17
+ NR==1 {next}
18
+ $4 == "received" {
19
+ cmd = "date -d \"" $2 "\" +%s 2>/dev/null || date -j -f \"%Y-%m-%d %H:%M\" \"" $2 "\" +%s 2>/dev/null";
20
+ cmd | getline received_epoch; close(cmd);
21
+ age_hours = (now - received_epoch) / 3600;
22
+ if (age_hours >= max_hours) {
23
+ printf "STUCK: pallet %s — received %s (%d hour(s) ago), still not put away\n", $1, $2, age_hours;
24
+ }
25
+ }
26
+ ' "{{receiving_log_csv_path}}"
27
+ variables:
28
+ receiving_log_csv_path:
29
+ default: "./receiving-log.csv"
30
+ description: "Path to a CSV with columns: pallet_id,received_time (YYYY-MM-DD HH:MM),zone,status (received/put_away)."
31
+ max_hours_in_receiving:
32
+ default: 24
33
+ description: Hours a pallet can sit in receiving before it's flagged as a putaway delay.
34
+ compatible_agents: [generic, claude, codex]
35
+ notes: This checks time-in-receiving only — pair with `cycle-count-schedule-check` for whether the eventual putaway locations get counted on schedule.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wonsukchoi/crondex",
3
- "version": "0.19.0",
3
+ "version": "0.20.1",
4
4
  "description": "A public directory of pre-made, agent-editable cron jobs.",
5
5
  "type": "module",
6
6
  "license": "MIT",