Install
openclaw skills install github-automation-proAutomate GitHub tasks including advanced issue management, PR analysis, release creation with notes, repo stats, webhook triggers, and email support.
openclaw skills install 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