How a scheduled task works
A scheduled task is a saved prompt plus a when. You give it a title, the instructions to run, and a schedule - a one-time moment, a repeating interval, or a cron expression. From then on, whenever the task is due, 100xprompt starts a new session and runs it. Each run is independent and clean, so a recurring report never gets tangled with last week’s conversation.Scheduled tasks run while 100xprompt is live - that is, while a session is open in your terminal or the server is running. Keep 100xprompt running for the times your tasks are due, or use it to fire recurring work during your working hours.
Pick a schedule type
Every schedule is one of three kinds. Match the type to how often the work should happen.| I want the task to… | Use |
|---|---|
| Run once, at a specific future moment | Once |
| Repeat on a fixed gap, forever | Every |
| Fire on a calendar rule (specific hours, weekdays, dates) | Cron |
| Type | Runs | You provide | Example | Fires |
|---|---|---|---|---|
| Once | A single time, then it’s done | An ISO date-time | 2026-06-23T09:00 | June 23, 2026 at 9:00 AM |
| Every | On a repeating interval, forever | A duration | 30s, 5m, 2h, 1d | Every 5 minutes, indefinitely |
| Cron | On a calendar-based schedule | A 5-field cron expression | 0 9 * * 1-5 | 9:00 AM, Monday-Friday |
Once - a future moment
Once - a future moment
Runs a single time at the date-time you name, then retires itself. Give the time in
ISO format, for example
2026-06-23T09:00. Ideal for reminders and one-off jobs you
want to happen later - “run the migration check tomorrow at 8 AM.”Every - a repeating interval
Every - a repeating interval
Runs over and over on a fixed gap. Express the gap as a number and a unit:
Great for polling and watchdogs - “every 15 minutes, check that the staging build is green.”
| Unit | Meaning | Example |
|---|---|---|
s | seconds | 30s |
m | minutes | 5m |
h | hours | 2h |
d | days | 1d |
Cron - calendar precision
Cron - calendar precision
Runs whenever the clock matches a standard 5-field cron expression:Each field accepts a single value, a
* wildcard, a range (9-17), a list (0,30),
a step (*/15), or a combination (0,30 9-17 * * 1-5). Use cron when timing matters -
a specific hour, only on weekdays, or the first of the month.| Expression | Meaning |
|---|---|
0 9 * * * | Every day at 9:00 AM |
0 9 * * 1-5 | 9:00 AM on weekdays |
*/15 * * * * | Every 15 minutes |
0 0 1 * * | Midnight on the 1st of each month |
30 17 * * 5 | 5:30 PM every Friday |
Set up a scheduled task
Suppose you want a weekday PR review waiting each morning. Create schedules by asking 100xprompt in plain language - describe the work and the timing, and it saves the task for you.Describe the task and the timing
Tell 100xprompt what to run and when. Be specific about both:You can phrase the timing naturally (“every 30 minutes”, “tomorrow at 8am”,
“at 9am on weekdays”) or hand over an exact interval or cron expression.
Choose which agent runs it
By default the task runs with your standard agent. To point it at a purpose-built
agent - a planner, a reviewer, or one of your own - name it when you set the schedule.
The task will run every time with that agent’s instructions, model, and allowed tools.
Confirm the schedule
100xprompt saves the task and reports its next run time, so you can confirm the
timing landed the way you meant. A repeating task shows its next occurrence; a one-time
task shows the single moment it will fire.
List and remove schedules
Manage your tasks the same conversational way you create them.- List
- Remove
Ask to list scheduled tasks to see everything you have set up. Each entry shows its
title, whether it’s on or off, its type, the next run time, and how many times it has
run - plus a note if the last run hit an error.
Match the schedule to the job
Nightly maintenance
Format code, prune stale branches, refresh dependencies, or regenerate artifacts
overnight - on a
cron schedule or 1d interval - so your morning starts clean.Recurring reports
Summarize open pull requests, changelog activity, or test coverage on a weekly cron
(
0 9 * * 1) and have the write-up waiting for you.Periodic checks
Poll a build, watch a health endpoint, or verify a deploy on a short
every interval
and flag anything that drifts.See a recurring schedule over time
Here’s how a weekday-morning task plays out across a week - it fires each qualifying day and skips the rest.Related
- Background Tasks: kick off long-running work on demand and collect it when it’s done.
- Workflows: chain steps, agents, and tools into repeatable pipelines.
Background Tasks
Kick off long-running work that continues while you keep going - and check back on it
when it’s done.
Workflows
Chain steps, agents, and tools into repeatable pipelines for the work you do again and
again.