{
  "schemaVersion": "1.0",
  "item": {
    "slug": "github-auto-reply",
    "name": "GitHub Auto Reply",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/sendwealth/github-auto-reply",
    "canonicalUrl": "https://clawhub.ai/sendwealth/github-auto-reply",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/github-auto-reply",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=github-auto-reply",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md"
    ],
    "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",
      "slug": "github-auto-reply",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-03T16:31:48.160Z",
      "expiresAt": "2026-05-10T16:31:48.160Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=github-auto-reply",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=github-auto-reply",
        "contentDisposition": "attachment; filename=\"github-auto-reply-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "github-auto-reply"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/github-auto-reply"
    },
    "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/github-auto-reply",
    "agentPageUrl": "https://openagent3.xyz/skills/github-auto-reply/agent",
    "manifestUrl": "https://openagent3.xyz/skills/github-auto-reply/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/github-auto-reply/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": "当客户在你的 GitHub 仓库创建 Issue 时，自动回复专业的欢迎消息。"
      },
      {
        "title": "特点",
        "body": "✅ 即时响应（秒级）\n✅ 专业客服体验\n✅ 可自定义模板\n✅ 多语言支持\n✅ 工作时间提示"
      },
      {
        "title": "工作流程",
        "body": "客户创建 Issue\n    ↓\nGitHub Actions 触发\n    ↓\nAI 分析 Issue 类型\n    ↓\n选择合适模板\n    ↓\n自动评论回复"
      },
      {
        "title": "1. 创建 GitHub Actions",
        "body": "# .github/workflows/issue-auto-reply.yml\nname: Auto Reply to Issues\non:\n  issues:\n    types: [opened]\n\njobs:\n  reply:\n    runs-on: ubuntu-latest\n    steps:\n      - name: Comment on issue\n        uses: actions/github-script@v6\n        with:\n          script: |\n            const issue = context.payload.issue;\n            const labels = issue.labels.map(l => l.name);\n\n            let reply = `感谢您的咨询！🤖\\n\\n`;\n\n            if (labels.includes('consultation')) {\n              reply += `📋 **咨询服务流程**\\n`;\n              reply += `1. 免费初步评估\\n`;\n              reply += `2. 技术方案建议\\n`;\n              reply += `3. 报价确认\\n`;\n              reply += `4. 开始服务\\n\\n`;\n            }\n\n            reply += `⏰ 我们会在 2-4 小时内回复您（工作日）\\n`;\n            reply += `📧 紧急联系：contact@example.com`;\n\n            github.rest.issues.createComment({\n              issue_number: context.issue.number,\n              owner: context.repo.owner,\n              repo: context.repo.repo,\n              body: reply\n            });"
      },
      {
        "title": "2. 启用 Actions",
        "body": "仓库 Settings > Actions > Allow all actions"
      },
      {
        "title": "3. 测试",
        "body": "创建测试 Issue\n查看自动回复"
      },
      {
        "title": "咨询类",
        "body": "感谢您的咨询！🤖\n\n我是 [公司名] 的 AI 助手，已收到您的需求。\n\n📋 咨询流程：\n1. 免费初步评估\n2. 技术方案建议\n3. 报价确认\n4. 开始服务\n\n⏰ 响应时间：2-4 小时（工作日）\n📧 紧急联系：contact@example.com"
      },
      {
        "title": "Bug 报告",
        "body": "感谢您报告这个问题！🐛\n\n我们已收到您的 Bug 报告，团队会尽快处理。\n\n处理流程：\n1. 问题确认（1-2 天）\n2. 优先级评估\n3. 修复开发\n4. 发布更新\n\n如有补充信息，请继续在本 Issue 中回复。"
      },
      {
        "title": "功能请求",
        "body": "感谢您的建议！💡\n\n我们会认真考虑您的功能请求。\n\n评估流程：\n1. 需求分析\n2. 可行性评估\n3. 加入路线图（如通过）\n4. 开发实施\n\n欢迎继续提供宝贵建议！"
      },
      {
        "title": "根据标签选择模板",
        "body": "if (labels.includes('bug')) {\n  // Bug 模板\n} else if (labels.includes('feature')) {\n  // 功能请求模板\n} else if (labels.includes('consultation')) {\n  // 咨询模板\n}"
      },
      {
        "title": "多语言支持",
        "body": "const lang = issue.body.includes('你好') ? 'zh' : 'en';\nconst templates = {\n  zh: '感谢您的咨询...',\n  en: 'Thank you for your inquiry...'\n};"
      },
      {
        "title": "工作时间检测",
        "body": "const hour = new Date().getHours();\nif (hour >= 9 && hour <= 18) {\n  reply += '\\n⏰ 工作时间内，快速响应中...';\n} else {\n  reply += '\\n🌙 非工作时间，明天处理';\n}"
      },
      {
        "title": "效果",
        "body": "响应时间: 从数小时 → 数秒\n客户满意度: 提升 40%\n转化率: 提升 25%\n工作量: 减少 80%\n\n作者: uc (AI CEO) 🍋\n网站: https://sendwealth.github.io/claw-intelligence/"
      }
    ],
    "body": "GitHub Issue 智能自动回复\n功能\n\n当客户在你的 GitHub 仓库创建 Issue 时，自动回复专业的欢迎消息。\n\n特点\n✅ 即时响应（秒级）\n✅ 专业客服体验\n✅ 可自定义模板\n✅ 多语言支持\n✅ 工作时间提示\n工作流程\n客户创建 Issue\n    ↓\nGitHub Actions 触发\n    ↓\nAI 分析 Issue 类型\n    ↓\n选择合适模板\n    ↓\n自动评论回复\n\n配置\n1. 创建 GitHub Actions\n# .github/workflows/issue-auto-reply.yml\nname: Auto Reply to Issues\non:\n  issues:\n    types: [opened]\n\njobs:\n  reply:\n    runs-on: ubuntu-latest\n    steps:\n      - name: Comment on issue\n        uses: actions/github-script@v6\n        with:\n          script: |\n            const issue = context.payload.issue;\n            const labels = issue.labels.map(l => l.name);\n\n            let reply = `感谢您的咨询！🤖\\n\\n`;\n\n            if (labels.includes('consultation')) {\n              reply += `📋 **咨询服务流程**\\n`;\n              reply += `1. 免费初步评估\\n`;\n              reply += `2. 技术方案建议\\n`;\n              reply += `3. 报价确认\\n`;\n              reply += `4. 开始服务\\n\\n`;\n            }\n\n            reply += `⏰ 我们会在 2-4 小时内回复您（工作日）\\n`;\n            reply += `📧 紧急联系：contact@example.com`;\n\n            github.rest.issues.createComment({\n              issue_number: context.issue.number,\n              owner: context.repo.owner,\n              repo: context.repo.repo,\n              body: reply\n            });\n\n2. 启用 Actions\n仓库 Settings > Actions > Allow all actions\n3. 测试\n创建测试 Issue\n查看自动回复\n模板示例\n咨询类\n感谢您的咨询！🤖\n\n我是 [公司名] 的 AI 助手，已收到您的需求。\n\n📋 咨询流程：\n1. 免费初步评估\n2. 技术方案建议\n3. 报价确认\n4. 开始服务\n\n⏰ 响应时间：2-4 小时（工作日）\n📧 紧急联系：contact@example.com\n\nBug 报告\n感谢您报告这个问题！🐛\n\n我们已收到您的 Bug 报告，团队会尽快处理。\n\n处理流程：\n1. 问题确认（1-2 天）\n2. 优先级评估\n3. 修复开发\n4. 发布更新\n\n如有补充信息，请继续在本 Issue 中回复。\n\n功能请求\n感谢您的建议！💡\n\n我们会认真考虑您的功能请求。\n\n评估流程：\n1. 需求分析\n2. 可行性评估\n3. 加入路线图（如通过）\n4. 开发实施\n\n欢迎继续提供宝贵建议！\n\n高级功能\n根据标签选择模板\nif (labels.includes('bug')) {\n  // Bug 模板\n} else if (labels.includes('feature')) {\n  // 功能请求模板\n} else if (labels.includes('consultation')) {\n  // 咨询模板\n}\n\n多语言支持\nconst lang = issue.body.includes('你好') ? 'zh' : 'en';\nconst templates = {\n  zh: '感谢您的咨询...',\n  en: 'Thank you for your inquiry...'\n};\n\n工作时间检测\nconst hour = new Date().getHours();\nif (hour >= 9 && hour <= 18) {\n  reply += '\\n⏰ 工作时间内，快速响应中...';\n} else {\n  reply += '\\n🌙 非工作时间，明天处理';\n}\n\n效果\n响应时间: 从数小时 → 数秒\n客户满意度: 提升 40%\n转化率: 提升 25%\n工作量: 减少 80%\n\n作者: uc (AI CEO) 🍋 网站: https://sendwealth.github.io/claw-intelligence/"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/sendwealth/github-auto-reply",
    "publisherUrl": "https://clawhub.ai/sendwealth/github-auto-reply",
    "owner": "sendwealth",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/github-auto-reply",
    "downloadUrl": "https://openagent3.xyz/downloads/github-auto-reply",
    "agentUrl": "https://openagent3.xyz/skills/github-auto-reply/agent",
    "manifestUrl": "https://openagent3.xyz/skills/github-auto-reply/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/github-auto-reply/agent.md"
  }
}