@wonsukchoi/crondex 0.7.0 → 0.8.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 CHANGED
@@ -63,139 +63,55 @@ crondex/
63
63
  ├── bin/crondex.js CLI: list / show / add / recommend
64
64
  ├── catalog.json generated index of every job — read this first
65
65
  ├── schema/job.schema.json spec every job file follows
66
- ├── jobs/
67
- │ ├── devops/
68
- │ ├── productivity/
69
- │ ├── personal/
70
- │ ├── content/
71
- │ ├── finance/
72
- │ ├── security/
73
- │ ├── learning/
74
- │ ├── team/
75
- │ ├── home/
76
- │ ├── travel/
77
- │ └── growth/
66
+ ├── jobs/ one YAML per job, grouped by category subdirectory
78
67
  └── scripts/
79
- ├── build-catalog.js regenerates catalog.json from jobs/**/*.yaml
68
+ ├── build-catalog.js regenerates catalog.json + the summary below from jobs/**/*.yaml
80
69
  └── validate-jobs.js validates every job against the schema
81
70
  ```
82
71
 
83
72
  ## Available jobs
84
73
 
85
- 56 jobs across 11 categories. Full details (description, tags, variables)
86
- live in `catalog.json` and each job's YAML file — run `crondex list` or
87
- browse `jobs/<category>/` for the plain-language rundown of each.
88
-
89
- **devops**
90
-
91
- | id | schedule | modes |
92
- |---|---|---|
93
- | `dependency-audit` | `0 8 * * 1` | script + agent-prompt |
94
- | `log-cleanup` | `30 3 * * *` | script |
95
- | `repo-health-check` | `0 9 * * 1-5` | script + agent-prompt |
96
- | `backup-reminder` | `0 9 * * *` | script |
97
- | `ssl-cert-expiry-check` | `0 6 * * *` | script |
98
- | `uptime-ping-check` | `*/15 * * * *` | script |
99
- | `cost-alert` | `0 7 * * *` | script + agent-prompt |
100
- | `disk-space-check` | `0 */6 * * *` | script |
101
- | `docker-image-prune` | `0 4 * * *` | script |
102
- | `env-drift-check` | `0 8 * * *` | script |
103
- | `stale-dependency-pr-nudge` | `0 9 * * 1-5` | script |
104
- | `db-backup-verify` | `0 5 * * *` | script |
105
- | `license-compliance-check` | `0 8 * * 1` | script |
106
- | `orphaned-branch-cleanup` | `0 9 * * 1` | script |
107
- | `dns-record-check` | `0 */6 * * *` | script |
108
- | `queue-depth-check` | `*/10 * * * *` | script |
109
- | `api-rate-limit-check` | `*/15 * * * *` | script |
110
-
111
- **productivity**
112
-
113
- | id | schedule | modes |
114
- |---|---|---|
115
- | `daily-standup-summary` | `0 8 * * 1-5` | script + agent-prompt |
116
- | `inbox-triage` | `0 7,13 * * 1-5` | agent-prompt only |
117
- | `weekly-report` | `0 16 * * 5` | script + agent-prompt |
118
- | `focus-block-reminder` | `0 9,14 * * 1-5` | script |
119
-
120
- **personal**
121
-
122
- | id | schedule | modes |
123
- |---|---|---|
124
- | `bill-due-reminder` | `0 9 * * *` | script |
125
- | `habit-checkin` | `0 20 * * *` | script |
126
- | `meal-plan-reminder` | `0 9 * * 0` | script + agent-prompt |
127
- | `water-intake-reminder` | `0 9,12,15,18 * * *` | script |
128
- | `screen-time-check` | `0 20 * * *` | agent-prompt only |
129
-
130
- **content**
131
-
132
- | id | schedule | modes |
133
- |---|---|---|
134
- | `changelog-digest` | `0 10 * * 5` | script + agent-prompt |
135
- | `broken-link-check` | `0 7 * * 1` | script |
136
- | `social-mentions-watch` | `0 9 * * *` | agent-prompt only |
137
- | `seo-meta-check` | `0 7 * * 1` | script |
138
- | `rss-feed-validate` | `0 8 * * *` | script |
139
- | `robots-txt-check` | `0 8 * * *` | script |
140
-
141
- **finance**
142
-
143
- | id | schedule | modes |
144
- |---|---|---|
145
- | `subscription-audit` | `0 9 1 * *` | script |
146
- | `net-worth-snapshot` | `0 9 1 * *` | script |
147
- | `saas-seat-audit` | `0 9 1 * *` | script |
148
- | `invoice-overdue-check` | `0 9 * * *` | script |
149
- | `tax-deadline-reminder` | `0 9 * * *` | script |
150
-
151
- **security**
152
-
153
- | id | schedule | modes |
154
- |---|---|---|
155
- | `secrets-scan` | `0 3 * * *` | script |
156
- | `open-port-check` | `0 */4 * * *` | script |
157
- | `failed-login-watch` | `*/15 * * * *` | script |
158
- | `sudo-usage-audit` | `0 * * * *` | script |
159
- | `firewall-rule-diff` | `0 6 * * *` | script |
160
- | `certificate-transparency-watch` | `0 */12 * * *` | script |
161
-
162
- **learning**
163
-
164
- | id | schedule | modes |
165
- |---|---|---|
166
- | `daily-flashcard-review` | `0 8 * * *` | script |
167
- | `reading-list-nudge` | `0 9 * * 6` | script |
168
- | `course-progress-checkin` | `0 9 * * 1` | script |
169
-
170
- **team**
171
-
172
- | id | schedule | modes |
173
- |---|---|---|
174
- | `1on1-prep-reminder` | `0 9 * * 3` | script |
175
- | `pto-balance-check` | `0 9 1 * *` | script |
176
-
177
- **home**
178
-
179
- | id | schedule | modes |
180
- |---|---|---|
181
- | `hvac-filter-reminder` | `0 9 1 * *` | script |
182
- | `smoke-detector-battery-check` | `0 9 1 * *` | script |
183
- | `plant-watering-reminder` | `0 9 * * *` | script |
184
-
185
- **travel**
186
-
187
- | id | schedule | modes |
188
- |---|---|---|
189
- | `passport-expiry-check` | `0 9 1 * *` | script |
190
- | `visa-expiry-check` | `0 9 1 * *` | script |
191
- | `flight-checkin-reminder` | `0 * * * *` | script |
192
-
193
- **growth**
194
-
195
- | id | schedule | modes |
196
- |---|---|---|
197
- | `review-request-nudge` | `0 9 * * *` | script |
198
- | `cart-abandonment-followup` | `0 10 * * *` | script + agent-prompt |
74
+ Full details (description, tags, variables) live in `catalog.json` and each
75
+ job's YAML file — run `crondex list`, `crondex recommend "<what you want>"`,
76
+ or browse `jobs/<category>/` for the plain-language rundown of each. The
77
+ counts below are regenerated by `npm run build-catalog`, so they never drift
78
+ from what's actually in `jobs/`.
79
+
80
+ <!-- BEGIN JOB SUMMARY -->
81
+ 150 jobs across 29 categories:
82
+
83
+ | category | jobs |
84
+ |---|---|
85
+ | `construction` | 3 |
86
+ | `content` | 12 |
87
+ | `creator` | 3 |
88
+ | `devops` | 25 |
89
+ | `education` | 3 |
90
+ | `events` | 3 |
91
+ | `finance` | 9 |
92
+ | `fleet` | 3 |
93
+ | `growth` | 4 |
94
+ | `hiring` | 3 |
95
+ | `home` | 5 |
96
+ | `hospitality` | 3 |
97
+ | `inventory` | 3 |
98
+ | `investing` | 3 |
99
+ | `learning` | 5 |
100
+ | `legal` | 3 |
101
+ | `logistics` | 3 |
102
+ | `manufacturing` | 3 |
103
+ | `marketing` | 3 |
104
+ | `nonprofit` | 3 |
105
+ | `personal` | 6 |
106
+ | `podcast` | 3 |
107
+ | `productivity` | 7 |
108
+ | `realestate` | 3 |
109
+ | `sales` | 3 |
110
+ | `security` | 14 |
111
+ | `support` | 3 |
112
+ | `team` | 4 |
113
+ | `travel` | 5 |
114
+ <!-- END JOB SUMMARY -->
199
115
 
200
116
  ## How a job works
201
117