AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Resolve Kwai Cdn Url

skill-httprunner-skills-resolve-kwai-cdn-url · by httprunner

Resolve Kuaishou (快手 / Kwai) share links or share text into video CDN URLs. Use for single links, share text, or CSV inputs when output must be JSONL with CDNURL/error_msg. Prefer videodl (videofetch); fall back to GraphQL/mobile-page extraction with cookies when needed.

No reviews yet
0 installs
13 views
0.0% view→install

Install

$ agentstack add skill-httprunner-skills-resolve-kwai-cdn-url

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-httprunner-skills-resolve-kwai-cdn-url)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
6mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Resolve Kwai Cdn Url? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Resolve Kwai CDN URL

Extract CDN URLs from Kuaishou share links with two paths:

  • videodl (videofetch): primary path, supports cookies/proxy (Playwright + requests).
  • GraphQL/mobile-page: fallback when videodl fails.

Path Convention

Canonical install and execution directory: ~/.agents/skills/resolve-kwai-cdn-url/. Run commands from this directory:

cd ~/.agents/skills/resolve-kwai-cdn-url

One-off (safe in scripts/loops from any working directory):

(cd ~/.agents/skills/resolve-kwai-cdn-url && uv run python scripts/kwai_videodl_resolve.py --help)

Fast path (videodl)

uv venv .venv
uv sync
uv run python scripts/kwai_videodl_resolve.py "https://v.kuaishou.com/8qIlZu" > single.jsonl
uv run python scripts/kwai_videodl_resolve.py --input-csv data.csv --csv-url-field URL --output output.jsonl --workers 10
uv run python scripts/kwai_videodl_resolve.py --input-csv data.csv --csv-url-field URL --output output.jsonl --workers 10 --resume
uv run python scripts/kwai_videodl_resolve.py "https://v.kuaishou.com/8qIlZu" --proxy "http://user:pass@host:port"
uv run python scripts/kwai_videodl_resolve.py "https://v.kuaishou.com/8qIlZu" --cookie ""
uv run python scripts/kwai_videodl_resolve.py "https://v.kuaishou.com/8qIlZu" --cookie-file cookie.json

Fallback path (GraphQL/mobile-page)

uv run python scripts/kwai_extract_cdn.py "https://www.kuaishou.com/short-video/3xu6tezif2v55m2" --cookie ""
uv run python scripts/kwai_extract_cdn.py "https://www.kuaishou.com/short-video/3xu6tezif2v55m2" --cookie-file cookie.json
uv run python scripts/kwai_extract_cdn.py "https://www.kuaishou.com/short-video/3xu6tezif2v55m2" --proxy "http://user:pass@host:port"
uv run python scripts/kwai_csv_to_jsonl.py data.csv --url-col URL --cdn-col CDNURL --cookie "" --workers 10 --output output.jsonl
uv run python scripts/kwai_csv_to_jsonl.py data.csv --url-col URL --cdn-col CDNURL --cookie-file cookie.json --workers 10 --output output.jsonl
uv run python scripts/kwai_csv_to_jsonl.py data.csv --url-col URL --cdn-col CDNURL --cookie "" --workers 10 --output output.jsonl --resume
uv run python scripts/kwai_csv_to_jsonl.py data.csv --url-col URL --cdn-col CDNURL --proxy "http://user:pass@host:port" --workers 10 --output output.jsonl

Output

  • videodl: {"url": "...", "cdn_url": "...", "error_msg": ""}
  • CSV mode (both paths): original columns + CDNURL + optional error_msg

Notes

  • videodl auto-extracts the first URL from share text and follows v.kuaishou.com redirects.
  • videodl Playwright path honors proxy/cookie/headers passed via requests_overrides in kwai_videodl_resolve.py.
  • GraphQL path tries GraphQL, then mobile INIT_STATE, then HTML state parsing.
  • If blocked, try without cookies first; if still blocked, pass a real browser cookie via --cookie or --cookie-file.
  • --cookie expects a raw Cookie header string, e.g. kpf=PC_WEB; clientid=3; did=....
  • --cookie-file accepts either a raw Cookie header string or a JSON cookie array export (list of {name,value} objects).
  • When no cookie is provided, videodl will fetch an anonymous cookie from the homepage (incognito-like).
  • --proxy applies to all HTTP requests, e.g. http://user:pass@host:port.
  • --resume rewrites output JSONL to keep only successful rows, then retries missing/failed rows and appends new results.
  • CSV progress logs are batch-based success counts; stats are emitted on completion or Ctrl+C.
  • live.kuaishou.com and captcha.zt.kuaishou.com are treated as failures; error_msg includes the reason.

Resources

  • scripts/kwai_videodl_resolve.py: videodl-based resolver.
  • scripts/kwai_extract_cdn.py: GraphQL/mobile-page resolver.
  • scripts/kwai_csv_to_jsonl.py: CSV -> JSONL (GraphQL/mobile-page).
  • scripts/kwai_common.py: shared helpers for resume and JSONL processing.
  • references/videodl_api.md: minimal videodl API.
  • references/kuaishou_graphql.md: GraphQL endpoints/payload notes.

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.