{"id":49469825,"url":"https://github.com/coze-dev/coze-openclaw-plugin","last_synced_at":"2026-04-30T15:33:21.647Z","repository":{"id":344180646,"uuid":"1180444980","full_name":"coze-dev/coze-openclaw-plugin","owner":"coze-dev","description":"OpenClaw plugin for Coze","archived":false,"fork":false,"pushed_at":"2026-04-08T10:07:03.000Z","size":551,"stargazers_count":7,"open_issues_count":0,"forks_count":3,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-04-30T15:33:18.098Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/coze-dev.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-03-13T03:39:26.000Z","updated_at":"2026-04-21T11:23:21.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/coze-dev/coze-openclaw-plugin","commit_stats":null,"previous_names":["coze-dev/coze-openclaw-plugin"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/coze-dev/coze-openclaw-plugin","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/coze-dev%2Fcoze-openclaw-plugin","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/coze-dev%2Fcoze-openclaw-plugin/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/coze-dev%2Fcoze-openclaw-plugin/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/coze-dev%2Fcoze-openclaw-plugin/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/coze-dev","download_url":"https://codeload.github.com/coze-dev/coze-openclaw-plugin/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/coze-dev%2Fcoze-openclaw-plugin/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32469344,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-30T13:12:12.517Z","status":"ssl_error","status_checked_at":"2026-04-30T13:12:06.837Z","response_time":57,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2026-04-30T15:33:20.473Z","updated_at":"2026-04-30T15:33:21.633Z","avatar_url":"https://github.com/coze-dev.png","language":"TypeScript","funding_links":[],"categories":["Skills \u0026 Plugins"],"sub_categories":["Notable Skills \u0026 Plugins"],"readme":"# coze-openclaw-plugin\n\nOpenClaw plugin that adds Coze-powered web tools, bundled media skills, session recovery, and upgrade management.\n\n- Tools: `coze_web_search`, `coze_web_fetch`\n- Skills: `coze-tts`, `coze-asr`, `coze-image-gen`, `openclaw-faq`\n- Session Recovery: auto-detect and resume interrupted agent sessions on gateway restart\n- Upgrade Management: manifest-based upgrade with conflict detection and progressive apply\n\n## Install\n\n```bash\nopenclaw plugins install coze-openclaw-plugin\n```\n\n## Configure\n\nThis plugin requires:\n\n- `plugins.entries.coze-openclaw-plugin.config.apiKey`\n\nMinimal configuration:\n\n```json5\n{\n  plugins: {\n    entries: {\n      \"coze-openclaw-plugin\": {\n        enabled: true,\n        config: {\n          apiKey: \"YOUR_COZE_API_KEY\"\n        }\n      }\n    }\n  }\n}\n```\n\nOptional config fields:\n\n- `baseUrl`\n- `modelBaseUrl`\n- `retryTimes`\n- `retryDelay`\n- `timeout`\n\n## Replace Built-in Web Tools\n\nIf you want to use this plugin instead of OpenClaw built-in web search and fetch:\n\n```json5\n{\n  plugins: {\n    entries: {\n      \"coze-openclaw-plugin\": {\n        enabled: true,\n        config: {\n          apiKey: \"YOUR_COZE_API_KEY\"\n        }\n      }\n    }\n  },\n  tools: {\n    web: {\n      search: {\n        enabled: false\n      },\n      fetch: {\n        enabled: false\n      }\n    }\n  }\n}\n```\n\n## Tools\n\n### `coze_web_search`\n\nSearch the web or images through Coze.\n\nParameters:\n\n- `query`\n- `type`: `web` or `image`\n- `count`\n- `timeRange`\n- `sites`\n- `blockHosts`\n- `needSummary`\n- `needContent`\n\n### `coze_web_fetch`\n\nFetch and normalize page or document content through Coze.\n\nParameters:\n\n- `urls`: a single URL string or an array of URL strings\n- `format`: `text`, `markdown`, or `json`\n- `textOnly`\n\nExamples:\n\n```json\n{\n  \"urls\": \"https://example.com/article\"\n}\n```\n\n```json\n{\n  \"urls\": [\"https://example.com/a\", \"https://example.com/b\"],\n  \"format\": \"markdown\"\n}\n```\n\n## Skills\n\nBundled skills:\n\n- `coze-tts`: text to speech\n- `coze-asr`: speech to text\n- `coze-image-gen`: image generation\n- `openclaw-faq`: OpenClaw/龙虾/扣子常见问题解答助手，自动从官方 FAQ 文档获取解决方案\n\n## Session Recovery\n\nAutomatically detects and recovers interrupted agent sessions when the gateway restarts.\n\n- Scans active sessions for interruption (unanswered user message or incomplete tool execution)\n- Notifies the user and resumes the task in the background\n- No configuration needed — enabled by default\n\n## Upgrade Management\n\nManifest-based upgrade system with conflict detection and progressive application.\n\n### CLI\n\n```bash\nopenclaw coze upgrade status           # View current upgrade state\nopenclaw coze upgrade apply            # Execute pending upgrade plan\nopenclaw coze upgrade push-manifest '\u003cjson\u003e'  # Push upgrade manifest\n```\n\n### Chat Command\n\n- `/coze_update` — Display upgrade plan summary\n- `/coze_update apply` — Execute pending upgrades\n\n### HTTP API\n\n- `GET /api/coze/upgrade/status` — Get current upgrade state and history\n- `POST /api/coze/upgrade/apply` — Execute pending upgrade plan\n\n## Notes\n\n- The plugin requires `apiKey` in plugin config for Coze tools and skills\n- Session recovery and upgrade modules work without `apiKey`\n- The published npm package only includes runtime files, bundled skills, `README.md`, and `LICENSE`\n\n## Contributing\n\nSee `./CONTRIBUTING.md` for the supported contribution flow.\n\n## Security\n\nSee `./SECURITY.md` for how to report security issues.\n\n## License\n\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcoze-dev%2Fcoze-openclaw-plugin","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcoze-dev%2Fcoze-openclaw-plugin","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcoze-dev%2Fcoze-openclaw-plugin/lists"}