소스 정보
- 저장소
- taracodlabs/aiden
- 최근 소스 활동
- 2026년 6월 29일 11:13
- 감지된 SKILL.md 언어
- 영어
- 스타
- 796
- 포크
- 140
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
SOC 직업 분류 기준
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/taracodlabs/aiden --skill github-repo-management명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
| name | github-repo-management |
| description | GitHub repos: create, clone, fork, archive (gh CLI + git) |
| category | developer |
| version | 1.0.0 |
| origin | aiden |
| license | Apache-2.0 |
| tags | github, repository, repo, clone, fork, branch, gh-cli, git, remote, management |
Create, clone, fork, configure, and manage GitHub repositories using the gh CLI and git. Covers repo creation, branch management, secrets, and repo settings.
# Create public repo and clone locally
gh repo create my-new-project --public --clone
# Create private repo with description
gh repo create my-new-project --private --description "Internal API service"
# Create repo from local directory
cd "C:\Users\<you>\Projects\myapp"
gh repo create my-new-project --source=. --private --push
# Clone via gh (handles auth automatically)
gh repo clone owner/repo-name
# Clone to specific directory
gh repo clone owner/repo-name ./local-folder
# Clone with SSH explicitly
git clone git@github.com:owner/repo-name.git
# Fork to your account and clone locally
gh repo fork owner/repo-name --clone
# Fork to an organization
gh repo fork owner/repo-name --org my-org
# Your repos
gh repo list --limit 30
# Organization repos
gh repo list my-org --limit 50
# Filter by language
gh repo list --language python --limit 20
# List remote branches
git branch -r
# Create and push a new branch
git checkout -b feature/my-feature
git push -u origin feature/my-feature
# Delete a remote branch
git push origin --delete feature/old-branch
# List branches via gh
gh api repos/owner/repo/branches | python -m json.tool
# View repo details
gh repo view owner/repo-name
# View in browser
gh repo view owner/repo-name --web
# Edit repo description and topics
gh repo edit owner/repo-name --description "Updated description" --add-topic "api,python"
# List secrets
gh secret list
# Set a secret
gh secret set DATABASE_URL --body "postgresql://user:pass@host/db"
# Set from a file
gh secret set PRIVATE_KEY < private_key.pem
# Delete a secret
gh secret delete OLD_SECRET
# Archive (read-only, not deleted)
gh repo archive owner/repo-name
# Delete — IRREVERSIBLE — direct user to do this manually
# gh repo delete owner/repo-name --yes ← do not run this for the user
"Create a new private GitHub repo for my Python scripts"
→ Use step 1: gh repo create my-python-scripts --private --clone.
"Fork the fastapi repository so I can contribute"
→ Use step 3: gh repo fork tiangolo/fastapi --clone.
"Add my API key as a GitHub Actions secret"
→ Use step 7: gh secret set API_KEY --body "...".
gh repo delete for the user; direct them to do it in the GitHub web UIgh secret set are write-only in the GitHub UI — they cannot be read back after creation