waoowaoo
首家工业级全流程 AI 影视生产平台。Industry-first professional AI Agent platform for controllable film & video production. From shorts to live-action with Hollywood-standard workflows.
Source#
- Repository: saturndec/waoowaoo
- Last source update: 2026-04-05
- Last verified: 2026-04-05
Tags#
Integration notes#
Repository is workflow-oriented; map each workflow step to explicit worker contracts for predictability.
worker.md example#
Starter worker.md contract mapped from this registry entry. Copy this file and adapt schemas, constraints, and statuses for your task.
---
id: waoowaoo-repo-derived-worker
name: waoowaoo Repo-Derived Worker
version: 1.0.0
source_registry_url: https://worker.md/registry/waoowaoo/
source_repository: https://github.com/saturndec/waoowaoo
repository_default_branch: main
repository_language: TypeScript
repository_license: NOASSERTION
repository_updated_at: 2026-04-05
worker_mode: workflow-automation-worker
derivation_method: github_repository_metadata_plus_raw_readme
derivation_confidence: 0.85
derived_on: 2026-04-05
tags:
- ai-agent
- ai-agents
- automation
- film-production
- generative-ai
- short-drama
---
# waoowaoo Repo-Derived Worker
## Repo-derived summary
- Registry summary: 首家工业级全流程 AI 影视生产平台。Industry-first professional AI Agent platform for controllable film & video production. From shorts to live-action with Hollywood-standard workflows.
- Repository description: 首家工业级全流程 AI 影视生产平台。Industry-first professional AI Agent platform for controllable film & video production. From shorts to live-action with Hollywood-standard workflows.
- Stars (snapshot): 10,817
- Primary language: TypeScript
- Worker mode classification: workflow-automation-worker
## Extracted from
- https://github.com/saturndec/waoowaoo
- https://github.com/saturndec/waoowaoo/blob/main/README.md
- https://docs.docker.com/get-docker/
- https://caddyserver.com/docs/install
- https://github.com/saturndec/waoowaoo/issues
## Evidence notes (from repository text)
- README summary paragraph: > [!IMPORTANT] > ⚠️ **测试版声明**:本项目目前处于测试初期阶段,由于暂时只有我一个人开发,存在部分 bug 和不完善之处。我们正在快速迭代更新中,**欢迎进群反馈问题和需求,及时关注项目更新!目前更新会非常频繁,后续会增加大量新功能以及优化效果,我们的目标是成为行业最强AI工具!**
## Installation hints found in README
- `npm install 之前完成)`
## worker.md contract (derived starter)
Purpose: Execute one automation workflow step in a bounded worker run.
### Input schema
```json
{
"type": "object",
"additionalProperties": false,
"required": [
"run_id",
"trigger",
"step"
],
"properties": {
"run_id": {
"type": "string"
},
"trigger": {
"type": "object"
},
"step": {
"type": "string"
}
}
}
```
### Output schema
```json
{
"type": "object",
"additionalProperties": false,
"required": [
"run_id",
"step",
"status",
"artifacts"
],
"properties": {
"run_id": {
"type": "string"
},
"step": {
"type": "string"
},
"status": {
"type": "string",
"enum": [
"ok",
"retryable_error",
"invalid_request",
"invalid_output"
]
},
"artifacts": {
"type": "array"
}
}
}
```
### Constraints
- timeout_seconds: 30
- max_attempts: 2
- idempotency_key: run_id
- status_enum: [ok, retryable_error, invalid_request, invalid_output]
- notes: adapt to concrete APIs/classes documented in this repository before production use
## How this should be used
1. Treat this file as a repo-derived starter profile, not a claim of an official repository API contract.
2. Replace schemas with exact interfaces from code/docs you adopt.
3. Keep execution bounded and auditable using worker protocol constraints.
How to use#
- Save this as a worker spec file (for example:
waoowaoo-my-task.worker.md). - Replace the input/output schemas and purpose with your real bounded task.
- Enforce schema validation + timeout + retry policy in your runtime before production use.
Citation#
Reference URL: https://worker.md/registry/waoowaoo/
Source URL: https://github.com/saturndec/waoowaoo