docs(scraper-studio): document 3-job cap, propose PR-11 backoff + stu…#19
Open
anil-bd wants to merge 2 commits into
Open
docs(scraper-studio): document 3-job cap, propose PR-11 backoff + stu…#19anil-bd wants to merge 2 commits into
anil-bd wants to merge 2 commits into
Conversation
…b asks
The AI Flow caps concurrent `scraper create` generations per account
(currently 3). Today the cap is undocumented in this skill, in the
`bdata scraper --help` output, and in api-flow.md — users discover
it by getting 429s in production.
This commit lands the documentation half of PR-11:
* SKILL.md "Common mistakes" gets entry 9 naming the cap and pointing
at the new CLI flags (--max-retries, --no-retry) that handle it.
* SKILL.md "Troubleshooting" gets two new rows: one for the
expected in-progress backoff stderr line, one for the
retries-exhausted case (actionable, points at the dashboard).
* references/api-flow.md documents the cap inline on the
/dca/collectors/{id}/automate_template endpoint and notes the
stub-collector pathology (template POST always succeeds, so a
429 here leaves a half-built collector behind).
* New proposal at proposals/PR-11-backoff.md captures the full
story: Half A (client-side auto-backoff + stub-recovery note —
shipped in the cli repo) and Half B (open server-side asks —
reject template POST when cap is full, expose DELETE
/dca/collector/{id}).
No content change to prompts.md, recipes.md, or the rest of SKILL.md.
The CLI side ships separately on cli@feat/scraper-create-429-backoff.
…-document-cap-and-backoff # Conflicts: # skills/scraper-studio/SKILL.md
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
…b asks
The AI Flow caps concurrent
scraper creategenerations per account (currently 3). Today the cap is undocumented in this skill, in thebdata scraper --helpoutput, and in api-flow.md — users discover it by getting 429s in production.This commit lands the documentation half of PR-11:
No content change to prompts.md, recipes.md, or the rest of SKILL.md.
The CLI side ships separately on cli@feat/scraper-create-429-backoff.