Agent skill
add-schedules
Insert schedule rows into the local database (schedules) from a JSON array. Use when bulk-loading schedule entries with script_name, input_value, and scheduled_date via scripts/add_schedules.py.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/development/add-schedules
SKILL.md
Add Schedules
Use scripts/add_schedules.py to insert multiple records into schedules.
Run
uv run scripts/add_schedules.py '[{"script_name":"pavlok","input_value":"zap 30","scheduled_date":"2026-01-10 09:30"}]'
cat schedules.json | uv run scripts/add_schedules.py -
Inputs
Each record must be an object with:
script_name(string)input_value(string)scheduled_dateasYYYYMMDD,YYYYMMDDhhmm,YYYY-MM-DD, orYYYY-MM-DD hh:mm(minute precision)
id and is_execute are ignored if present. Any other extra fields cause an error.
Notes
- Database URL comes from
DATABASE_URL(default:sqlite:///./app.db).
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?