원클릭으로
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 직업 분류 기준
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>
| 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)