diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 001eb2c..2be9c43 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.1.2" + ".": "0.2.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..b5b5f71 --- /dev/null +++ b/CHANGELOG.md @@ -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)) diff --git a/SKILL.md b/SKILL.md index 3cc69c5..a94dcc6 100644 --- a/SKILL.md +++ b/SKILL.md @@ -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: diff --git a/package-lock.json b/package-lock.json index 595192a..45cb305 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "openclaw-plugin-heygen", - "version": "0.1.0", + "version": "0.2.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "openclaw-plugin-heygen", - "version": "0.1.0", + "version": "0.2.0", "license": "MIT", "devDependencies": { "typescript": "^5.6.0", diff --git a/package.json b/package.json index 5a6205f..50cf59c 100644 --- a/package.json +++ b/package.json @@ -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", @@ -48,7 +48,9 @@ } }, "openclaw": { - "extensions": ["./index.ts"], + "extensions": [ + "./index.ts" + ], "compat": { "pluginApi": ">=2026.3.24-beta.2", "minGatewayVersion": "2026.3.24-beta.2" diff --git a/video-generation-provider.ts b/video-generation-provider.ts index 4bdb6a9..0a73c73 100644 --- a/video-generation-provider.ts +++ b/video-generation-provider.ts @@ -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";