用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/modbender/skill-library-mcp --skill 4090命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Bloom Mission Discovery — find missions matched to your taste, submit content, and track rewards. Powered by Bloom Protocol.
DESCRIPTION of what this skill does. Include specific trigger keywords and scenarios. Use when: scenario1, scenario2, scenario3.
First-time setup for the Durable Agents stack (Mastra + Trigger.dev). Run once before using the main skill.
正在显示 SKILL.md
基于 SOC 职业分类
| name | 4090 服务器控制 |
| description | 通过 SSH 控制 4090 服务器(192.168.199.17)。 |
通过 SSH 控制 4090 服务器(192.168.199.17)。
# Dify 状态检查
ssh -F ~/.ssh/config 4090 "docker ps -a | grep dify"
# 查看资源使用
ssh -F ~/.ssh/config 4090 "docker stats --no-stream"
# 重启 Dify
ssh -F ~/.ssh/config 4090 "cd ~/dify/docker && docker-compose restart"
# 查看日志
ssh -F ~/.ssh/config 4090 "docker logs -f docker-api-1"
# 查看所有容器
docker ps -a
# 查看资源占用
docker stats --no-stream --format 'table {{.Name}}\t{{.CPUPerc}}\t{{.MemPerc}}'
# 重启单个容器
docker restart docker-api-1
# 查看容器日志
docker logs -f docker-api-1
| 服务 | 容器名 | 端口 | 说明 |
|---|---|---|---|
| API | docker-api-1 | 5001 | 主 API |
| Worker | docker-worker-1 | 5001 | 异步任务 |
| Web | docker-web-1 | 3000 | 前端界面 |
| Plugin | docker-plugin_daemon-1 | 5003 | 插件服务 |
| Sandbox | docker-sandbox-1 | - | 安全沙箱 |
# CPU/内存
top -bn1 | head -5
# 磁盘使用
df -h
# 负载情况
uptime
~/.ssh/config:
Host 4090
HostName 192.168.199.17
User olmmlo
IdentityFile ~/.ssh/4090_key
PasswordAuthentication no