Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .claude/skills/e2e-cli-test/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,7 @@ sufficient data for meaningful get/detail coverage.

```bash
./bin/heygen video get <video-id> # .data[0].id from video list
./bin/heygen video scenes get <video-id> # .data[0].id from video list; 404 "no editor document" (e.g. a translated video) is SKIPPED, not FAIL
./bin/heygen ai-clipping get <job-id> # .data[0].id from ai-clipping list
./bin/heygen avatar get <group-id> # .data[0].id from avatar list
./bin/heygen avatar looks get <look-id> # .data[0].id from avatar looks list
Expand Down
5 changes: 5 additions & 0 deletions codegen/examples/brand.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,3 +43,8 @@
cmd: "heygen brand glossaries update <brand-glossary-id> -d '{\"terms\":[]}'"
- desc: "See all available request fields"
cmd: "heygen brand glossaries update --request-schema"
"DELETE /v3/brand-glossaries/{brand_glossary_id}":
- desc: "Delete a brand glossary, confirming at an interactive prompt. Cannot be undone: the glossary stops applying immediately, though videos already generated with it keep the audio they were synthesized with"
cmd: "heygen brand glossaries delete <brand-glossary-id>"
- desc: "Skip the prompt. Required when stdin is not a terminal, so this is the form a script or agent needs"
cmd: "heygen brand glossaries delete <brand-glossary-id> --force"
7 changes: 7 additions & 0 deletions codegen/examples/video.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,10 @@
"DELETE /v3/videos/{video_id}":
- desc: "Delete a video"
cmd: "heygen video delete <video-id>"
"GET /v3/videos/{video_id}/scenes":
- desc: "Read a video's scenes as they stand now, including edits made in the editor after it was created. Never paginated. Only a video with an editor document has scenes, so a translated video returns 404"
cmd: "heygen video scenes get <video-id>"
- desc: "A heavy read, not a status poll: it is rate limited an order of magnitude below an ordinary GET. Poll 'video get' instead and read scenes once it is done"
cmd: "heygen video get <video-id>"
- desc: "See the full scene shape. A whole-frame image or clip is the scene's background, not one of its elements, so reading only elements misses it"
cmd: "heygen video scenes get --response-schema"
4 changes: 2 additions & 2 deletions gen/asset.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading