@remixmate/cli 0.1.2 → 0.9.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (53) hide show
  1. package/README.md +46 -0
  2. package/README.zh-CN.md +22 -0
  3. package/dist/auth/auth-lock.d.ts +26 -0
  4. package/dist/auth/auth-lock.js +100 -0
  5. package/dist/auth/auto-login.d.ts +20 -0
  6. package/dist/auth/auto-login.js +66 -0
  7. package/dist/auth/commands.d.ts +8 -0
  8. package/dist/auth/commands.js +130 -0
  9. package/dist/auth/credential-store.d.ts +44 -0
  10. package/dist/auth/credential-store.js +126 -0
  11. package/dist/auth/device-flow-runner.d.ts +43 -0
  12. package/dist/auth/device-flow-runner.js +62 -0
  13. package/dist/auth/device-flow.d.ts +52 -0
  14. package/dist/auth/device-flow.js +115 -0
  15. package/dist/auth/environment.d.ts +25 -0
  16. package/dist/auth/environment.js +48 -0
  17. package/dist/auth/resolve.d.ts +30 -0
  18. package/dist/auth/resolve.js +44 -0
  19. package/dist/cli.js +11 -0
  20. package/dist/handlers/gen-digital-human.js +1 -1
  21. package/dist/handlers/gen-image.js +1 -1
  22. package/dist/handlers/gen-video.js +1 -1
  23. package/dist/handlers/gen-voice.js +2 -2
  24. package/dist/http.d.ts +9 -5
  25. package/dist/http.js +24 -10
  26. package/dist/manifest.json +3 -3
  27. package/dist/runner.d.ts +1 -1
  28. package/package.json +1 -1
  29. package/skills/export-jianying/SKILL.md +9 -3
  30. package/skills/export-jianying/version.json +1 -1
  31. package/skills/gen-digital-human/SKILL.md +11 -11
  32. package/skills/gen-digital-human/version.json +1 -1
  33. package/skills/gen-image/SKILL.md +6 -6
  34. package/skills/gen-image/version.json +1 -1
  35. package/skills/gen-script/scripts/gen_script.py +66 -31
  36. package/skills/gen-script/version.json +1 -1
  37. package/skills/gen-video/SKILL.md +6 -6
  38. package/skills/gen-video/version.json +1 -1
  39. package/skills/gen-voice/SKILL.md +6 -6
  40. package/skills/gen-voice/version.json +1 -1
  41. package/skills/render-video/SKILL.md +20 -1
  42. package/skills/render-video/scripts/remote_renderer_client.py +9 -7
  43. package/skills/render-video/scripts/render_video.py +119 -15
  44. package/skills/render-video/version.json +1 -1
  45. package/skills/template-registry/README.md +12 -13
  46. package/skills/template-registry/SKILL.md +11 -12
  47. package/skills/template-registry/scripts/registry_loader.py +117 -96
  48. package/skills/template-registry/scripts/render_job_client.py +12 -0
  49. package/skills/template-registry/skill.json +1 -1
  50. package/skills/template-registry/version.json +1 -1
  51. package/skills/template-registry/video_dsl/runtime/dsl_validator.py +2 -2
  52. package/skills/web-capture/skill.json +0 -1
  53. package/skills/web-capture/version.json +1 -1
@@ -17,7 +17,7 @@ DSL 校验器 - 对 Video DSL v1alpha1 做结构校验与标准化。
17
17
  ``lineSyncSlides`` 注册表查询、items 数对齐、模板专属语言约束等代码在三份
18
18
  之间已经静默漂移。统一到本文件后,所有维度只有一份实现。所有模板差异通过
19
19
  ``template.json`` 的 ``capabilities`` 字段声明,本文件读取并应用 —— 新增需要特殊
20
- 处理的模板时**不需要再改 ab-skill 代码**。
20
+ 处理的模板时**不需要再改 remixmate 代码**。
21
21
  """
22
22
 
23
23
  import re
@@ -93,7 +93,7 @@ def _line_sync_slides_for_template(template_id: Optional[str]) -> dict[str, str]
93
93
  """Look up ``lineSyncSlides`` for a template from registry.json.
94
94
 
95
95
  新增多项卡片幻灯片只需在 template.json 加一行 ``lineSyncSlides[slideId] = key``,
96
- 不再需要改 ab-skill。registry 读取失败(环境缺 registry_loader、HTTP 不通等)
96
+ 不再需要改 remixmate。registry 读取失败(环境缺 registry_loader、HTTP 不通等)
97
97
  时返回空 dict,调用方将跳过相关校验。
98
98
 
99
99
  O(1) lookup via ``registry_loader.get_template``; safe to call once per
@@ -7,7 +7,6 @@
7
7
  "description": "Drive a headless browser (Playwright Python) to capture any URL to local files: full-page / element / region screenshots, fixed-duration / condition-triggered / auto-scroll recordings, and storyboard videos (highlight / focus / zoom / scroll / virtual-cursor click / caption / title-card / arrow / numbered sequence / redact / code-line highlight). Two entry scripts: scripts/screenshot.py (stills) and scripts/record.py (webm video, storyboards, templates).",
8
8
  "envVars": ["WEB_CAPTURE_BROWSER", "WEB_CAPTURE_OUTPUT_BASE", "WEB_CAPTURE_NO_SANDBOX", "WEB_CAPTURE_ALLOW_PRIVATE_HOSTS", "PLAYWRIGHT_BROWSERS_PATH"],
9
9
  "entry": { "type": "python", "scriptPath": "scripts/screenshot.py" },
10
- "scriptPath": "scripts/screenshot.py",
11
10
  "parameters": {
12
11
  "type": "object",
13
12
  "properties": {
@@ -2,6 +2,6 @@
2
2
  "skillName": "web-capture",
3
3
  "repoName": "agent-skill-media-maker",
4
4
  "skillId": "555",
5
- "version": "V3",
5
+ "version": "V4",
6
6
  "skillDescription": "网页截屏 / 录屏 / 分镜视频技能,基于 Playwright Python,对任意 URL 落盘到本地。支持整页 / 元素 / 区域截屏、固定时长 / 条件触发 / 自动滚动录屏、分镜视频(高亮 / 聚焦 / 放大 / 滚动 / 虚拟光标点击 / 字幕 / 标题卡 / 箭头 / 编号序列 / 打码 / 代码行高亮)以及参数化模板。两个入口脚本:scripts/screenshot.py(截图)与 scripts/record.py(webm 录屏 / storyboard / 模板)。\n\n当用户提到网页截图、整页 / 长截图、元素 / 区域截屏、录屏、滚动录屏、分镜 / storyboard 视频、虚拟光标点击 / 输入 / 悬停演示、加箭头 / 字幕 / 标题卡 / 编号高亮、隐藏或打码敏感信息、代码行高亮、移动端模拟、带登录态截屏 / 录屏等需求时,立即使用本 skill。"
7
7
  }