Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计异常

devops-pathfinders开发运营探路者

Agent Skill

用于辅助云资源、部署、容器、基础设施和运维自动化任务。它适合让 Agent 检查配置、整理部署步骤、分析资源状态、生成排障思路或辅助云服务接入。使用时需要明确目标环境、账号权限、区域和资源组,区分本地测试与生产操作;涉及删除资源、重启服务、修改网络或权限配置时,应先确认影响范围。

总安装

424

周安装

17

GitHub Stars

10

下载量

137
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:devops-pathfinders(开发运营探路者)
来源仓库:https://github.com/founderjourney/claude-skills
仓库路径:skills/devops-pathfinders
安装命令:
npx skills add https://github.com/founderjourney/claude-skills --skill devops-pathfinders
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/founderjourney/claude-skills --skill devops-pathfinders

简介

用于辅助云资源、部署、容器和基础设施管理,适合检查配置、整理部署步骤或生成排障思路。

  • 适用于需要自动化运维、CI/CD 流水线搭建或多环境部署的场景。
  • 通过 GitHub 安装,提供简单、功能性的基础设施管理方案。
  • 使用时需明确目标环境、账号权限和资源组,区分测试与生产操作。
  • 涉及删除或修改网络配置时应先评估影响范围,避免误操作导致服务中断。

SKILL.md

DevOps Pathfinders - Advanced Server Management

Skill especializado para gestión avanzada de infraestructura Pathfinders Labs en Contabo con Debian 12.

Philosophy: KISS (Keep It Simple, Stupid)

Esta skill implementa infraestructura simple, funcional y mantenible:

  • Una red Docker: pathfinders - todos los contenedores la comparten
  • MySQL compartida: Un contenedor MariaDB para todos los servicios
  • Nginx nativo: Sin Docker, instalado directamente en el servidor
  • Credenciales centralizadas: Un archivo /opt/pathfinders/.credentials
  • SSL wildcard: Un certificado para todos los subdominios
  • Docker Compose simple: Un archivo por servicio, sin orquestadores

Infrastructure Overview

Servidor: 173.212.247.69 (Contabo VPS) OS: Debian 12 (Bookworm) Disco: 200GB Estructura: Todo en /opt/pathfinders/ Red Docker: pathfinders (bridge externa) Dominio: internationalpathfinders.com (wildcard SSL)

Quick Reference

Read Infrastructure Documentation First

ALWAYS start by reading the infrastructure documentation:

view references/infrastructure.md

This contains critical information about server details, directory structure, credentials location, network configuration, SSL setup, and security configuration.

Available Scripts

All scripts are located in scripts/ and are executable:

  1. init_debian_server.sh - Setup completo de servidor Debian 12 desde cero
  2. docker_deploy.sh - Deployment rápido de servicios Docker con templates
  3. ssl_renew.sh - Renovación de certificado SSL wildcard
  4. backup_mysql.sh - Backup automatizado de bases de datos MySQL
  5. unban_ip.sh - Recuperación de acceso SSH (desbanear fail2ban)
  6. container_health.sh - Monitoreo y diagnóstico de contenedores Docker

Available References

Detailed documentation in references/:

  1. infrastructure.md - Documentación completa de la infraestructura actual
  2. nginx_patterns.md - Configuraciones Nginx probadas para diferentes casos
  3. docker_patterns.md - Templates docker-compose para diferentes servicios
  4. troubleshooting.md - Guía completa de resolución de problemas

When to Use Each Resource

Use Scripts When

  • init_debian_server.sh: Setting up a new Contabo VPS from scratch
  • docker_deploy.sh: Deploying new WordPress, n8n, Next.js, or custom services
  • ssl_renew.sh: SSL certificate is expiring (every 90 days)
  • backup_mysql.sh: Creating database backups (manually or via cron)
  • unban_ip.sh: SSH access blocked by fail2ban or other access issues
  • container_health.sh: Diagnosing container issues or checking system health

Read References When

  • infrastructure.md: Before ANY work on the server - contains critical paths and conventions
  • nginx_patterns.md: Configuring reverse proxy for new services
  • docker_patterns.md: Creating docker-compose.yml files for new deployments
  • troubleshooting.md: Diagnosing issues (502 errors, connectivity, disk space, etc.)

Common Workflows

1. Setup New Debian Server

Transfer script to server and run initialization. This installs Docker, Nginx, fail2ban, UFW, certbot, creates directory structure, and applies security hardening.

