Description
There is no built-in /scheduler list command to view scheduled tasks. The agent has to resort to bash + sqlite3 queries against the scheduler database, which often fails because the agent doesn't know the correct DB path.
Observed behavior
- User types
/scheduler list
- Agent responds: "I don't have a built-in /scheduler list command"
- Agent tries
sqlite3 .zeph/data/scheduler.db (wrong path)
- Falls back to
zeph-test.db but may query wrong table
Expected behavior
Provide /scheduler list as a built-in slash command that shows:
- Task name, kind, cron expression, next run time, status
Related
The schedule_periodic, schedule_deferred, and cancel_task tools exist but there is no list_tasks tool or slash command.
Description
There is no built-in
/scheduler listcommand to view scheduled tasks. The agent has to resort tobash+sqlite3queries against the scheduler database, which often fails because the agent doesn't know the correct DB path.Observed behavior
/scheduler listsqlite3 .zeph/data/scheduler.db(wrong path)zeph-test.dbbut may query wrong tableExpected behavior
Provide
/scheduler listas a built-in slash command that shows:Related
The
schedule_periodic,schedule_deferred, andcancel_tasktools exist but there is nolist_taskstool or slash command.