@wonsukchoi/crondex 0.1.1 → 0.3.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 +78 -19
- package/catalog.json +537 -1
- package/jobs/content/broken-link-check.yaml +33 -0
- package/jobs/content/changelog-digest.yaml +40 -0
- package/jobs/content/social-mentions-watch.yaml +32 -0
- package/jobs/devops/db-backup-verify.yaml +37 -0
- package/jobs/devops/disk-space-check.yaml +26 -0
- package/jobs/devops/docker-image-prune.yaml +24 -0
- package/jobs/devops/env-drift-check.yaml +34 -0
- package/jobs/devops/license-compliance-check.yaml +31 -0
- package/jobs/devops/orphaned-branch-cleanup.yaml +28 -0
- package/jobs/devops/stale-dependency-pr-nudge.yaml +25 -0
- package/jobs/finance/net-worth-snapshot.yaml +33 -0
- package/jobs/finance/saas-seat-audit.yaml +35 -0
- package/jobs/finance/subscription-audit.yaml +34 -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/personal/screen-time-check.yaml +27 -0
- package/jobs/personal/water-intake-reminder.yaml +20 -0
- package/jobs/productivity/focus-block-reminder.yaml +25 -0
- package/jobs/security/failed-login-watch.yaml +37 -0
- package/jobs/security/open-port-check.yaml +36 -0
- package/jobs/security/secrets-scan.yaml +28 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -58,7 +58,11 @@ crondex/
|
|
|
58
58
|
├── jobs/
|
|
59
59
|
│ ├── devops/
|
|
60
60
|
│ ├── productivity/
|
|
61
|
-
│
|
|
61
|
+
│ ├── personal/
|
|
62
|
+
│ ├── content/
|
|
63
|
+
│ ├── finance/
|
|
64
|
+
│ ├── security/
|
|
65
|
+
│ └── learning/
|
|
62
66
|
└── scripts/
|
|
63
67
|
├── build-catalog.js regenerates catalog.json from jobs/**/*.yaml
|
|
64
68
|
└── validate-jobs.js validates every job against the schema
|
|
@@ -66,24 +70,79 @@ crondex/
|
|
|
66
70
|
|
|
67
71
|
## Available jobs
|
|
68
72
|
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
|
76
|
-
|
|
77
|
-
| `
|
|
78
|
-
| `
|
|
79
|
-
| `
|
|
80
|
-
| `
|
|
81
|
-
| `
|
|
82
|
-
| `
|
|
83
|
-
| `
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
73
|
+
35 jobs across 7 categories. Full details (description, tags, variables)
|
|
74
|
+
live in `catalog.json` and each job's YAML file — run `crondex list` or
|
|
75
|
+
browse `jobs/<category>/` for the plain-language rundown of each.
|
|
76
|
+
|
|
77
|
+
**devops**
|
|
78
|
+
|
|
79
|
+
| id | schedule | modes |
|
|
80
|
+
|---|---|---|
|
|
81
|
+
| `dependency-audit` | `0 8 * * 1` | script + agent-prompt |
|
|
82
|
+
| `log-cleanup` | `30 3 * * *` | script |
|
|
83
|
+
| `repo-health-check` | `0 9 * * 1-5` | script + agent-prompt |
|
|
84
|
+
| `backup-reminder` | `0 9 * * *` | script |
|
|
85
|
+
| `ssl-cert-expiry-check` | `0 6 * * *` | script |
|
|
86
|
+
| `uptime-ping-check` | `*/15 * * * *` | script |
|
|
87
|
+
| `cost-alert` | `0 7 * * *` | script + agent-prompt |
|
|
88
|
+
| `disk-space-check` | `0 */6 * * *` | script |
|
|
89
|
+
| `docker-image-prune` | `0 4 * * *` | script |
|
|
90
|
+
| `env-drift-check` | `0 8 * * *` | script |
|
|
91
|
+
| `stale-dependency-pr-nudge` | `0 9 * * 1-5` | script |
|
|
92
|
+
| `db-backup-verify` | `0 5 * * *` | script |
|
|
93
|
+
| `license-compliance-check` | `0 8 * * 1` | script |
|
|
94
|
+
| `orphaned-branch-cleanup` | `0 9 * * 1` | script |
|
|
95
|
+
|
|
96
|
+
**productivity**
|
|
97
|
+
|
|
98
|
+
| id | schedule | modes |
|
|
99
|
+
|---|---|---|
|
|
100
|
+
| `daily-standup-summary` | `0 8 * * 1-5` | script + agent-prompt |
|
|
101
|
+
| `inbox-triage` | `0 7,13 * * 1-5` | agent-prompt only |
|
|
102
|
+
| `weekly-report` | `0 16 * * 5` | script + agent-prompt |
|
|
103
|
+
| `focus-block-reminder` | `0 9,14 * * 1-5` | script |
|
|
104
|
+
|
|
105
|
+
**personal**
|
|
106
|
+
|
|
107
|
+
| id | schedule | modes |
|
|
108
|
+
|---|---|---|
|
|
109
|
+
| `bill-due-reminder` | `0 9 * * *` | script |
|
|
110
|
+
| `habit-checkin` | `0 20 * * *` | script |
|
|
111
|
+
| `meal-plan-reminder` | `0 9 * * 0` | script + agent-prompt |
|
|
112
|
+
| `water-intake-reminder` | `0 9,12,15,18 * * *` | script |
|
|
113
|
+
| `screen-time-check` | `0 20 * * *` | agent-prompt only |
|
|
114
|
+
|
|
115
|
+
**content**
|
|
116
|
+
|
|
117
|
+
| id | schedule | modes |
|
|
118
|
+
|---|---|---|
|
|
119
|
+
| `changelog-digest` | `0 10 * * 5` | script + agent-prompt |
|
|
120
|
+
| `broken-link-check` | `0 7 * * 1` | script |
|
|
121
|
+
| `social-mentions-watch` | `0 9 * * *` | agent-prompt only |
|
|
122
|
+
|
|
123
|
+
**finance**
|
|
124
|
+
|
|
125
|
+
| id | schedule | modes |
|
|
126
|
+
|---|---|---|
|
|
127
|
+
| `subscription-audit` | `0 9 1 * *` | script |
|
|
128
|
+
| `net-worth-snapshot` | `0 9 1 * *` | script |
|
|
129
|
+
| `saas-seat-audit` | `0 9 1 * *` | script |
|
|
130
|
+
|
|
131
|
+
**security**
|
|
132
|
+
|
|
133
|
+
| id | schedule | modes |
|
|
134
|
+
|---|---|---|
|
|
135
|
+
| `secrets-scan` | `0 3 * * *` | script |
|
|
136
|
+
| `open-port-check` | `0 */4 * * *` | script |
|
|
137
|
+
| `failed-login-watch` | `*/15 * * * *` | script |
|
|
138
|
+
|
|
139
|
+
**learning**
|
|
140
|
+
|
|
141
|
+
| id | schedule | modes |
|
|
142
|
+
|---|---|---|
|
|
143
|
+
| `daily-flashcard-review` | `0 8 * * *` | script |
|
|
144
|
+
| `reading-list-nudge` | `0 9 * * 6` | script |
|
|
145
|
+
| `course-progress-checkin` | `0 9 * * 1` | script |
|
|
87
146
|
|
|
88
147
|
## How a job works
|
|
89
148
|
|