Awesome-omni-skill paas-overview
Overview of the PaaS stack - health checks, service URLs, and common operations.
install
source · Clone the upstream repo
git clone https://github.com/diegosouzapw/awesome-omni-skill
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/diegosouzapw/awesome-omni-skill "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/cli-automation/paas-overview" ~/.claude/skills/diegosouzapw-awesome-omni-skill-paas-overview && rm -rf "$T"
OpenClaw · Install into ~/.openclaw/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/diegosouzapw/awesome-omni-skill "$T" && mkdir -p ~/.openclaw/skills && cp -r "$T/skills/cli-automation/paas-overview" ~/.openclaw/skills/diegosouzapw-awesome-omni-skill-paas-overview && rm -rf "$T"
manifest:
skills/cli-automation/paas-overview/SKILL.mdsafety · automated scan (medium risk)
This is a pattern-based risk scan, not a security review. Our crawler flagged:
- dumps environment variables
- makes HTTP requests (curl)
- references API keys
Always read a skill's source content before installing. Patterns alone don't mean the skill is malicious — but they warrant attention.
source content
PaaS Stack Overview
This skill provides an overview of the self-hosted PaaS stack and common operations.
Services
| Service | Purpose | Env Vars |
|---|---|---|
| Gitea | Git repository hosting | , |
| Coolify | Application deployment | , |
| n8n | Workflow automation | , |
| LobeChat | AI chat interface | |
| OpenClaw | AI gateway | |
Quick Health Check
echo "=== Service Health ===" echo "Gitea: $(curl -sf $GITEA_URL/api/healthz && echo OK || echo FAIL)" echo "Coolify: $(curl -sf $COOLIFY_URL/api/health && echo OK || echo FAIL)" echo "n8n: $(curl -sf $N8N_URL/healthz && echo OK || echo FAIL)" echo "LobeChat: $(curl -sf $LOBE_URL/api/health && echo OK || echo FAIL)"
Available Skills
| Skill | Purpose | Quick Command |
|---|---|---|
| Repository management | List repos, create branches, manage PRs |
| Deployment management | Deploy apps, manage envs, view logs |
| Workflow automation | Create workflows, manage credentials |
| CI/CD pipeline setup | Connect repos to Coolify |
| LobeChat integration | Knowledge base queries |
Common Operations
Create and Deploy a New App
# 1. Create repository in Gitea curl -X POST "$GITEA_URL/api/v1/user/repos" \ -H "Authorization: token $GITEA_TOKEN" \ -H "Content-Type: application/json" \ -d '{"name": "my-app", "auto_init": true}' # 2. Connect to Coolify (creates deploy key + webhook) bash /srv/paas/scripts/setup-ci-cd.sh my-app myapp 3000 # 3. Push code → auto deploys via webhook
CI/CD Architecture
Push to Gitea ↓ Webhook → https://coolify.domain/webhooks/source/gitea/events/manual?app={uuid} ↓ Coolify clones via SSH (git@gitea:user/repo.git) ↓ Build container → Deploy to coolify network ↓ Traefik routes by domain → Container
Key requirements:
- Gitea must be on
network (for SSH clone access)coolify - Coolify proxy must be on
(for cloudflared access)paas-network - Deploy key in both Coolify and Gitea
- Webhook secret matching
manual_webhook_secret_gitea
Check Deployment Status
curl -s "$COOLIFY_URL/api/v1/deployments" \ -H "Authorization: Bearer $COOLIFY_TOKEN" | jq '.[0:3] | .[] | {status, created_at}'
Trigger Manual Deployment
curl -X POST "$COOLIFY_URL/api/v1/applications/APP_UUID/restart" \ -H "Authorization: Bearer $COOLIFY_TOKEN"
Create Automation Workflow
# List n8n workflows curl -s "$N8N_URL/api/v1/workflows" \ -H "X-N8N-API-KEY: $N8N_TOKEN" | jq '.data[] | {id, name, active}'
Scripts
| Script | Purpose |
|---|---|
| Connect repo → Coolify with deploy keys |
| Regenerate API tokens |
| Full stack setup |
Note: Use
bash prefix for cross-platform compatibility.
Token Refresh
If API calls fail with authentication errors:
# Refresh all tokens bash /srv/paas/scripts/refresh-tokens.sh --all # Refresh specific service bash /srv/paas/scripts/refresh-tokens.sh --gitea bash /srv/paas/scripts/refresh-tokens.sh --coolify
Network Architecture
The stack uses two bridged networks for full inter-service communication:
| Network | Services | Purpose |
|---|---|---|
| All core services | Stack internal communication |
| Deployed apps + proxy | Coolify-managed applications |
All core services are connected to BOTH networks, allowing:
- Stack services to communicate with each other
- Stack services to communicate with deployed applications
- n8n workflows to call deployed app APIs
- OpenClaw agent to interact with deployed services
Network Troubleshooting
# Check which networks a service is on docker inspect gitea --format '{{range $k, $v := .NetworkSettings.Networks}}{{$k}} {{end}}' # Connect all core services to coolify network (if missing) docker network connect coolify gitea docker network connect coolify n8n docker network connect coolify openclaw-cli docker network connect coolify lobe-chat docker network connect paas-network coolify-proxy # Verify all connections for svc in gitea n8n openclaw-cli lobe-chat; do echo "$svc: $(docker inspect $svc --format '{{range $k, $v := .NetworkSettings.Networks}}{{$k}} {{end}}')" done
Service-Specific Skills
For detailed operations, use the dedicated skills:
- Gitea operations: Read
/srv/paas/skills/gitea/SKILL.md - Coolify operations: Read
/srv/paas/skills/coolify/SKILL.md - n8n operations: Read
/srv/paas/skills/n8n/SKILL.md - CI/CD setup: Read
/srv/paas/skills/ci-cd/SKILL.md
Environment Variables
All service URLs and tokens are available as environment variables:
# Check available env vars env | grep -E "_URL|_TOKEN" | grep -v "="