2. Deploy New Service

Read docker patterns for the service type, use deployment script to create docker-compose.yml, configure Nginx reverse proxy using nginx patterns, and test configuration.

3. Troubleshoot Access Issues

Run unban script to clear fail2ban blocks. If still failing, read troubleshooting guide for SSH-specific solutions.

4. Monitor Container Health

Run container_health.sh for interactive monitoring with resource usage, container status, logs viewing, network inspection, and disk usage analysis.

5. Renew SSL Certificate

Run ssl_renew.sh which handles DNS challenge with Cloudflare automatically. Required every 90 days.

6. Backup Databases

Run backup_mysql.sh to create compressed backups with 30-day retention in /opt/pathfinders/backups/mysql/.

Critical Conventions

Always Follow These Rules

  1. Network: All services MUST use pathfinders network (external: true)
  2. Credentials: Load with source /opt/pathfinders/.credentials before starting services
  3. MySQL Host: Always use mysql as the container name/hostname
  4. Directory Structure: All services under /opt/pathfinders/<service-name>/
  5. Nginx Configs: One file per domain in /etc/nginx/conf.d/
  6. Service Order: Start MySQL BEFORE dependent services
  7. SSL: Use wildcard cert at /etc/letsencrypt/live/internationalpathfinders.com/

Decision Tree for Common Tasks

User asks about server setup

Read infrastructure.md to understand current state. If new server: use init_debian_server.sh. If existing: provide commands based on infrastructure.md.

User asks to deploy a service

Read docker_patterns.md for service type, use docker_deploy.sh or provide manual docker-compose, read nginx_patterns.md for reverse proxy config, provide complete deployment steps.

User has connectivity/access issues

Run unban_ip.sh if SSH related, read troubleshooting.md for specific error, provide diagnostic commands and solutions.

User asks about SSL

Check if renewal needed with ssl_renew.sh, verify cert paths in nginx configs, reference nginx_patterns.md for SSL blocks.

User needs backups

Use backup_mysql.sh for databases, provide tar commands for volumes, reference infrastructure.md for backup location.

User has container issues

Run container_health.sh for diagnosis, check docker_patterns.md for proper configuration, use troubleshooting.md for specific errors.

User asks about monitoring

Run container_health.sh, provide docker stats, df -h, free -h commands, check troubleshooting.md for resource issues.

Response Guidelines

For setup/deployment tasks:

Read relevant reference files, provide step-by-step commands, explain what each step does, show expected output, include verification commands.

For troubleshooting:

Acknowledge the issue, provide diagnostic commands first, read troubleshooting.md for solutions, explain root cause, provide prevention tips.

For configuration:

Read appropriate patterns file, provide complete working config, explain critical sections, include test commands (nginx -t, docker-compose config), show reload/restart commands.

Always Include

Commands ready to copy-paste, expected output or what to look for, how to verify success, what to do if it fails, links to reference files for more details.

Language Preference

User communicates primarily in Spanish. Respond in Spanish when appropriate, but keep technical commands and code in English as per standard DevOps practices.

Maintenance Reminders

  • SSL Renewal: Every 90 days - use ssl_renew.sh
  • Backups: Weekly recommended - use backup_mysql.sh
  • Disk Space: Monitor with df -h and docker system df
  • Security Updates: Monthly apt update && apt upgrade
  • Log Rotation: Clean old logs with journalctl --vacuum-time=7d
  • Docker Cleanup: Monthly docker system prune -a

Emergency Procedures

Complete SSH Lockout

Access Contabo panel, enable rescue mode, mount disk and diagnose, fix issue and reboot.

Server Not Responding

Check Contabo panel for server status, reboot from panel if necessary, wait 2-3 minutes for services to start, verify services.

Critical Disk Space

Run docker system prune with caution, clean old backups, clean logs with journalctl.

Additional Resources

  • Contabo Panel: https://my.contabo.com/
  • Cloudflare Dashboard for DNS and API tokens
  • Server IP: 173.212.247.69
  • Main Domain: internationalpathfinders.com

*This skill embodies 15+ years of DevOps experience with a strong KISS mindset for production-ready, maintainable infrastructure.*

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

35.47%
按下载量换算49

Claude

29.29%
按下载量换算40

Cursor

20.02%
按下载量换算27

Gemini CLI

8.94%
按下载量换算12

安全审计

Gen Agent Trust Hub

未通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills