Emit cronjob JSON configurations for hosted schedulers. Generates cron configurations for task automation platforms.
Scanned 9/7/2026
Install to Claude Code
npx -y skills add jiayaoqijia/cryptoskill --skill xspoonai-official-scheduler-cron-json --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Xspoonai Official Scheduler Cron Json?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/jiayaoqijia-xspoonai-official-scheduler-cron-json)More formats (shields.io, HTML) on the badges page.
---
name: scheduler-cron-json
track: ai-productivity
version: 0.1.0
summary: Emit cronjob JSON configurations for hosted schedulers
---
## Description
Emit cronjob JSON configurations for hosted schedulers. Generates cron configurations for task automation platforms.
## Inputs
```json
{
"schedule": "0 0 * * *|cron expression",
"task": "Task name",
"webhook": "Webhook URL"
}
```
## Outputs
```json
{
"ok": true,
"data": {
"config": "Cron configuration",
"next_run": "ISO timestamp"
}
}
```
## Usage
### Demo Mode
```bash
python scripts/main.py --demo
```
### Generate Cron Config
```bash
echo '{"schedule":"0 0 * * *","task":"daily_backup"}' | python3 scripts/main.py
```
## Examples
### Example 1: Create Daily Schedule
```bash
$ echo '{"schedule":"0 0 * * *","task":"daily_backup","webhook":"https://corns-testingbysambit.vercel.app/test"}' | python3 scripts/main.py
{
"ok": true,
"data": {
"config": "0 0 * * * curl https://corns-testingbysambit.vercel.app/test",
"next_run": "2026-02-07T00:00:00Z"
}
}
```
## Error Handling
When an error occurs, the skill returns:
```json
{
"ok": false,
"error": "Error description",
"details": {
"schedule": "Invalid cron expression"
}
}
```
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!