소스 정보
- 저장소
- tomevault-io/skills-registry
- 최근 소스 활동
- 2026년 7월 3일 19:45
- 감지된 SKILL.md 언어
- 영어
- 스타
- 0
- 포크
- 0
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/tomevault-io/skills-registry --skill git-workflow-orchestrator명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
| Use when this capability is needed.
> Use when this capability is needed.
Review architecture and API design for the vfs-s3 project. Use when the user mentions @architect, asks to review an issue's design, discuss module boundaries, API shape, or architectural decisions for vfs-s3. Also trigger when the user wants to create an ADR (Architecture Decision Record) or evaluate a technical approach for the project. Intended for dispatch from Codex automation or Claude routines; GitHub trigger phrase: @vfs-s3-bot please prepare design doc Use when this capability is needed.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | git-workflow-orchestrator |
| description | >- Use when this capability is needed. |
Coordinate git-branch-creator, git-commit-creator, git-push-creator, and git-pr-creator as sequential phases. After the last phase, return the pull request URL when available.
Use it for requests like:
Do not use it for:
main or develop) as the branch to push (push-creator blocks it)Opening a PR needs a GitHub token with the same resolution as git-pr-creator: GITHUB_TOKEN or GH_TOKEN, then repo-root github-pr.local.json (preferred for Copilot + Cursor skill layouts), then legacy .github/skills/git-pr-creator/config/github-pr.local.json. Details: git-pr-creator README.
Script-driven: run-git-ship-workflow.ps1 checks the token before Phase 1 when -DryRun is not set, then sets GH_TOKEN for subprocesses.
Agent-driven: Confirm a token is configured before Phase 4 (or at workflow start); if missing, stop and point to the git-pr-creator README.
Run each underlying skill in order. After every phase, state SUCCESS or FAILED and paste relevant script output. Stop on first failure.
Phase 1 — Branch — Follow git-branch-creator (staging question N/A; use its script with the requested branch name).
create-branch.ps1 exits 0, or user is already on the intended branch and you document SKIPPED with reason.Phase 2 — Commit — Follow git-commit-creator (staging prompt, preview, proposed message OK / Not OK, then commit).
git status --short if ambiguous).Phase 3 — Push — Follow git-push-creator (push-branch.ps1).
Phase 4 — PR — Follow git-pr-creator (create-pr.ps1).
gh pr create).When the user supplies a final commit message and wants one command, run:
pwsh -NoProfile -File ./.github/skills/git-workflow-orchestrator/scripts/run-git-ship-workflow.ps1 `
-BranchName "<name>" `
-CommitMessage "<message>" `
[-SkipBranch] `
[-BaseBranch <branch>] `
[-PrBase <branch>] `
[-ApproveInstall] [-ApproveAuth] `
[-AllowDuplicatePrefix] `
[-DryRun] `
[-ReportTokens]
-CommitMessage is required (stages all changes and commits in one step).-SkipBranch omits Phase 1 (use when already on the target branch).-BaseBranch is omitted, the script auto-detects the core branch (main preferred, then develop).-PrBase is omitted, it defaults to the resolved -BaseBranch value.-ApproveInstall / -ApproveAuth for headless gh setup when needed.Phase banners and subprocess output use the host stream so they stay visible when the script is invoked from tools that assign function output. On success, the script also emits PR_URL: <url> on the success stream for redirection or piping.
Interpret the script’s phase lines and final PR_URL: line for the user.
After all phases, respond with a compact table:
| Phase | Name | Status | Notes |
| ----- | ------ | -------- | ----- |
| 1 | Branch | SUCCESS | ... |
| 2 | Commit | SUCCESS | ... |
| 3 | Push | SUCCESS | ... |
| 4 | PR | SUCCESS | ... |
PR: <paste URL verbatim from gh output>
Use FAILED and stop populating later phases if a step errors. Include a short Notes reason on failure.
Activate by saying "with token reporting", "show tokens used", or "report_tokens: true".
Before Phase 1 — snapshot current session token count from the Claude Code session log:
# macOS / Linux
find "$HOME/.claude/projects" -name "*.jsonl" -type f 2>/dev/null \
| xargs ls -t 2>/dev/null | head -1
# Windows (PowerShell)
Get-ChildItem "$env:USERPROFILE\.claude\projects" -Recurse -Filter "*.jsonl" `
-ErrorAction SilentlyContinue | Sort-Object LastWriteTime -Descending `
| Select-Object -First 1 -ExpandProperty FullName
Read the last line of the JSONL file and extract the cumulative token total. Save as TOKENS_BEFORE.
After Phase 4 — read again, save as TOKENS_AFTER. Report the delta as tokens consumed during this workflow run.
If the session log is not readable, skip token reporting and note it in the summary.
-ReportTokens)The PowerShell subprocess has no access to Claude's session log. Instead it records per-phase wall-clock timing and appends it to the workflow summary:
=== Phase timing ===
Phase 1 Branch : 1.2s
Phase 2 Commit : 0.8s
Phase 3 Push : 3.1s
Phase 4 PR : 4.7s
Total : 9.8s
Note: token count unavailable in script-driven mode.
| Phase | Name | Status | Notes |
| ----- | ------ | ------- | ----- |
| 1 | Branch | SUCCESS | ... |
| 2 | Commit | SUCCESS | ... |
| 3 | Push | SUCCESS | ... |
| 4 | PR | SUCCESS | ... |
PR: <url>
Tokens used during orchestration: ~12,400 (input: 9,800 / output: 2,600)
.github/skills/*/scripts/; do not reimplement git operations in the orchestrator narrative.main or develop) via this workflow (push-creator will refuse; report FAILED if attempted).Source: dneprokos/skills-examples — distributed by TomeVault.