@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 CHANGED
@@ -58,7 +58,11 @@ crondex/
58
58
  ├── jobs/
59
59
  │ ├── devops/
60
60
  │ ├── productivity/
61
- └── personal/
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
- | id | category | schedule | modes |
70
- |---|---|---|---|
71
- | `dependency-audit` | devops | `0 8 * * 1` | script + agent-prompt |
72
- | `log-cleanup` | devops | `30 3 * * *` | script |
73
- | `repo-health-check` | devops | `0 9 * * 1-5` | script + agent-prompt |
74
- | `backup-reminder` | devops | `0 9 * * *` | script |
75
- | `ssl-cert-expiry-check` | devops | `0 6 * * *` | script |
76
- | `uptime-ping-check` | devops | `*/15 * * * *` | script |
77
- | `cost-alert` | devops | `0 7 * * *` | script + agent-prompt |
78
- | `daily-standup-summary` | productivity | `0 8 * * 1-5` | script + agent-prompt |
79
- | `inbox-triage` | productivity | `0 7,13 * * 1-5` | agent-prompt only |
80
- | `weekly-report` | productivity | `0 16 * * 5` | script + agent-prompt |
81
- | `bill-due-reminder` | personal | `0 9 * * *` | script |
82
- | `habit-checkin` | personal | `0 20 * * *` | script |
83
- | `meal-plan-reminder` | personal | `0 9 * * 0` | script + agent-prompt |
84
-
85
- Full details (description, tags, variables) live in `catalog.json` and each
86
- job's YAML file.
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