{
  "version": "1.0.0",
  "name": "个人慢剧生成工作台",
  "description": "基于OpenClaw的AI慢剧创作平台",
  
  "storage": {
    "basePath": "/root/data/disk",
    "projectsPath": "/root/data/disk/projects",
    "resourcesPath": "/root/data/disk/resources",
    "tempPath": "/root/data/disk/temp",
    "agentsPath": "/root/data/disk/agents"
  },
  
  "integrations": {
    "aiServices": {
      "volcengine": {
        "enabled": true,
        "apiBase": "https://ark.cn-beijing.volces.com/api/coding/v3",
        "models": ["doubao-seed-2.0-pro", "glm-4.7", "deepseek-v3.2"]
      },
      "seedance": {
        "enabled": true,
        "skill": "seedance2-skill",
        "maxVideoLength": 60,
        "supportedFormats": ["mp4", "mov"]
      }
    },
    
    "socialPlatforms": {
      "bilibili": {
        "enabled": true,
        "skill": "bilibili-all-in-one",
        "uploadSupport": true
      },
      "douyin": {
        "enabled": true,
        "skill": "douyin-upload-mcp-skill",
        "uploadSupport": true
      }
    },
    
    "contentSources": {
      "hotTopics": {
        "enabled": true,
        "skill": "hot-topics",
        "sources": ["weibo", "zhihu", "baidu", "douyin", "bilibili"]
      }
    }
  },
  
  "workflows": {
    "ideaGeneration": {
      "enabled": true,
      "agents": ["collector", "writer"],
      "skills": ["hot-topics", "story-cog"]
    },
    
    "scriptWriting": {
      "enabled": true,
      "agents": ["writer"],
      "skills": ["ai-drama-prompt-factory", "seedance-shot-design"]
    },
    
    "videoProduction": {
      "enabled": true,
      "agents": ["producer"],
      "skills": ["seedance2-skill", "seedance-creator", "video-stitch-skill"]
    },
    
    "contentReview": {
      "enabled": true,
      "agents": ["publisher"],
      "skills": ["image-detection"]
    },
    
    "publishing": {
      "enabled": true,
      "agents": ["publisher"],
      "skills": ["bilibili-all-in-one", "douyin-upload-mcp-skill"]
    }
  },
  
  "agents": {
    "collector": {
      "role": "采集官",
      "model": "arkcode/glm-4.7",
      "weight": 0.16,
      "responsibilities": ["热点采集", "创意收集", "素材整理"]
    },
    "writer": {
      "role": "创作官",
      "model": "arkcode/doubao-seed-2.0-pro",
      "weight": 0.24,
      "responsibilities": ["剧本创作", "分镜设计", "台词生成"]
    },
    "producer": {
      "role": "制作官",
      "model": "arkcode/doubao-seed-2.0-pro",
      "weight": 0.22,
      "responsibilities": ["视频生成", "音频处理", "后期合成"]
    },
    "publisher": {
      "role": "审核官",
      "model": "arkcode/doubao-seed-2.0-pro",
      "weight": 0.13,
      "responsibilities": ["内容审核", "平台发布", "数据统计"]
    },
    "analyzer": {
      "role": "分析官",
      "model": "arkcode/deepseek-v3.2",
      "weight": 0.06,
      "responsibilities": ["数据分析", "效果评估", "优化建议"]
    },
    "cto": {
      "role": "CTO总控官",
      "model": "arkcode/deepseek-v3.2",
      "weight": 0.19,
      "responsibilities": ["系统架构", "技术决策", "资源协调"]
    }
  },
  
  "features": {
    "realTimePreview": true,
    "batchProcessing": true,
    "versionControl": true,
    "collaboration": false,
    "apiAccess": true,
    "webInterface": true
  },
  
  "limits": {
    "maxProjectSize": "10GB",
    "maxVideoLength": 300,
    "concurrentGenerations": 3,
    "dailyQuota": 50,
    "backupRetentionDays": 30
  },
  
  "monitoring": {
    "enabled": true,
    "metrics": ["generationSuccessRate", "processingTime", "resourceUsage"],
    "alerts": ["failedGeneration", "highResourceUsage", "serviceDown"]
  }
}