ワンクリックで
ssh-import
Import SSH public key from GitHub into the current server. Run from within the server. Usage: /ssh-import <faraday|cad>
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Import SSH public key from GitHub into the current server. Run from within the server. Usage: /ssh-import <faraday|cad>
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
| name | ssh-import |
| description | Import SSH public key from GitHub into the current server. Run from within the server. Usage: /ssh-import <faraday|cad> |
incognia (personal servers and infra)incogniadev (client servers)$0 = faraday → GITHUB_USER=incognia$0 = cad → GITHUB_USER=incogniadevSHELL_USER=$(whoami)
SHELL_HOME=$(eval echo ~$SHELL_USER)
echo "Importing key for user: $SHELL_USER ($SHELL_HOME)"
Option A: ssh-import-id (Ubuntu/Debian)
ssh-import-id gh:GITHUB_USER
Option B: curl (any Linux, including Fedora/RHEL)
mkdir -p "$SHELL_HOME/.ssh" && chmod 700 "$SHELL_HOME/.ssh"
curl -s "https://github.com/GITHUB_USER.keys" >> "$SHELL_HOME/.ssh/authorized_keys"
sort -u -o "$SHELL_HOME/.ssh/authorized_keys" "$SHELL_HOME/.ssh/authorized_keys"
chmod 600 "$SHELL_HOME/.ssh/authorized_keys"
echo "User: $SHELL_USER"
echo "Keys in authorized_keys: $(grep -c 'ssh-ed25519' "$SHELL_HOME/.ssh/authorized_keys")"
ssh_import_id:
- gh:GITHUB_USER
/ssh-import faraday — import personal key (from gh:incognia)/ssh-import cad — import work key (from gh:incogniadev)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.
Initialize a git repo with SSH, identity and remote configured. Usage: /git-init <personal|laboral> <key_name> <remote_url> <branch>