@fingerskier/pi-cron

Cron scheduler plugin for Pi, bridged from the legacy dex-claude-plugin MCP server

Packages

Package details

extensionskill

Install @fingerskier/pi-cron from npm and Pi will load the resources declared by the package manifest.

$ pi install npm:@fingerskier/pi-cron
Package
@fingerskier/pi-cron
Version
2026.5.7
Published
May 7, 2026
Downloads
57/mo · 19/wk
Author
fingerskier
License
MIT
Types
extension, skill
Size
5.3 KB
Dependencies
1 dependency · 0 peers
Pi manifest JSON
{
  "extensions": [
    "./extensions/cron.ts"
  ],
  "skills": [
    "./skills"
  ]
}

Security note

Pi packages can execute code and influence agent behavior. Review the source before installing third-party packages.

README

Cron Pi Plugin

Pi package port of the legacy dex-claude-plugin, renamed for Pi as cron.

Cron schedules one-time or recurring agent jobs. This Pi version registers a TypeScript extension that starts the upstream scheduler MCP stdio server with npx -y dex-claude-plugin and exposes its tools in Pi with a cron_ prefix and Cron-oriented aliases.

Install

pi install npm:@fingerskier/pi-cron
# local workspace clone
pi install ./packages/pi-cron
# one run only
pi -e npm:@fingerskier/pi-cron

Tools

Run cron_mcp_status in Pi to list loaded tools. Expected tools include:

  • cron_add_job
  • cron_remove_job
  • cron_list_jobs
  • cron_run_jobs
  • cron_complete_job

Configuration

  • CRON_MCP_AUTOLOAD=0 disables startup MCP discovery.
  • CRON_MCP_COMMAND=/path/to/server overrides npx (no args unless your command handles them).
  • DEX_MCP_COMMAND is accepted as a legacy fallback override during migration.

Skill

/skill:cron loads scheduling workflow guidance.