github-automation-proAutomate GitHub tasks including advanced issue management, PR analysis, release creation with notes, repo stats, webhook triggers, and email support.
Install via ClawdBot CLI:
clawdbot install andy825lay-tech/github-automation-proOpenClaw Skill for GitHub Automation
版本:1.0.0
定價:Lite $20 / Pro $50 / Enterprise $200
import { createGitHubSkill, SkillConfigBuilder } from '@skillforge/github-automation';
// 建立配置
const config = new SkillConfigBuilder()
.setGitHubToken('ghp_your_token_here')
.setDefaultOwner('your-org')
.setDefaultRepo('your-repo')
.enableAllFeatures()
.build();
// 初始化 Skill
const skill = createGitHubSkill();
await skill.initialize(config);
// 建立 Issue
const result = await skill.execute({
action: 'issue.create',
params: {
title: 'Bug Report',
body: 'Something is broken...',
labels: ['bug', 'priority-high'],
assignees: ['developer'],
},
});
console.log(`Issue created: ${result.data.url}`);
npm install @skillforge/github-automation
| 功能 | Lite (USDT 20) | Pro (USDT 50) | Enterprise (USDT 200) |
|------|---------------|---------------|----------------------|
| Issue 自動化 | ✅ | ✅ | ✅ |
| PR 分析 | 基礎 | 完整 | 完整 |
| Release 自動化 | ❌ | ✅ | ✅ |
| Repo 統計 | 基礎 | 完整 | 完整 |
| Webhook 觸發 | ❌ | ✅ | ✅ |
| 多 Repo 支援 | ❌ | ❌ | ✅ |
| 自定義規則 | ❌ | ❌ | ✅ |
| 優先支援 | ❌ | 郵件 | 專屬頻道 |
本 Skill 採用 License Key 驗證機制:
// 購買後取得的 License Key
const config = new SkillConfigBuilder()
.setGitHubToken('ghp_xxx')
.setLicenseKey('SF-GH-XXXX-XXXX-XXXX') // 購買後提供
.build();
僅接受 USDT (TRC-20)
TALc5eQifjsd4buSDRpgSiYAxUpLNoNjLD購買流程:
推薦朋友購買,雙方各得 USDT 5 回饋!
範例:
小陳購買 Pro 版 (USDT 50),取得推薦碼 "SF-CHEN-001"
小陳推薦給小王,小王購買時提供推薦碼 "SF-CHEN-001"
→ 小陳獲得 USDT 5
→ 小王獲得 USDT 5(等於只付 USDT 45)
# 安裝依賴
npm install
# 編譯
npm run build
# 測試
npm test
# 開發模式
npm run dev
await skill.execute({
action: 'issue.create',
params: {
title: '[BUG] 登入失敗',
body: '## 問題描述\n無法使用 GitHub 登入',
labels: ['bug', 'auth'],
assignees: ['backend-team'],
},
});
const analysis = await skill.execute({
action: 'pr.analyze',
params: {
pullNumber: 42,
},
});
console.log(`變更檔案: ${analysis.data.changedFiles}`);
console.log(`新增行數: ${analysis.data.additions}`);
console.log(`刪除行數: ${analysis.data.deletions}`);
await skill.execute({
action: 'release.create',
params: {
tagName: 'v1.0.0',
name: 'Version 1.0.0',
generateReleaseNotes: true,
},
});
MIT License - 詳見 LICENSE 檔案
注意:核心程式碼已混淆處理,僅授權使用,禁止反編譯。
SkillForge - 專業級 OpenClaw Skills
Generated Mar 1, 2026
A development team uses the skill to automate bug reporting and tracking in GitHub. It automatically creates issues with labels and assignees from bug reports, streamlining triage and ensuring consistent categorization. This reduces manual effort and speeds up response times for critical issues.
An open-source maintainer leverages the skill to automate release creation and generate release notes from merged pull requests. This ensures timely, well-documented releases without manual intervention, improving project reliability and user communication. It's ideal for projects with frequent updates.
A DevOps engineer integrates the skill into CI/CD pipelines to analyze pull requests for conflicts and generate review checklists. This enhances code quality by providing automated insights before deployment, reducing merge errors and streamlining the review process in fast-paced environments.
A project manager uses the skill to analyze repository statistics and health scores, monitoring activity like stars, forks, and issue frequency. This provides data-driven insights into project performance and team productivity, aiding in decision-making and reporting to stakeholders.
Offers Lite, Pro, and Enterprise tiers with increasing features like PR analysis and webhook triggers. Revenue is generated through one-time USDT payments per license, with higher tiers targeting teams and enterprises needing advanced automation. This model scales with user needs and encourages upgrades.
Implements a referral system where users earn USDT 5 for each successful referral, incentivizing word-of-mouth marketing. This reduces customer acquisition costs and builds a user community, with rewards like free tiers for high referrals driving viral growth and loyalty.
Targets large organizations with the Enterprise tier, offering multi-repo support, custom rules, and dedicated support. Revenue comes from premium pricing for tailored solutions, focusing on scalability and integration with existing workflows to secure long-term contracts.
💬 Integration Tip
Ensure you have a valid GitHub token and license key ready before initializing the skill; test with basic actions like issue creation first to verify connectivity and configuration.
Interact with GitHub using the `gh` CLI. Use `gh issue`, `gh pr`, `gh run`, and `gh api` for issues, PRs, CI runs, and advanced queries.
Query the DeepWiki MCP server for GitHub repository documentation, wiki structure, and AI-powered questions.
Automated GitHub PR code review with diff analysis, lint integration, and structured reports. Use when reviewing pull requests, checking for security issues,...
Essential Git commands and workflows for version control, branching, and collaboration.
Advanced git operations beyond add/commit/push. Use when rebasing, bisecting bugs, using worktrees for parallel development, recovering with reflog, managing subtrees/submodules, resolving merge conflicts, cherry-picking across branches, or working with monorepos.
Format commit messages using the Conventional Commits specification. Use when creating commits, writing commit messages, or when the user mentions commits, git commits, or commit messages. Ensures commits follow the standard format for automated tooling, changelog generation, and semantic versioning.