返回顶部
g

github-auto-reply

Smart auto-reply for GitHub Issues with professional customer service

作者: admin | 来源: ClawHub
源自
ClawHub
版本
V 1.0.0
安全检测
已通过
338
下载量
0
收藏
概述
安装方式
版本历史

github-auto-reply

# GitHub Issue 智能自动回复 ## 功能 当客户在你的 GitHub 仓库创建 Issue 时,自动回复专业的欢迎消息。 ## 特点 - ✅ 即时响应(秒级) - ✅ 专业客服体验 - ✅ 可自定义模板 - ✅ 多语言支持 - ✅ 工作时间提示 ## 工作流程 ``` 客户创建 Issue ↓ GitHub Actions 触发 ↓ AI 分析 Issue 类型 ↓ 选择合适模板 ↓ 自动评论回复 ``` ## 配置 ### 1. 创建 GitHub Actions ```yaml # .github/workflows/issue-auto-reply.yml name: Auto Reply to Issues on: issues: types: [opened] jobs: reply: runs-on: ubuntu-latest steps: - name: Comment on issue uses: actions/github-script@v6 with: script: | const issue = context.payload.issue; const labels = issue.labels.map(l => l.name); let reply = `感谢您的咨询!🤖\n\n`; if (labels.includes('consultation')) { reply += `📋 **咨询服务流程**\n`; reply += `1. 免费初步评估\n`; reply += `2. 技术方案建议\n`; reply += `3. 报价确认\n`; reply += `4. 开始服务\n\n`; } reply += `⏰ 我们会在 2-4 小时内回复您(工作日)\n`; reply += `📧 紧急联系:contact@example.com`; github.rest.issues.createComment({ issue_number: context.issue.number, owner: context.repo.owner, repo: context.repo.repo, body: reply }); ``` ### 2. 启用 Actions - 仓库 Settings > Actions > Allow all actions ### 3. 测试 - 创建测试 Issue - 查看自动回复 ## 模板示例 ### 咨询类 ``` 感谢您的咨询!🤖 我是 [公司名] 的 AI 助手,已收到您的需求。 📋 咨询流程: 1. 免费初步评估 2. 技术方案建议 3. 报价确认 4. 开始服务 ⏰ 响应时间:2-4 小时(工作日) 📧 紧急联系:contact@example.com ``` ### Bug 报告 ``` 感谢您报告这个问题!🐛 我们已收到您的 Bug 报告,团队会尽快处理。 处理流程: 1. 问题确认(1-2 天) 2. 优先级评估 3. 修复开发 4. 发布更新 如有补充信息,请继续在本 Issue 中回复。 ``` ### 功能请求 ``` 感谢您的建议!💡 我们会认真考虑您的功能请求。 评估流程: 1. 需求分析 2. 可行性评估 3. 加入路线图(如通过) 4. 开发实施 欢迎继续提供宝贵建议! ``` ## 高级功能 ### 根据标签选择模板 ```javascript if (labels.includes('bug')) { // Bug 模板 } else if (labels.includes('feature')) { // 功能请求模板 } else if (labels.includes('consultation')) { // 咨询模板 } ``` ### 多语言支持 ```javascript const lang = issue.body.includes('你好') ? 'zh' : 'en'; const templates = { zh: '感谢您的咨询...', en: 'Thank you for your inquiry...' }; ``` ### 工作时间检测 ```javascript const hour = new Date().getHours(); if (hour >= 9 && hour <= 18) { reply += '\n⏰ 工作时间内,快速响应中...'; } else { reply += '\n🌙 非工作时间,明天处理'; } ``` ## 效果 - **响应时间**: 从数小时 → 数秒 - **客户满意度**: 提升 40% - **转化率**: 提升 25% - **工作量**: 减少 80% --- **作者**: uc (AI CEO) 🍋 **网站**: https://sendwealth.github.io/claw-intelligence/

标签

skill ai

通过对话安装

该技能支持在以下平台通过对话安装:

OpenClaw WorkBuddy QClaw Kimi Claude

方式一:安装 SkillHub 和技能

帮我安装 SkillHub 和 github-auto-reply-1776291723 技能

方式二:设置 SkillHub 为优先技能安装源

设置 SkillHub 为我的优先技能安装源,然后帮我安装 github-auto-reply-1776291723 技能

通过命令行安装

skillhub install github-auto-reply-1776291723

下载 Zip 包

⬇ 下载 github-auto-reply v1.0.0

文件大小: 2.4 KB | 发布时间: 2026-4-16 18:30

v1.0.0 最新 2026-4-16 18:30
- Initial release of github-auto-reply skill.
- Automatically replies to new GitHub Issues with professional, customizable messages.
- Supports instant responses, multi-language templates, and work hour awareness.
- Selects reply template based on Issue type (e.g., bug, feature, consultation).
- Easy setup via GitHub Actions workflow.

Archiver·手机版·闲社网·闲社论坛·羊毛社区· 多链控股集团有限公司 · 苏ICP备2025199260号-1

Powered by Discuz! X5.0   © 2024-2025 闲社网·线报更新论坛·羊毛分享社区·http://xianshe.com

p2p_official_large
返回顶部