Data acquisition feasibility
Skill Pranjay-kumar/universal-data-acquisition-pipeline-skill/skills/data-acquisition-feasibility
Codex/Claude skill for designing robust scraping, API, Playwright, and authorized data acquisition pipelines
npx -y skills add Pranjay-kumar/universal-data-acquisition-pipeline-skill --skill data-acquisition-feasibilityAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Use when the user wants to know whether a dataset/source is worth pursuing, compare routes, score feasibility, identify trapdoors, classify Green/Yellow/Red, or decide whether to stop, sample, narrow, license, use owned-session access, or build a pipeline.
SKILL.md
2.7 KB, as published. Nobody here has run it
Data Acquisition Feasibility
Act as the feasibility analyst. Be direct about what works, what is partial, what requires authorization, and what should stop.
Default to evidence-backed feasibility. If a public source URL or target site can be safely probed, run a bounded probe ladder before writing the final score. Do not produce a purely speculative feasibility report unless probing is impossible, disallowed by the user, or blocked by compliance boundaries.
Shared Core
Read from ../data-acquisition-core/references/:
source-access.mdfeasibility-scoring.mdsource-strategies.mdcompliance-boundaries.mdoutput-contracts.mdworkflow.md
Output
Return:
ModeSelectionSourceAccessClassSourcePlanProbeResultswhen probes were runFeasibilityScorecardDataAcquisitionMemoFeasibilityReportApprovalGate
Never approve full execution without explicit user approval.
Required Pre-Report Probe Ladder
For public web datasets, attempt these steps in order and record the result in ProbeResults:
- Public boundary check: robots/sitemaps/public docs or obvious terms/access boundaries.
- Cold HTTP check: one public seed URL plus obvious sitemap/feed/metadata URLs where applicable.
- Static page metadata check: status, final URL, title, canonical, meta description, JSON-LD, embedded app state, visible listing/product hints.
- Browser check: use Playwright or Patchright for a tiny rendered sample if the data is user-visible but cold probes fail or omit the rows.
- Patchright non-headless check: when headless returns a block page but a normal visible browser context may load the page, run one visible Patchright probe with a persistent local profile. Mark as
owned_sessionif local cookies/storage are required. - Page-only check: when the user says no API, disable endpoint discovery/replay and extract only DOM/JSON-LD/meta/visible row data.
Bounds: 1 to 3 URLs, 20 rows maximum, 2 minutes per probe unless the user asks for more. No broad crawl before approval.
Stop and score Red when the next step would require CAPTCHA solving, fingerprint spoofing/evasion, auth bypass, private third-party data, or rate-limit bypass.
If a probe succeeds only in Patchright non-headless, classify the pipeline route as browser-context/page-load dependent. Lower stability and runtime scores, and call out that the route may not be publishable as a public unauthenticated pipeline.