Skip to content
Open
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
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.1.2"
".": "0.2.0"
}
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Changelog

## [0.2.0](https://github.com/heygen-com/openclaw-plugin-heygen/compare/v0.1.2...v0.2.0) (2026-04-27)


### Features

* add INSTALL_FOR_AGENTS.md + 2-line paste-prompt install ([8e79f12](https://github.com/heygen-com/openclaw-plugin-heygen/commit/8e79f129d83d99c724fb0935ad26bd623ba3947e))
* **ci:** add release-please + publish-to-clawhub automation ([d15f6e5](https://github.com/heygen-com/openclaw-plugin-heygen/commit/d15f6e567b000cca0f6b232d8d500d932e40d24b))
* **ci:** add release-please + publish-to-clawhub automation ([c799a5f](https://github.com/heygen-com/openclaw-plugin-heygen/commit/c799a5f514a6f6126c5f534187fb5a21a310f51b))
* initial HeyGen Video Agent provider plugin for OpenClaw ([2f5d1f7](https://github.com/heygen-com/openclaw-plugin-heygen/commit/2f5d1f70ddbcddf3a7756d3ac446ec333aab4f30))
* INSTALL_FOR_AGENTS.md + 2-line paste-prompt install ([df88b72](https://github.com/heygen-com/openclaw-plugin-heygen/commit/df88b72dfc8d1c80847157ef2b97f222cb71b955))


### Bug Fixes

* address review feedback on INSTALL_FOR_AGENTS.md ([5302bef](https://github.com/heygen-com/openclaw-plugin-heygen/commit/5302bef06f576e7d2ff1f89249ddc212bda77923))
2 changes: 1 addition & 1 deletion SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ description: |
video, talking-head AI video, scripted avatar narration, brand spokesperson video.
NOT for: cinematic b-roll (use Veo / Runway / Kling), video translation, TTS-only,
streaming avatars, or photo-to-talking-head v2 pipelines.
version: 0.1.2 # x-release-please-version
version: 0.2.0 # x-release-please-version
homepage: https://github.com/heygen-com/openclaw-plugin-heygen
license: MIT
metadata:
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

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

6 changes: 4 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "openclaw-plugin-heygen",
"version": "0.1.2",
"version": "0.2.0",
"description": "HeyGen Video Agent provider plugin for OpenClaw — first-class avatar/presenter video generation via OpenClaw's video_generate tool.",
"type": "module",
"license": "MIT",
Expand Down Expand Up @@ -48,7 +48,9 @@
}
},
"openclaw": {
"extensions": ["./index.ts"],
"extensions": [
"./index.ts"
],
"compat": {
"pluginApi": ">=2026.3.24-beta.2",
"minGatewayVersion": "2026.3.24-beta.2"
Expand Down
2 changes: 1 addition & 1 deletion video-generation-provider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ const MAX_POLL_ATTEMPTS = 240;
const THINKING_FAST_FAIL_POLLS = 8;
const MAX_DURATION_SECONDS = 300;
const MAX_FILE_ATTACHMENTS = 20;
const HEYGEN_PROVIDER_VERSION = "0.1.2"; // x-release-please-version
const HEYGEN_PROVIDER_VERSION = "0.2.0"; // x-release-please-version
const HEYGEN_USER_AGENT = `OpenClaw-HeyGen-Provider/${HEYGEN_PROVIDER_VERSION}`;
const HEYGEN_PARTNER_SOURCE = "openclaw-plugin";

Expand Down