Skip to content
OpenSmartRoute
Skillv1.0.0

schedule

Create a scheduled task that can be run on demand or automatically on an interval. Distills the current session into a self-contained reusable prompt with cronExpression or fireAt, then calls the crea

by organvm-iv-taxis(0) 0 installs
Free
Sign in to install

Free account. Installing gives you the manifest plus copy-paste snippets.

See reviews

About

Imported from organvm-iv-taxis/a-i--skills (skills/tools/schedule/SKILL.md). Install upstream with npx skills add organvm-iv-taxis/a-i--skills --skill schedule. Copyright stays with the author (MIT).

You are creating a reusable shortcut from the current session. Follow these steps:

1. Analyze the session

Review the session history to identify the core task the user performed or requested. Distill it into a single, repeatable objective.

2. Draft a prompt

The prompt will be used for future autonomous runs — it must be entirely self-contained. Future runs will NOT have access to this session, so never reference "the current conversation," "the above," or any ephemeral context.

Include in the description:

  • A clear objective statement (what to accomplish)
  • Specific steps to execute
  • Any relevant file paths, URLs, repositories, or tool names
  • Expected output or success criteria
  • Any constraints or preferences the user expressed

Write the description in second-person imperative ("Check the inbox…", "Run the test suite…"). Keep it concise but complete enough that another Claude session could execute it cold.

3. Choose a taskName

Pick a short, descriptive name in kebab-case (e.g. "daily-inbox-summary", "weekly-dep-audit", "format-pr-description").

4. Determine scheduling

Pick one:

  • Recurring ("every morning", "weekdays at 5pm", "hourly") → cronExpression
  • One-time with a specific moment ("remind me in 5 minutes", "tomorrow at 3pm", "next Friday") → fireAt ISO timestamp
  • Ad-hoc (no automatic run; user will trigger manually) → omit both
  • Ambiguous → propose a schedule and ask the user to confirm before proceeding

cronExpression: Evaluated in the user's LOCAL timezone, not UTC. Use local times directly — e.g. "8am every Friday" → 0 8 * * 5.

fireAt: Compute the exact moment and emit a full ISO 8601 string with timezone offset, e.g. 2026-03-05T14:30:00-08:00. Never use cron for one-time tasks — cron has no one-shot semantics.

Finally, call the "create_scheduled_task" tool.

Use it

Copy one of these into your project. Installing also returns the manifest and these snippets.

yaml
targets:
  - https://api.opensmartroute.ai/api/v1/registry/organvm-iv-taxis-a-i-skills-schedule/manifest   # or paste the manifest below

Manifest

An Open Capability Manifest: the router reads it to know what this does, what it costs and when to pick it.

organvm-iv-taxis-a-i-skills-schedule.ocm.jsonjson
{
  "ocm": "1",
  "id": "organvm-iv-taxis-a-i-skills-schedule",
  "kind": "skill",
  "name": "schedule",
  "description": "Create a scheduled task that can be run on demand or automatically on an interval. Distills the current session into a self-contained reusable prompt with cronExpression or fireAt, then calls the create_scheduled_task tool. Use when the user wants a recurring or one-time task scheduled — e.g. 'remind me every Friday', 'run this hourly', 'schedule a daily inbox check'.",
  "publisher": "organvm-iv-taxis",
  "version": "1.0.0",
  "capabilities": {
    "domains": [
      "general"
    ],
    "tags": [
      "skill-md",
      "scheduling",
      "automation",
      "recurring-tasks",
      "cron",
      "one-time-tasks",
      "skills-sh"
    ],
    "languages": [
      "en"
    ]
  },
  "quality_prior": 0.6,
  "examples": [
    "Create a scheduled task that can be run on demand or automatically on an interval. Distills the current session into a self-contained reusable prompt with cronExpression or fireAt, then calls the create_scheduled_task tool. Use when the user wants a recurring or one-time task scheduled — e.g. 'remind me every Friday', 'run this hourly', 'schedule a daily inbox check'."
  ],
  "primary": false,
  "metadata": {
    "source": {
      "provider": "skills.sh",
      "repository": "https://github.com/organvm-iv-taxis/a-i--skills",
      "path": "skills/tools/schedule/SKILL.md",
      "ref": "HEAD",
      "url": "https://github.com/organvm-iv-taxis/a-i--skills/blob/HEAD/skills/tools/schedule/SKILL.md",
      "key": "organvm-iv-taxis/a-i--skills/skills/tools/schedule/SKILL.md"
    },
    "license": "MIT"
  },
  "instructions": "You are creating a reusable shortcut from the current session. Follow these steps:\n\n## 1. Analyze the session\n\nReview the session history to identify the core task the user performed or requested. Distill it into a single, repeatable objective.\n\n## 2. Draft a prompt\n\nThe prompt will be used for future autonomous runs — it must be entirely self-contained. Future runs will NOT have access to this session, so never reference \"the current conversation,\" \"the above,\" or any ephemeral context.\n\nInclude in the description:\n- A clear objective statement (what to accomplish)\n- Specific steps to execute",
  "cost": {
    "context_tokens": 464
  }
}

Fetch it by URL: GET /api/v1/registry/organvm-iv-taxis-a-i-skills-schedule/manifest?version=1.0.0

Reviews

Star ratings from people who tried it. One review per account; edit yours any time.

No reviews yet. Install it, try it, and be the first to rate it.