{
  "schemaVersion": "1.0",
  "item": {
    "slug": "zentao-analytics",
    "name": "ZenTao Analytics",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/jiaolongxue/zentao-analytics",
    "canonicalUrl": "https://clawhub.ai/jiaolongxue/zentao-analytics",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/zentao-analytics",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=zentao-analytics",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "references/metrics-definition.md",
      "references/zentao-config.md",
      "scripts/analyze-tasks.js",
      "scripts/export-metrics.js"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "Download the package from Yavira.",
        "Extract it into a folder your agent can access.",
        "Paste one of the prompts below and point your agent at the extracted folder."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
        },
        {
          "label": "Upgrade existing",
          "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-07T17:22:31.273Z",
      "expiresAt": "2026-05-14T17:22:31.273Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
        "contentDisposition": "attachment; filename=\"afrexai-annual-report-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/zentao-analytics"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/zentao-analytics",
    "agentPageUrl": "https://openagent3.xyz/skills/zentao-analytics/agent",
    "manifestUrl": "https://openagent3.xyz/skills/zentao-analytics/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/zentao-analytics/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "Download the package from Yavira.",
      "Extract it into a folder your agent can access.",
      "Paste one of the prompts below and point your agent at the extracted folder."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
      },
      {
        "label": "Upgrade existing",
        "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "🎯 核心功能",
        "body": "本技能用于分析禅道项目管理系统的员工任务数据，提供：\n\n任务统计 - 任务数量、类型分布、状态分布\n工时分析 - 预估工时 vs 实际工时、工时趋势\n难度评估 - 任务难度系数、复杂度分析\n效率计算 - 任务完成率、工时效率比\n饱和度分析 - 工作负载、产能利用率"
      },
      {
        "title": "1. 配置禅道连接",
        "body": "编辑 references/zentao-config.md 配置禅道 API 或数据库连接：\n\n# API 方式（推荐）\nZENTAO_URL=https://your-zentao.com\nZENTAO_API_KEY=your_api_key\n\n# 或数据库方式\nZENTAO_DB_HOST=localhost\nZENTAO_DB_NAME=zentao\nZENTAO_DB_USER=user\nZENTAO_DB_PASS=password"
      },
      {
        "title": "2. 运行分析",
        "body": "# 分析指定时间段\nnode scripts/analyze-tasks.js --start 2026-02-01 --end 2026-02-28\n\n# 分析特定员工\nnode scripts/analyze-tasks.js --user \"张三\"\n\n# 分析特定项目\nnode scripts/analyze-tasks.js --project \"项目 A\"\n\n# 生成团队报告\nnode scripts/analyze-tasks.js --team-report"
      },
      {
        "title": "3. 查看报告",
        "body": "分析报告输出包括：\n\n📊 个人效率报告 - 每个员工的效率指标\n📈 团队饱和度热力图 - 工作负载可视化\n🎯 异常检测 - 过载/低负载员工识别\n💡 优化建议 - 资源分配建议"
      },
      {
        "title": "效率指标",
        "body": "指标计算公式说明任务完成率完成任务数 / 总任务数反映交付能力工时效率比预估工时 / 实际工时>1 表示高效平均任务耗时总实际工时 / 完成任务数单任务平均成本延期率延期任务数 / 总任务数时间管理能力"
      },
      {
        "title": "饱和度指标",
        "body": "指标计算公式健康范围工作负载率实际工时 / 标准工时70%-90%任务密度任务数 / 工作日3-8 个/天多任务指数并行任务数2-5 个"
      },
      {
        "title": "analyze-tasks.js",
        "body": "主分析脚本，支持以下参数：\n\n--start <date>      开始日期 (YYYY-MM-DD)\n--end <date>        结束日期 (YYYY-MM-DD)\n--user <name>       指定员工\n--project <name>    指定项目\n--team-report       生成团队报告\n--output <path>     输出路径\n--format <json|csv> 输出格式"
      },
      {
        "title": "export-metrics.js",
        "body": "导出指标数据到外部系统：\n\n# 导出到 CSV\nnode scripts/export-metrics.js --format csv --output ./metrics.csv\n\n# 导出到 JSON\nnode scripts/export-metrics.js --format json --output ./metrics.json"
      },
      {
        "title": "📚 参考资料",
        "body": "references/zentao-config.md - 禅道连接配置\nreferences/api-schema.md - 禅道 API 数据结构\nreferences/metrics-definition.md - 指标定义和计算逻辑"
      },
      {
        "title": "⚠️ 注意事项",
        "body": "数据权限 - 确保有访问禅道数据的权限\n隐私保护 - 员工数据仅用于内部管理\n定期同步 - 建议每天同步一次数据\n异常处理 - 网络故障时自动重试 3 次"
      },
      {
        "title": "📞 故障排查",
        "body": "问题解决方案连接失败检查 zentao-config.md 配置数据为空确认日期范围和用户权限指标异常检查原始数据完整性\n\n版本: 1.0.0\n作者: 硬石科技 AI 助手\n更新: 2026-03-01"
      }
    ],
    "body": "禅道数据分析 (ZenTao Analytics)\n🎯 核心功能\n\n本技能用于分析禅道项目管理系统的员工任务数据，提供：\n\n任务统计 - 任务数量、类型分布、状态分布\n工时分析 - 预估工时 vs 实际工时、工时趋势\n难度评估 - 任务难度系数、复杂度分析\n效率计算 - 任务完成率、工时效率比\n饱和度分析 - 工作负载、产能利用率\n📋 使用流程\n1. 配置禅道连接\n\n编辑 references/zentao-config.md 配置禅道 API 或数据库连接：\n\n# API 方式（推荐）\nZENTAO_URL=https://your-zentao.com\nZENTAO_API_KEY=your_api_key\n\n# 或数据库方式\nZENTAO_DB_HOST=localhost\nZENTAO_DB_NAME=zentao\nZENTAO_DB_USER=user\nZENTAO_DB_PASS=password\n\n2. 运行分析\n# 分析指定时间段\nnode scripts/analyze-tasks.js --start 2026-02-01 --end 2026-02-28\n\n# 分析特定员工\nnode scripts/analyze-tasks.js --user \"张三\"\n\n# 分析特定项目\nnode scripts/analyze-tasks.js --project \"项目 A\"\n\n# 生成团队报告\nnode scripts/analyze-tasks.js --team-report\n\n3. 查看报告\n\n分析报告输出包括：\n\n📊 个人效率报告 - 每个员工的效率指标\n📈 团队饱和度热力图 - 工作负载可视化\n🎯 异常检测 - 过载/低负载员工识别\n💡 优化建议 - 资源分配建议\n📐 分析指标\n效率指标\n指标\t计算公式\t说明\n任务完成率\t完成任务数 / 总任务数\t反映交付能力\n工时效率比\t预估工时 / 实际工时\t>1 表示高效\n平均任务耗时\t总实际工时 / 完成任务数\t单任务平均成本\n延期率\t延期任务数 / 总任务数\t时间管理能力\n饱和度指标\n指标\t计算公式\t健康范围\n工作负载率\t实际工时 / 标准工时\t70%-90%\n任务密度\t任务数 / 工作日\t3-8 个/天\n多任务指数\t并行任务数\t2-5 个\n🔧 脚本说明\nanalyze-tasks.js\n\n主分析脚本，支持以下参数：\n\n--start <date>      开始日期 (YYYY-MM-DD)\n--end <date>        结束日期 (YYYY-MM-DD)\n--user <name>       指定员工\n--project <name>    指定项目\n--team-report       生成团队报告\n--output <path>     输出路径\n--format <json|csv> 输出格式\n\nexport-metrics.js\n\n导出指标数据到外部系统：\n\n# 导出到 CSV\nnode scripts/export-metrics.js --format csv --output ./metrics.csv\n\n# 导出到 JSON\nnode scripts/export-metrics.js --format json --output ./metrics.json\n\n📚 参考资料\nreferences/zentao-config.md - 禅道连接配置\nreferences/api-schema.md - 禅道 API 数据结构\nreferences/metrics-definition.md - 指标定义和计算逻辑\n⚠️ 注意事项\n数据权限 - 确保有访问禅道数据的权限\n隐私保护 - 员工数据仅用于内部管理\n定期同步 - 建议每天同步一次数据\n异常处理 - 网络故障时自动重试 3 次\n📞 故障排查\n问题\t解决方案\n连接失败\t检查 zentao-config.md 配置\n数据为空\t确认日期范围和用户权限\n指标异常\t检查原始数据完整性\n\n版本: 1.0.0\n作者: 硬石科技 AI 助手\n更新: 2026-03-01"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/jiaolongxue/zentao-analytics",
    "publisherUrl": "https://clawhub.ai/jiaolongxue/zentao-analytics",
    "owner": "jiaolongxue",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/zentao-analytics",
    "downloadUrl": "https://openagent3.xyz/downloads/zentao-analytics",
    "agentUrl": "https://openagent3.xyz/skills/zentao-analytics/agent",
    "manifestUrl": "https://openagent3.xyz/skills/zentao-analytics/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/zentao-analytics/agent.md"
  }
}