chore(agent-core-v2): drop legacy 8-hex mention from cron prompts

CronDelete and CronList descriptions now describe the task id as a ULID
only, removing the "(or legacy 8-hex)" qualifier from the model-facing
text. Code and tests are unchanged.
This commit is contained in:
_Kerman 2026-07-10 13:39:14 +08:00
parent 517aeb5fbf
commit 5cc8e520fc
2 changed files with 2 additions and 2 deletions

View file

@ -1,7 +1,7 @@
Cancel a scheduled cron job by id.
Use this tool to remove a cron task previously scheduled with
`CronCreate`. The `id` is the ULID (or legacy 8-hex) value returned by `CronCreate`, or
`CronCreate`. The `id` is the ULID value returned by `CronCreate`, or
shown in the `id:` column of `CronList` — quote it verbatim, no
prefix.

View file

@ -9,7 +9,7 @@ task's age in days, and a stale indicator.
Each record carries:
- `id` — the task id (a ULID, or legacy 8-hex). Pass this to `CronDelete` to remove the
- `id` — the task id (a ULID). Pass this to `CronDelete` to remove the
task, or quote it in user-facing messages when asking for
confirmation.
- `cron` — the verbatim 5-field cron expression as scheduled.