From 777ed04218c99297ed84414fe87a082772feafdf Mon Sep 17 00:00:00 2001 From: MQ37 Date: Fri, 21 Aug 2026 11:49:48 +0200 Subject: [PATCH 1/2] docs: make README-read mandatory in Actor description MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Prior wording ("Read the README first.") sat at the end and was easy to skip — a model reading only the truncated tools-get schema blurb missed it and guessed the apify.* call signature wrong twice before checking the README. Front-load it as MANDATORY so it survives truncation and skimming. --- .actor/actor.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.actor/actor.json b/.actor/actor.json index 3c78a0c..604ad33 100644 --- a/.actor/actor.json +++ b/.actor/actor.json @@ -2,7 +2,7 @@ "actorSpecification": 1, "name": "code-runtime", "title": "Code Runtime", - "description": "Runs one JS script in a sandboxed Actor with an apify binding (Actors, datasets, KV stores). Worth it for bulk work: 50+ record filter/sort/aggregate, or 10+ item fan-out (e.g. many page visits). Skip for a single <10-item lookup \u2014 call the Actor directly instead. Read the README first.", + "description": "MANDATORY: read README before calling \u2014 apify.* signatures differ from the public SDK; guessing costs a wasted round trip. Sandboxed JS runner (apify binding: Actors, datasets, KV stores). Worth it for 50+ record aggregation or 10+ item fan-out; skip for <10-item lookups.", "version": "0.1", "buildTag": "latest", "usesStandbyMode": false, From 65b6a9766d1910f977d30000fe313f845d04e8db Mon Sep 17 00:00:00 2001 From: MQ37 Date: Fri, 21 Aug 2026 11:51:41 +0200 Subject: [PATCH 2/2] docs: revert to original wording, add MANDATORY at end Keep the original description text; only strengthen the trailing README instruction to MANDATORY instead of front-loading it. --- .actor/actor.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.actor/actor.json b/.actor/actor.json index 604ad33..9eff74f 100644 --- a/.actor/actor.json +++ b/.actor/actor.json @@ -2,7 +2,7 @@ "actorSpecification": 1, "name": "code-runtime", "title": "Code Runtime", - "description": "MANDATORY: read README before calling \u2014 apify.* signatures differ from the public SDK; guessing costs a wasted round trip. Sandboxed JS runner (apify binding: Actors, datasets, KV stores). Worth it for 50+ record aggregation or 10+ item fan-out; skip for <10-item lookups.", + "description": "Runs one JS script in a sandboxed Actor with an apify binding (Actors, datasets, KV stores). Worth it for bulk work: 50+ record filter/sort/aggregate, or 10+ item fan-out (e.g. many page visits). Skip for a single <10-item lookup \u2014 call the Actor directly instead. MANDATORY: read the README first.", "version": "0.1", "buildTag": "latest", "usesStandbyMode": false,