在 Manus 中运行任何 Skill
一键导入
一键导入
一键在 Manus 中运行任何 Skill
开始使用github
星标3
分支1
更新时间2026年5月5日 06:50
GitHub 작업 (PR, Issue, CI/CD)
安装
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
SKILL.md
readonly菜单
GitHub 작업 (PR, Issue, CI/CD)
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
gstack 기반 스프린트 플래너 — Think→Plan→Build→Review→Test→Ship→Reflect 워크플로우로 구조화된 스프린트 생성
U2DIA AI Agents — 에이전트 팀 생성/관리 및 칸반보드 실시간 모니터링
API 문서 자동 생성 — OpenAPI/Swagger 스펙, 엔드포인트 목록, 요청/응답 예시 자동 추출
AI 자동 코드 리뷰 — git diff 기반 변경사항 분석, 보안 취약점, 성능 이슈, 코드 스타일 검사. Ralph Loop 리뷰와 연동.
gstack /autoplan 패턴 — 프로젝트 자동 스캔 후 스프린트 계획 자동 생성
블로그/뉴스 모니터링
| name | github |
| description | GitHub 작업 (PR, Issue, CI/CD) |
gh pr create --title "제목" --body "설명"
gh pr list --state open
gh pr view 123
gh pr merge 123
gh issue create --title "버그: 설명" --label "bug"
gh issue list --state open
gh issue close 123
.github/workflows/ 에 워크플로우 정의main — 프로덕션 (보호됨)develop — 개발 통합feature/* — 기능 개발fix/* — 버그 수정release/* — 릴리스 준비이 스킬 실행 시 반드시 칸반보드에 기록한다.
실행 전:
# 1. 팀/티켓이 없으면 생성
curl -X POST http://localhost:5555/api/teams/{team_id}/tickets -H "Content-Type: application/json" -d '{"title":"스킬 실행: github","priority":"medium"}'
# 2. 클레임
curl -X PUT http://localhost:5555/api/tickets/{ticket_id}/claim -H "Content-Type: application/json" -d '{"member_id":"agent-xxx"}'
# 3. progress_note
curl -X PUT http://localhost:5555/api/tickets/{ticket_id}/progress -H "Content-Type: application/json" -d '{"note":"스킬 실행 시작"}'
실행 후:
# 4. 산출물 등록
curl -X POST http://localhost:5555/api/tickets/{ticket_id}/artifacts -H "Content-Type: application/json" -d '{"creator_member_id":"agent-xxx","title":"결과","content":"...","artifact_type":"result"}'
# 5. Review 전환
curl -X PUT http://localhost:5555/api/tickets/{ticket_id}/status -H "Content-Type: application/json" -d '{"status":"Review"}'