@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.
- package/README.md +41 -40
- package/catalog.json +969 -18
- package/jobs/agriculture/field-soil-test-due-reminder.yaml +35 -0
- package/jobs/automotive/fleet-inspection-expiry-check.yaml +35 -0
- package/jobs/childcare/classroom-supply-low-stock-check.yaml +28 -0
- package/jobs/construction/crew-safety-cert-expiry-check.yaml +35 -0
- package/jobs/creator/affiliate-link-expiry-check.yaml +35 -0
- package/jobs/crypto/nft-floor-price-watch.yaml +37 -0
- package/jobs/ecommerce/coupon-code-expiry-check.yaml +36 -0
- package/jobs/education/tuition-payment-plan-delinquency-check.yaml +35 -0
- package/jobs/events/post-event-survey-response-rate-watch.yaml +39 -0
- package/jobs/fitness/class-waitlist-overflow-check.yaml +31 -0
- package/jobs/fleet/vehicle-idle-time-check.yaml +31 -0
- package/jobs/gaming/player-contract-renewal-check.yaml +35 -0
- package/jobs/government/public-records-retention-purge-check.yaml +32 -0
- package/jobs/growth/onboarding-completion-stall-check.yaml +38 -0
- package/jobs/healthcare/referral-pending-followup-check.yaml +36 -0
- package/jobs/hiring/reference-check-overdue-reminder.yaml +36 -0
- package/jobs/home/gutter-cleaning-reminder.yaml +30 -0
- package/jobs/hospitality/lost-and-found-item-aging-check.yaml +36 -0
- package/jobs/hr/{payroll-run-reminder.yaml → payroll-cutoff-checklist-reminder.yaml} +1 -1
- package/jobs/hr/probation-period-review-reminder.yaml +36 -0
- package/jobs/insurance/endorsement-request-followup-check.yaml +37 -0
- package/jobs/inventory/purchase-order-receiving-delay-check.yaml +33 -0
- package/jobs/investing/dca-contribution-reminder.yaml +33 -0
- package/jobs/learning/webinar-attendance-reminder.yaml +32 -0
- package/jobs/legal/patent-maintenance-fee-reminder.yaml +35 -0
- package/jobs/logistics/driver-hos-compliance-check.yaml +38 -0
- package/jobs/manufacturing/energy-consumption-spike-check.yaml +37 -0
- package/jobs/marketing/broken-campaign-link-check.yaml +31 -0
- package/jobs/nonprofit/donation-acknowledgment-lag-check.yaml +32 -0
- package/jobs/podcast/rss-feed-health-check.yaml +25 -0
- package/jobs/realestate/insurance-policy-renewal-reminder.yaml +31 -0
- package/jobs/restaurant/walk-in-cooler-temp-log-check.yaml +31 -0
- package/jobs/retail/loyalty-points-expiry-reminder.yaml +31 -0
- package/jobs/sales/quote-expiry-reminder.yaml +24 -0
- package/jobs/support/knowledge-base-article-staleness-check.yaml +39 -0
- package/jobs/team/new-hire-onboarding-task-check.yaml +32 -0
- package/jobs/travel/flight-layover-buffer-check.yaml +35 -0
- package/jobs/veterinary/lab-result-turnaround-check.yaml +35 -0
- package/jobs/warehousing/pallet-putaway-delay-check.yaml +35 -0
- 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.
|