Problem
After #814 lands, get-dataset-items will default limit to 20 via a file-local DEFAULT_DATASET_ITEMS_LIMIT constant. The nextStep templates in src/tools/core/actor_run_response.ts still hardcode limit=20 as a magic number in three places (lines ~244, 253, 285). If the default ever changes, the nextStep hints drift silently.
Proposed solution
- Export
DEFAULT_DATASET_ITEMS_LIMIT from src/tools/common/get_dataset_items.ts.
- Import it in
actor_run_response.ts and interpolate into the three nextStep templates instead of the literal 20.
Blocked by: #814 (don't start until it merges).
Problem
After #814 lands,
get-dataset-itemswill defaultlimitto20via a file-localDEFAULT_DATASET_ITEMS_LIMITconstant. ThenextSteptemplates insrc/tools/core/actor_run_response.tsstill hardcodelimit=20as a magic number in three places (lines ~244, 253, 285). If the default ever changes, thenextStephints drift silently.Proposed solution
DEFAULT_DATASET_ITEMS_LIMITfromsrc/tools/common/get_dataset_items.ts.actor_run_response.tsand interpolate into the threenextSteptemplates instead of the literal20.Blocked by: #814 (don't start until it merges).