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