A smart automation skill that provides instant, professional responses to GitHub Issues based on labels and content.
The fastest way to install a skill directly from the registry.
npx clawhub@latest install github-auto-reply
Copy the skill folder to one of these locations
~/.openclaw/skills/ <project>/skills/ Priority: Workspace > Local > Bundled
Copy this prompt to OpenClaw to install it automatically.
Help me install github-auto-reply using Clawhub. If Clawhub is not installed, install it first (npm i -g clawhub).
Get the raw skill files in a ZIP archive.
The GitHub Auto Reply skill is a specialized automation tool designed to streamline community management and customer support directly within your GitHub repositories. By integrating seamlessly with GitHub Actions, this skill ensures that every user who opens an issue receives an immediate, professional, and context-aware response. It represents a significant efficiency boost for maintainers using Openclaw Skills to manage project workflows.
This skill goes beyond simple canned responses by allowing developers to define logic-based templates. Whether it is a bug report, a feature request, or a general consultation, the automation can detect the context and provide the right information, such as service processes, response time estimates, or emergency contact details, ensuring a high-quality user experience from the very first interaction.
Create a new file at .github/workflows/issue-auto-reply.yml in your repository.
Add the following configuration to the file:
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 = "Thanks for reaching out!\n";
// Logic goes here
github.rest.issues.createComment({
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
body: reply
});
Navigate to Settings > Actions and ensure that 'Allow all actions' is enabled to permit the script to post comments.
The skill utilizes GitHub's internal context and local configuration to manage data flow:
| Data Component | Source | Usage |
|---|---|---|
context.payload.issue |
GitHub Event | Primary source of issue content and metadata. |
labels |
Issue Metadata | Used to branch logic for different template types. |
templates |
Internal Script | Hardcoded or dynamic Markdown strings for replies. |
working_hours |
System Clock | Used to determine if 'after-hours' messaging should be applied. |
Loading
A comprehensive automation framework that empowers an AI agent to manage end-to-end business operations, from lead generation to service delivery.

Analyze open-source repository culture and maintainer sentiment before submitting PRs or issues.

An automated GitHub repository scanner that prevents duplicate issue and pull request creation by checking for existing threads.

A comprehensive multi-agent system designed to produce doctorate-level research papers and academic dissertations with full citation support and Word document export.

A specialized tool for automating the build and deployment process of static websites to GitHub Pages.

A comprehensive browser automation skill for OpenClaw that performs functional, UI, accessibility, performance, and visual regression testing.








































