ワンクリックで
git-init
Initialize a git repo with SSH, identity and remote configured. Usage: /git-init <personal|laboral> <key_name> <remote_url> <branch>
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Initialize a git repo with SSH, identity and remote configured. Usage: /git-init <personal|laboral> <key_name> <remote_url> <branch>
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Compose structured business-email drafts in English from curated templates and phrase banks from Business Email (book). Use this whenever the user asks for enquiry, informing, request, complaint, apology, order-status, or meeting-style business emails.
Normalize filenames for AWS S3 and CloudFront: lowercase, safe characters, extension normalization (.jpeg → .jpg), and .tsv audit log. Usage: /aws-naming <directory_or_file>
Apply Kabat One Markdown styling to a file by platform. Usage: /styling <hedgedoc|gitlab|github> [mit|gpl] <file>
Maintain CHANGELOG.md with correct CST dates, reverse chronological order, and Spanish Mexican language. Use this skill when updating the changelog.
Full commit workflow with mandatory CHANGELOG validation, SSH validation, and conventional commits in English. Use this skill before making any git commit.
Compose and send OWA-compatible HTML email. Usage: /mail <owa|mac|graph> <delivery|generic> <subject>
| name | git-init |
| description | Initialize a git repo with SSH, identity and remote configured. Usage: /git-init <personal|laboral> <key_name> <remote_url> <branch> |
~/rules/cot/git_init.md from line 1 to endgit initpersonal:
git config user.name "Rodrigo Álvarez"
git config user.email "incognia@gmail.com"
laboral:
git config user.name "Rodrigo Álvarez"
git config user.email "ralvarez@kabatone.com"
git config core.sshCommand "ssh -i ~/.ssh/$1 -o IdentitiesOnly=yes"
ls ~/.ssh/$1 — if not found, list available keys with ls ~/.ssh/ and ask the usergit remote add origin $2git branch -M $3echo "=== CONFIGURATION ==="
echo "Email: $(git config user.email)"
echo "SSH: $(git config core.sshCommand)"
echo "Remote: $(git remote get-url origin)"
echo "Branch: $3"
echo "====================="
If arguments are missing, use these defaults based on context:
incognia, branch=mainkone, branch=mainIf no arguments are provided at all, ask the user for context and remote URL.
/git-init personal incognia git@github.com:incognia/myproject.git main/git-init laboral kone git@gitlab.com:incogniadev/project.git main/git-init personal — uses defaults, asks for remote URL~/rules/cot/git_init.md~/rules/rulesets/GIT.md