Manus에서 모든 스킬 실행
원클릭으로
원클릭으로
원클릭으로 Manus에서 모든 스킬 실행
시작하기add-platform
Scaffold a new video platform module (like kinescope/) for downloading from a different service.
스타0
포크0
업데이트2026년 2월 28일 10:25
SKILL.md
readonly메뉴
Scaffold a new video platform module (like kinescope/) for downloading from a different service.
| name | add-platform |
| description | Scaffold a new video platform module (like kinescope/) for downloading from a different service. |
| allowed-tools | Read, Write, Edit, Glob, Grep |
| argument-hint | ["platform-name"] |
Scaffold a new platform package named $ARGUMENTS following the kinescope package structure.
Study the existing kinescope/ package structure:
kinescope/config.py — config parsing pattern (dataclass + parse function + custom exception)kinescope/hls.py — media stream handling patternkinescope/drm.py — key acquisition patternkinescope/runner.py — orchestrator patternkinescope/downloaders/ — downloader interfaceCreate the new package $ARGUMENTS/ with:
__init__.pyconfig.py — platform-specific config dataclass and parser, with a custom ConfigErrorrunner.py — process_single() and run_batch() orchestratordownloaders/__init__.pykinescope/downloaders/base.py Protocol or create a shared oneCreate or update the CLI entry point to support --platform $ARGUMENTS
Verify all files compile: python3 -m py_compile <file>
sys.exit() in library code