← 返回 Skills 市场
sendwealth

GitHub Auto Reply

作者 sendwealth · GitHub ↗ · v1.0.0
cross-platform ⚠ suspicious
371
总下载
0
收藏
1
当前安装
1
版本数
在 OpenClaw 中安装
/install github-auto-reply
功能描述
Smart auto-reply for GitHub Issues with professional customer service
使用说明 (SKILL.md)

GitHub Issue 智能自动回复

功能

当客户在你的 GitHub 仓库创建 Issue 时,自动回复专业的欢迎消息。

特点

  • ✅ 即时响应(秒级)
  • ✅ 专业客服体验
  • ✅ 可自定义模板
  • ✅ 多语言支持
  • ✅ 工作时间提示

工作流程

客户创建 Issue
    ↓
GitHub Actions 触发
    ↓
AI 分析 Issue 类型
    ↓
选择合适模板
    ↓
自动评论回复

配置

1. 创建 GitHub Actions

# .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 = `感谢您的咨询!🤖\
\
`;

            if (labels.includes('consultation')) {
              reply += `📋 **咨询服务流程**\
`;
              reply += `1. 免费初步评估\
`;
              reply += `2. 技术方案建议\
`;
              reply += `3. 报价确认\
`;
              reply += `4. 开始服务\
\
`;
            }

            reply += `⏰ 我们会在 2-4 小时内回复您(工作日)\
`;
            reply += `📧 紧急联系:[email protected]`;

            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 小时(工作日)
📧 紧急联系:[email protected]

Bug 报告

感谢您报告这个问题!🐛

我们已收到您的 Bug 报告,团队会尽快处理。

处理流程:
1. 问题确认(1-2 天)
2. 优先级评估
3. 修复开发
4. 发布更新

如有补充信息,请继续在本 Issue 中回复。

功能请求

感谢您的建议!💡

我们会认真考虑您的功能请求。

评估流程:
1. 需求分析
2. 可行性评估
3. 加入路线图(如通过)
4. 开发实施

欢迎继续提供宝贵建议!

高级功能

根据标签选择模板

if (labels.includes('bug')) {
  // Bug 模板
} else if (labels.includes('feature')) {
  // 功能请求模板
} else if (labels.includes('consultation')) {
  // 咨询模板
}

多语言支持

const lang = issue.body.includes('你好') ? 'zh' : 'en';
const templates = {
  zh: '感谢您的咨询...',
  en: 'Thank you for your inquiry...'
};

工作时间检测

const hour = new Date().getHours();
if (hour >= 9 && hour \x3C= 18) {
  reply += '\
⏰ 工作时间内,快速响应中...';
} else {
  reply += '\
🌙 非工作时间,明天处理';
}

效果

  • 响应时间: 从数小时 → 数秒
  • 客户满意度: 提升 40%
  • 转化率: 提升 25%
  • 工作量: 减少 80%

作者: uc (AI CEO) 🍋 网站: https://sendwealth.github.io/claw-intelligence/

安全使用建议
This skill mostly gives a GitHub Actions workflow to auto-comment on issues — it is coherent with its basic purpose but contains two red flags you should address before use: 1) The README/description promises 'AI analysis' and fast 'AI' replies, but the provided workflow uses only simple heuristics (labels, substring checks) and static templates. If you expect real AI-driven responses you should verify which AI service will run, what credentials it needs, and where model calls occur. As-is there are no AI calls. 2) The instructions recommend enabling 'Allow all actions' in repository settings. That is broader than necessary and increases risk: it allows any third-party GitHub Action to run in your repo. Instead, prefer a least-privilege configuration: allow only specific actions or use the official actions/github-script and ensure workflow permissions restrict GITHUB_TOKEN to the minimum (issues: write). Also explicitly set workflow 'permissions' (e.g., issues: write) so you know what's being granted. Additional practical steps: - Replace placeholder [email protected] with a valid address you control. - Test the workflow in a non-production/test repository first. - Review the exact templates the workflow will post to avoid leaking internal info. - If you want true AI-based replies, demand explicit code/instructions showing API calls, and review what credentials (API keys/PATs) are required before installing. Given the marketing/implementation mismatch and the insecure permission recommendation, treat this skill as suspicious until those issues are resolved.
功能分析
Type: OpenClaw Skill Name: github-auto-reply Version: 1.0.0 The skill bundle describes a GitHub auto-reply agent. All files, including the `SKILL.md` instructions, are aligned with the stated purpose of providing automated responses to GitHub issues. The `SKILL.md` contains example GitHub Actions YAML and JavaScript-like logic snippets, which are presented as configuration guidance for the user or as logical behaviors for the AI agent to implement, not as direct malicious commands for the agent to execute. There is no evidence of data exfiltration, malicious execution, persistence mechanisms, or prompt injection attempts designed to subvert the OpenClaw agent. The attribution link `sendwealth.github.io` is benign and does not instruct any harmful actions.
能力评估
Purpose & Capability
The skill is presented as a 'Smart auto-reply' with AI analysis, but the SKILL.md only shows simple heuristics (label checks, basic language detection via substring, static templates) and no actual AI calls or external AI credentials. The stated AI capability (analysis, multi-language intelligence) is not implemented in the provided instructions.
Instruction Scope
Instructions are narrowly scoped to creating a GitHub Actions workflow that posts comments on new Issues — that matches the core purpose. However the guide explicitly tells the user to set repository Settings > Actions > Allow all actions, which is broader than needed for a single workflow and increases security risk by permitting arbitrary third-party actions to run in the repo.
Install Mechanism
This is an instruction-only skill with no install steps or code files to download or execute. No install mechanism risk is present.
Credentials
No environment variables are declared, but the workflow relies implicitly on GitHub Actions' provided GITHUB_TOKEN and repository action permissions. The SKILL.md does not mention required token/permission scopes (issues: write) or the need to configure workflow permissions. Advising 'Allow all actions' is disproportionate to the stated task and increases exposure to third-party action code.
Persistence & Privilege
The skill does not request 'always' presence, does not modify other skills, and has no persistent installation. It only instructs creating a workflow that runs on issue events — typical and proportionate for the purpose.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install github-auto-reply
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /github-auto-reply 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
- 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.
元数据
Slug github-auto-reply
版本 1.0.0
许可证
累计安装 1
当前安装数 1
历史版本数 1
常见问题

GitHub Auto Reply 是什么?

Smart auto-reply for GitHub Issues with professional customer service. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 371 次。

如何安装 GitHub Auto Reply?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install github-auto-reply」即可一键安装,无需额外配置。

GitHub Auto Reply 是免费的吗?

是的,GitHub Auto Reply 完全免费(开源免费),可自由下载、安装和使用。

GitHub Auto Reply 支持哪些平台?

GitHub Auto Reply 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 GitHub Auto Reply?

由 sendwealth(@sendwealth)开发并维护,当前版本 v1.0.0。

💬 留言讨论