github-integration
Skill: GitHub Integration
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Skill: GitHub Integration
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Never run Docker containers as root. Enforce USER directive in Dockerfiles and user: in compose files. Database images are the only exception.
Handle packages migrating between pnpm workspaces. Clean stale root copies, update workspace configs, fix broken workspace:* references.
Recover lost source files from pi session history when files were deleted but never committed to git.
Improve the Hormuz clock model through new signal classes, schema changes, uncertainty modeling, and better rendering or branch logic
Revise fork-tax protocols so they assume concurrent agents by default in shared workspaces, forbid destructive repo-wide cleanup of unrelated dirt, and require path-scoped staging plus explicit blocker recording.
Persist the full working state into git (commit + tag + push + manifest artifacts) as a deterministic handoff snapshot. Use when the user requests Π / fork tax / full dump.
| name | github-integration |
| description | Skill: GitHub Integration |
Perform GitHub operations across all tracked repositories in orgs/**, including issue/PR management, repository synchronization, and automation workflows.
src/issues/projector.ts to mirror issues/PRs into workspacemirror-prs.ts to sync PRs between repositoriesgh command with repository contextGITHUB_TOKEN environment variable with repo scopeGITHUB_TOKEN environment variablerepo scope for PRs and issuesgh commandsissues/org/<owner>/<repo>/# Project everything for all tracked repos
GITHUB_TOKEN=<token> pnpm issues:project
# Clean output first
GITHUB_TOKEN=<token> pnpm issues:project -- --clean
# Project only issues
GITHUB_TOKEN=<token> pnpm issues:project -- --type issues
# Project only open PRs
GITHUB_TOKEN=<token> pnpm issues:project -- --type prs --state open
# Limit to specific repo
GITHUB_TOKEN=<token> pnpm issues:project -- --repo riatzukiza/promethean
# Mirror PRs from sst/opencode to riatzukiza/opencode
bun mirror-prs.ts
# This syncs dev branches and creates missing mirror PRs
# List issues for a repo
GITHUB_TOKEN=<token> gh issue list --repo owner/repo --state open
# Create PR
GITHUB_TOKEN=<token> gh pr create --repo owner/repo --title "PR Title" --body "PR description"
# List PRs
GITHUB_TOKEN=<token> gh pr list --repo owner/repo --state open
# Check repo status
GITHUB_TOKEN=<token> gh repo view owner/repo
src/issues/projector.tsmirror-prs.tssrc/giga/giga-watch.tsdocs/pr-mirroring.mdGITHUB_TOKEN environment variablerepo scope for PRs and issuesorgs/issues/org/<owner>/<repo>/GITHUB_TOKEN not setorgs/dev branch for mirroring