Claude-skill-registry admin-app-coolify
install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/data/admin-app-coolify" ~/.claude/skills/majiayu000-claude-skill-registry-admin-app-coolify && rm -rf "$T"
manifest:
skills/data/admin-app-coolify/SKILL.mdsafety · automated scan (low risk)
This is a pattern-based risk scan, not a security review. Our crawler flagged:
- reads SSH private key
Always read a skill's source content before installing. Patterns alone don't mean the skill is malicious — but they warrant attention.
source content
Coolify - Self-Hosted PaaS
Purpose: Install and operate Coolify on a single server, then deploy apps via Nixpacks, Dockerfile, or Docker Compose.
Step 0: Gather Required Information (MANDATORY)
STOP. Before ANY installation commands, collect ALL parameters from the user.
Copy this checklist and confirm each item:
Required Parameters: - [ ] COOLIFY_SERVER_IP - Target server IP address - [ ] SSH_USER - SSH username (default: ubuntu) - [ ] SSH_KEY_PATH - Path to SSH private key (default: ~/.ssh/id_rsa) - [ ] COOLIFY_ROOT_USER_EMAIL - Admin email address - [ ] COOLIFY_ROOT_USER_PASSWORD - Admin password (see requirements below) - [ ] COOLIFY_INSTANCE_DOMAIN - Main Coolify URL (e.g., coolify.example.com) - [ ] COOLIFY_WILDCARD_DOMAIN - Base domain for apps (e.g., example.com) Conditional Parameters (ask user): - [ ] Using Cloudflare Tunnel for HTTPS? (Y/N) If Y: CLOUDFLARE_API_TOKEN, CLOUDFLARE_ACCOUNT_ID - [ ] Need OAuth callbacks or webhooks? (Y/N) If Y: Will configure origin certificates - [ ] Additional SSH public keys to authorize? (optional)
Password Requirements (Coolify enforced)
- Minimum 8 characters
- At least one uppercase letter (A-Z)
- At least one lowercase letter (a-z)
- At least one number (0-9)
- At least one symbol (!@#$%^&*)
DO NOT proceed to Step 1 until ALL required parameters are confirmed.
Step 1: Determine Installation Path
Based on user answers, follow the appropriate workflow:
Path A: Full Automation (Recommended)
Use when: New server, Cloudflare Tunnel for HTTPS, standard setup.
- Read
references/ENHANCED_SETUP.md - Export all parameters collected in Step 0
- Run enhanced setup script
Path B: Manual Installation
Use when: Existing server, custom requirements, or debugging.
- Read
references/INSTALLATION.md - Follow step-by-step SSH commands
- Configure SSH keys for localhost management (critical step)
Step 2: Secure HTTPS Access
Determine access method based on Step 0 answers:
| Scenario | Action |
|---|---|
| Cloudflare Tunnel = Yes | Read |
| OAuth/webhooks = Yes | Also read |
| Direct IP only (dev) | Skip tunnel, access via |
Step 3: Verify Installation
Run this verification checklist:
Verification: - [ ] Coolify UI accessible at configured domain or IP:8000 - [ ] Login with COOLIFY_ROOT_USER_EMAIL and password works - [ ] Servers → localhost shows "Connected" (green) - [ ] If tunnel: HTTPS working at COOLIFY_INSTANCE_DOMAIN
If localhost not connected: The SSH key configuration failed. See
references/INSTALLATION.md section "Configure Coolify SSH Access".
Navigation
Detailed references (one level deep):
- Manual SSH installation:
references/INSTALLATION.md - Fully automated setup:
references/ENHANCED_SETUP.md - Bundled scripts:
references/BUNDLED_SCRIPTS.md - Cloudflare Tunnel (wildcard):
references/cloudflare-tunnel.md - Origin certificates (OAuth/webhooks):
references/cloudflare-origin-certificates.md - Error 1033 troubleshooting:
references/TROUBLESHOOTING_CF1033.md
Critical Rules
- Always install Docker CE with Compose plugin before Coolify.
- Do not expose port 8000 publicly without HTTPS (tunnel or reverse proxy).
- Keep
intact; treat it as state./data/coolify - Always configure Coolify's SSH key for localhost management.
Logging Integration
Log major operations using centralized logging from
admin:
log_admin "SUCCESS" "installation" "Installed Coolify" "version=4.x server=$SERVER_ID" log_admin "SUCCESS" "system-change" "Configured Coolify" "domain=$DOMAIN" log_admin "SUCCESS" "operation" "Deployed app via Coolify" "app=$APP_NAME"
Related Skills
for inventory and provisioning.admin-devops
for provider-specific VM setup.admin-infra-*
for local Docker/CLI support when coordinating from WSL.admin-wsl
References
- Coolify docs: https://coolify.io/docs
- Coolify GitHub: https://github.com/coollabsio/coolify