@wonsukchoi/crondex 0.2.0 → 0.4.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 +42 -2
- package/catalog.json +530 -1
- package/jobs/content/rss-feed-validate.yaml +32 -0
- package/jobs/content/seo-meta-check.yaml +32 -0
- package/jobs/devops/api-rate-limit-check.yaml +31 -0
- package/jobs/devops/db-backup-verify.yaml +37 -0
- package/jobs/devops/dns-record-check.yaml +32 -0
- package/jobs/devops/license-compliance-check.yaml +31 -0
- package/jobs/devops/orphaned-branch-cleanup.yaml +28 -0
- package/jobs/devops/queue-depth-check.yaml +35 -0
- package/jobs/finance/invoice-overdue-check.yaml +32 -0
- package/jobs/finance/saas-seat-audit.yaml +35 -0
- package/jobs/finance/tax-deadline-reminder.yaml +33 -0
- package/jobs/learning/course-progress-checkin.yaml +37 -0
- package/jobs/learning/daily-flashcard-review.yaml +29 -0
- package/jobs/learning/reading-list-nudge.yaml +25 -0
- package/jobs/productivity/focus-block-reminder.yaml +25 -0
- package/jobs/security/failed-login-watch.yaml +37 -0
- package/jobs/security/firewall-rule-diff.yaml +30 -0
- package/jobs/security/open-port-check.yaml +36 -0
- package/jobs/security/secrets-scan.yaml +28 -0
- package/jobs/security/sudo-usage-audit.yaml +35 -0
- package/jobs/team/1on1-prep-reminder.yaml +26 -0
- package/jobs/team/pto-balance-check.yaml +33 -0
- package/package.json +1 -1
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
id: 1on1-prep-reminder
|
|
2
|
+
version: 1
|
|
3
|
+
name: 1:1 Prep Reminder
|
|
4
|
+
description: >
|
|
5
|
+
Nudges you to prep talking points before a recurring 1:1 and shows
|
|
6
|
+
your last notes. Use this if you've ever walked into a 1:1 with
|
|
7
|
+
nothing prepared and just winged it.
|
|
8
|
+
category: team
|
|
9
|
+
tags: [1on1, meetings, team]
|
|
10
|
+
schedule: "0 9 * * 3"
|
|
11
|
+
timezone: "America/Los_Angeles"
|
|
12
|
+
runner: shell
|
|
13
|
+
command: >
|
|
14
|
+
echo "1:1 with {{person_name}} coming up. Jot down talking points.";
|
|
15
|
+
if [ -f "{{notes_file}}" ]; then echo "--- last notes ---"; tail -n 10 "{{notes_file}}"; fi
|
|
16
|
+
variables:
|
|
17
|
+
person_name:
|
|
18
|
+
default: "your manager"
|
|
19
|
+
description: Who the 1:1 is with.
|
|
20
|
+
notes_file:
|
|
21
|
+
default: "./1on1-notes.txt"
|
|
22
|
+
description: Plain text file you append notes/action items to after each 1:1.
|
|
23
|
+
compatible_agents: [generic, claude, codex]
|
|
24
|
+
notes: >
|
|
25
|
+
Zero-token. Adjust the schedule to match your actual 1:1 day/time —
|
|
26
|
+
the default (Wednesday morning) is just a placeholder.
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
id: pto-balance-check
|
|
2
|
+
version: 1
|
|
3
|
+
name: PTO Balance Check
|
|
4
|
+
description: >
|
|
5
|
+
Warns you before unused PTO expires or resets. Use this if you've
|
|
6
|
+
ever lost vacation days because you forgot they don't roll over.
|
|
7
|
+
category: team
|
|
8
|
+
tags: [pto, vacation, team]
|
|
9
|
+
schedule: "0 9 1 * *"
|
|
10
|
+
timezone: "America/Los_Angeles"
|
|
11
|
+
runner: shell
|
|
12
|
+
command: >
|
|
13
|
+
today_epoch=$(date +%s);
|
|
14
|
+
expiry_epoch=$(date -j -f %Y-%m-%d "{{expiry_date}}" +%s 2>/dev/null || date -d "{{expiry_date}}" +%s);
|
|
15
|
+
days_left=$(( (expiry_epoch-today_epoch)/86400 ));
|
|
16
|
+
if [ "$days_left" -lt 0 ]; then echo "note: expiry date has passed — update expiry_date for the next period.";
|
|
17
|
+
elif [ "$days_left" -le {{warn_days_before_expiry}} ] && [ {{pto_balance_hours}} -gt 0 ]; then
|
|
18
|
+
echo "REMINDER: {{pto_balance_hours}}h PTO expires in $days_left day(s) (on {{expiry_date}}) — use it or lose it.";
|
|
19
|
+
else echo "OK: {{pto_balance_hours}}h PTO, $days_left day(s) until expiry."; fi
|
|
20
|
+
variables:
|
|
21
|
+
pto_balance_hours:
|
|
22
|
+
default: 40
|
|
23
|
+
description: Your current unused PTO balance, in hours — update this yourself as it changes.
|
|
24
|
+
expiry_date:
|
|
25
|
+
default: "2026-12-31"
|
|
26
|
+
description: Date (YYYY-MM-DD) this PTO expires or resets.
|
|
27
|
+
warn_days_before_expiry:
|
|
28
|
+
default: 30
|
|
29
|
+
description: Start warning this many days before expiry.
|
|
30
|
+
compatible_agents: [generic, claude, codex]
|
|
31
|
+
notes: >
|
|
32
|
+
Zero-token. You maintain pto_balance_hours and expiry_date yourself —
|
|
33
|
+
this doesn't pull from any HR system.
|