AI Agent Hub
Back to plugins
⚙️

dsh-schedule-enable

Workflow Updated 2026.08.26

Run the following command in DeepSeek Harness:

dsh plugin install shixiong0529/dsh-schedule-enable

Paste the following prompt into your AI chat to install this plugin:

Run dsh plugin install shixiong0529/dsh-schedule-enable in your DeepSeek Harness environment (version ≥ 0.1.1-rc.2); the source repository is https://github.com/shixiong0529/dsh-schedule-enable — restart the target profile afterward to activate the scheduler.

About this plugin

By default, Agent sessions in DeepSeek Harness have no built-in scheduling capability. dsh-schedule-enable is a patch-only configuration bundle that, once installed into a target profile, activates the platform's native persistent scheduler (@deepseek-ai/dsh-schedule). This grants active root agents session-scoped scheduling tools, enabling natural-language requests such as "remind me to check backups in 3 days."

Once enabled, agents gain three scheduling tools: schedule_create supports reminders via delay seconds, an RFC 3339 timestamp, or a fixed recurrence (minimum 5 minutes); schedule_list returns all active reminders in the current session in creation order with UTC target times and scheduled/overdue status; schedule_delete removes a reminder by its exact id. All state is persisted in the session event log, cold sessions resume with overdue semantics rather than replaying missed occurrences, and Cron or calendar expressions are not supported.

It is ideal for developers who want their agents in the Web UI or any CLI profile to handle timed reminders. The bundle has no module entry point and no external dependencies; it contributes a single configuration patch line, keeps its footprint minimal, and is fully platform-resolved, making it natively compatible with any Harness build that includes the dsh-schedule baseline without extra maintenance overhead.

Use Cases

  • Create scheduled reminders in a new Web UI session via natural-language agent commands
  • Set up fixed-interval periodic check reminders (minimum 5 minutes) for an active agent session
  • Manage active scheduling reminders in the current session by listing all entries and deleting a specific one by id

Best For

  • DeepSeek Harness users who want agents to handle timed reminders within a session
  • Developers extending the Web profile workflow with additional tooling
  • Platform integrators seeking a lightweight, zero-dependency configuration patch