一键导入
github
GitHub 저장소, 이슈, PR, 코드 검색 — Personal Access Token 연동 필요. Use for: github, 깃허브, 저장소, repo, 이슈, PR, pull request, 커밋, branch, code search
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
GitHub 저장소, 이슈, PR, 코드 검색 — Personal Access Token 연동 필요. Use for: github, 깃허브, 저장소, repo, 이슈, PR, pull request, 커밋, branch, code search
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
One-shot import of Google Contacts (People API) into the user's Connect (인맥) list. Pages through every contact, dedupes against existing connections by email then phone, and inserts new rows with category=acquaintance and tags=['google_contacts']. Honors BR-SOCIAL-3 — never writes social_profiles even if Google returns LinkedIn URLs. Use for: 구글 연락처 가져오기, 연락처 동기화, contacts import, import google contacts, sync google contacts, google 연락처, 인맥 가져오기, 주소록 가져오기
Record and sync Connect (인맥) activity timeline entries. Pulls from Google Calendar + Gmail (shares google-workspace OAuth token), or accepts manual entries like '김철수와 어제 점심 먹었어'. Use for: 인맥 활동, 활동 기록, 만남 기록, 미팅 기록, 점심, 저녁, 통화 기록, 일정 동기화, 인맥 동기화, connect sync, connect activity, meeting log, met with, had lunch with
Add or replace Context Memo (context_notes) for a Connect (인맥) entry. Looks up the target connection by exact or fuzzy name when the agent doesn't already know the connection UUID. Use for: 인맥 메모, 인맥 메모 추가, 메모 추가, 메모 수정, 인물 메모, 사람 메모, connect memo, add note, update note, context note
Scan a business card image with Gemini Vision and extract structured contact fields (name, role, company, email, phone, address, etc.) to create a new Connect (인맥) entry. Use for: 명함, 명함 스캔, 명함 등록, 명함 인식, 명함 저장, 명함 추가, 인맥, 인맥 추가, 인맥 등록, 연락처 등록, 연락처 추가, 비즈니스 카드, business card, business card ocr, scan business card, contact card, register contact
"Analyze uploaded images using Gemini Vision, or generate/edit images with Gemini AI. Use for: 이미지 분석, 사진 분석, 이미지 생성, 그려줘, 그림 만들어줘, image generation, photo analysis"
Search the internet for up-to-date information and fetch web page content via Tavily. Use for: 검색해줘, 찾아줘, 최신 정보, 인터넷 검색, 뉴스, 요즘, web search, latest news, current information
| name | github |
| display_name | GitHub 연동 |
| description | GitHub 저장소, 이슈, PR, 코드 검색 — Personal Access Token 연동 필요. Use for: github, 깃허브, 저장소, repo, 이슈, PR, pull request, 커밋, branch, code search |
| version | 1.0.0 |
| emoji | 🐙 |
| category | productivity |
| enabled_by_default | false |
| requires_api_key | true |
| platforms | web, telegram, api |
| api_key_provider | github |
| api_key_label | GitHub Personal Access Token |
| uses_provider | false |
| allowed-tools | ["Bash","exec"] |
| triggers | {"keywords":["github","깃허브","저장소","repository","repo","이슈","issue","PR","pull request","풀리퀘스트","커밋","commit","브랜치","branch","코드","code search"],"when_to_use":["User asks about GitHub repositories or code","User wants to search for issues or pull requests","User wants to browse or read code from GitHub","User mentions a GitHub repository URL or org/repo name"]} |
Always pass --user-id {user_id}.
GITHUB_TOKEN environment variable when configured in the web UI. Always attempt to run the script — it will report if credentials are missing.
repo, read:userContents, Issues, Pull requests 권한 부여DATABASE_URLpython3 github/scripts/github.py \
--user-id {user_id} list-repos \
--visibility all \
--sort updated \
--limit 10
python3 github/scripts/github.py \
--user-id {user_id} list-issues \
--repo "{owner}/{repo}" \
--state open \
--limit 10
python3 github/scripts/github.py \
--user-id {user_id} create-issue \
--repo "{owner}/{repo}" \
--title "{이슈 제목}" \
--body "{이슈 본문}" \
--labels "bug,help wanted"
python3 github/scripts/github.py \
--user-id {user_id} list-prs \
--repo "{owner}/{repo}" \
--state open \
--limit 10
python3 github/scripts/github.py \
--user-id {user_id} get-pr \
--repo "{owner}/{repo}" \
--pr-number {pr_number}
python3 github/scripts/github.py \
--user-id {user_id} search-code \
--query "{코드 쿼리} repo:{owner}/{repo}" \
--limit 10
--visibility all|public|private: 저장소 공개 범위 (list-repos)--sort updated|created|pushed|full_name: 정렬 기준 (list-repos)--state open|closed|all: 이슈/PR 상태 필터--limit N: 결과 개수 (1~50)User: "내 GitHub 저장소 목록 보여줘"
python3 github/scripts/github.py \
--user-id abc123 list-repos \
--visibility all \
--sort updated \
--limit 10
User: "facebook/react 최근 이슈 보여줘"
python3 github/scripts/github.py \
--user-id abc123 list-issues \
--repo "facebook/react" \
--state open \
--limit 10
User: "PR #42 상세 내용 알려줘"
python3 github/scripts/github.py \
--user-id abc123 get-pr \
--repo "owner/repo" \
--pr-number 42
User: "우리 레포에서 useState 사용한 곳 찾아줘"
python3 github/scripts/github.py \
--user-id abc123 search-code \
--query "useState repo:owner/my-repo" \
--limit 10
repo:owner/name 한정자 없이 코드 검색 시 rate limit 주의