ワンクリックで
git
Use plain Git for local history, branches, pushes, and Hostinger deployment checkouts.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Use plain Git for local history, branches, pushes, and Hostinger deployment checkouts.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Skill evaluation framework, self-evolving agent loop, multi-agent SDLC orchestration, and tool-use optimization for automated quality gates.
Use when editing owner/admin pages, CRUD forms, media library, environment editor, permissions, audit log, integrations, or admin navigation.
Use when editing PHP controllers, services, JSON persistence, auth, support assistant context, wallet, orders, reviews, media, or audit behavior.
Use bapXaura CLI for ALL file/content/db operations. Never use raw shell/edit/write/find/grep tools directly.
Use when editing Hostinger deployment, Git auto-deploy, environment, permissions, cron, or production setup documentation.
Use when editing README, docs, project-map docs, or agent-facing instructions.
| type | skill |
| name | git |
| description | Use plain Git for local history, branches, pushes, and Hostinger deployment checkouts. |
| allowed-tools | Bash(git:*) |
Git is the only repository executable required on Hostinger. Do not require
GitHub CLI (gh) on the hosted server.
git for status, diff, branches, commits, fetch, pull, and push.bapXaura only for project-owned operations such as tests, maps, schema,
database access, browser automation, hooks, and AI configuration.bapXaura.git status --short --branch
git switch -c fix/issue-123-description
git diff --check
git add path/to/intended-file
git commit -m "fix: describe the change"
git push -u origin HEAD
Pushing an eligible feature/fix branch lets the repository workflow create or update the PR. CI and reviewer handoffs run in GitHub Actions.
All .github/workflows/*.yml files contain an if: guard matching the
repository name. When the repo is renamed or forked, update every workflow:
branch-pr.yml: github.repository == '<owner>/<repo>'ci.yml, ai-pr-review.yml, issue-agent-trigger.yml, issue-comment-handoff.yml: endsWith(github.repository, '<repo>')sync-upstream.yml: github.repository == '<owner>/<repo>'All seven workflow files must match the current repository. CI runs are otherwise silently skipped.
git status --short --branch
git fetch origin
git pull --ff-only origin main
git rev-parse HEAD
Hostinger hPanel normally performs the pull automatically. Manual SSH Git commands are recovery and diagnosis tools only.