소스 정보
- 저장소
- Abd0r/porcupineai
- 최근 소스 활동
- 2026년 8월 6일 14:20
- 감지된 SKILL.md 언어
- 영어
- 스타
- 3
- 포크
- 0
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/Abd0r/porcupineai --skill github-repo-management명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
Write code that does not look like AI output. Reject low-evidence and low-signal TypeScript patterns (chained assertions, unknown/object widening, Reflect, runtime typeof, module mocks) in favor of typed, boundary-checked code.
Control a Home Assistant smart home through its MCP server. Query sensor and entity states read-only, then act on devices (lights, switches, climate) via call_service with explicit user approval. Use for "turn off the living room lights", "what is the thermostat set to", "set bedroom temp", or any Home Assistant entity/device task.
Produce clear, accessible diagrams and charts (architecture, flow, sequence, ER, state, org, Gantt, timeline) as Mermaid or polished self-contained SVG. Covers picking the right diagram type, a consistent visual system, and accessibility. Use whenever you need to explain a system, a flow, data, or a process in a README, doc, benchmark report, plan, or launch graphic.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | github-repo-management |
| description | Clone, fork, create repos; remotes, releases, settings. |
| stack | vcs |
| tags | ["github","clone","fork","release","remote","repo"] |
Clone/fork/create repos, fix remotes, cut releases, inspect repo metadata.
Load github-auth. Prefer gh; fall back to git + token curl.
if command -v gh >/dev/null && gh auth status >/dev/null 2>&1; then AUTH=gh; else AUTH=git; fi
REMOTE_URL=$(git remote get-url origin 2>/dev/null || true)
OWNER_REPO=$(echo "$REMOTE_URL" | sed -E 's|.*github\.com[:/]||; s|\.git$||')
git clone https://github.com/OWNER/REPO.git
git clone --depth 1 https://github.com/OWNER/REPO.git
git clone --branch main https://github.com/OWNER/REPO.git
gh repo clone OWNER/REPO
gh repo fork OWNER/REPO --clone=true
git remote -v
# origin → your fork; add upstream if missing
git remote add upstream https://github.com/OWNER/REPO.git 2>/dev/null || true
gh repo create NAME --private --source=. --remote=origin --push
gh repo create ORG/NAME --public --description "short description"
git remote -v
git remote set-url origin https://github.com/YOU/REPO.git
gh repo view --json nameWithOwner,defaultBranchRef,isPrivate,url
git fetch origin
git branch -vv
gh release list --limit 10
gh release view latest
gh release create v1.2.3 --title "v1.2.3" --generate-notes
gh release upload v1.2.3 ./dist/artifact.tgz
gh api repos/OWNER/REPO/contents/PATH --jq '.[].name'
gh api "repos/OWNER/REPO/git/trees/BRANCH?recursive=1" --jq '.tree[].path' | head -100
gh api repos/OWNER/REPO/readme --jq .content | base64 -d | head -80