smithery.ai

add-schedules

Insert schedule rows into the local database (schedules) from a JSON array. Use when bulk-loading schedule entries with prompt_name, input_value, and scheduled_date via scripts/add_schedules.py.

First seen Apr 2, 2026

Installation

$ npx skills add https://smithery.ai

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from smithery.ai · top by installs.

npx skills add https://smithery.ai

Browse all from smithery.ai

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,079 B
  • docs SUMMARY.md 215 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 1 installs

SKILL.md

Add Schedules

Use scripts/add_schedules.py to insert multiple records into schedules.

Run

uv run scripts/add_schedules.py '[{"prompt_name":"remind_ask","input_value":"パチンコ行ってないか確認","scheduled_date":"2026-01-10 09:30"}]'
cat schedules.json | uv run scripts/add_schedules.py -

Inputs

Each record must be an object with:

  • prompt_name (string)
  • input_value (string)
  • scheduled_date as YYYYMMDD, YYYYMMDDhhmm, YYYY-MM-DD, YYYY-MM-DD hh:mm, or YYYY-MM-DDTHH:MM (minute precision). Integers are accepted for the numeric formats.

id and state are ignored if present. Any other extra fields cause an error.

Outputs

Prints a single line of JSON:

{"inserted": 2}

Notes

  • Database URL comes from DATABASE_URL (default: sqlite:///./app.db).