Token导航 LogoToken导航TokenDH.com
前端设计敏感数据github未标认证来源可访问许可证需确认审计通过

aracli-deploy-managementaracli 部署管理

Agent Skill

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

总安装

22,524

周安装

948

GitHub Stars

39

下载量

7,887
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:aracli-deploy-management(aracli 部署管理)
来源仓库:https://github.com/aradotso/trending-skills
仓库路径:skills/aracli-deploy-management
安装命令:
npx skills add https://github.com/aradotso/trending-skills --skill aracli-deploy-management
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/aradotso/trending-skills --skill aracli-deploy-management

简介

aracli-deploy-management 辅助云资源与部署运维自动化任务。

  • 适用于检查配置、分析资源状态、生成排障方案等场景。
  • 支持 Docker Compose 部署示例,涵盖主流云平台虚拟机方案。
  • 涉及生产环境操作时需谨慎确认账号权限与影响范围。
  • 安装后可通过命令行快速验证健康状态与通道配置。

SKILL.md

Deploying OpenClaw Agent Systems

Skill by ara.so — Daily 2026 Skills collection.

A practical guide to deploying and managing OpenClaw-compatible AI agent systems. Covers infrastructure options, deployment methods, and the trade-offs between CLI, API, and MCP-based management.


Infrastructure Options

1. Cloud VMs (AWS, GCP, Azure, Hetzner)

Spin up VMs and run agents as containerized services.

# Example: Docker Compose on a cloud VM
docker compose up -d agent-runtime

Pros:

  • Familiar ops tooling (Terraform, Ansible, etc.)
  • Easy to scale horizontally — just add more VMs
  • Pay-as-you-go pricing on most providers
  • Full control over networking and security

Cons:

  • You own the uptime — no managed restarts or healing
  • GPU instances get expensive fast
  • Cold start if you're spinning up on demand

Best for: Teams that already have cloud infrastructure and want full control.


2. Managed Container Platforms (Railway, Fly.io, Render)

Deploy agent containers without managing VMs directly.

# Example: Railway
railway up

# Example: Fly.io
fly deploy

Pros:

  • Zero server management — just push code
  • Built-in health checks, auto-restarts, and scaling
  • Easy preview environments for testing agent changes
  • Usually includes logging and metrics out of the box

Cons:

  • Less control over the underlying machine
  • Can get costly at scale compared to raw VMs
  • Cold starts on free/hobby tiers
  • GPU support is limited or nonexistent on most platforms

Best for: Small teams that want to move fast without an ops burden.


3. Bare Metal (Hetzner Dedicated, OVH, Colo)

Run agents directly on physical servers for maximum performance per dollar.

# Example: systemd service on bare metal
sudo systemctl start agent-runtime

Pros:

  • Best price-to-performance ratio, especially for GPU workloads
  • No noisy neighbors — predictable latency
  • Full control over hardware, kernel, drivers
  • No egress fees

Cons:

  • You manage everything: OS, networking, failover, monitoring
  • Scaling means ordering and provisioning new hardware
  • No managed load balancing — you build it yourself

Best for: Cost-sensitive workloads, GPU-heavy inference, or teams with strong ops skills.


4. Serverless / Edge (Lambda, Cloudflare Workers, Vercel Functions)

Run lightweight agent logic at the edge without persistent infrastructure.

# Example: deploy to Cloudflare Workers
wrangler deploy

Pros:

  • Zero idle cost — pay only for invocations
  • Global distribution with low latency
  • No servers to patch or maintain
  • Scales to zero and back automatically

Cons:

  • Execution time limits (often 30s–300s)
  • No persistent state between invocations
  • Not suitable for long-running agent sessions
  • Limited runtime environments (no arbitrary binaries)

Best for: Stateless agent endpoints, webhooks, or lightweight tool-calling proxies.


5. Hybrid

Combine approaches: use managed platforms for the API layer and bare metal for the agent runtime.

User → API (Railway/Vercel) → Agent Runtime (bare metal GPU)

Pros:

  • Each layer runs on the most cost-effective infra
  • API layer gets managed scaling, agent layer gets raw performance
  • Can migrate layers independently

Cons:

  • More moving parts to coordinate
  • Cross-network latency between layers
  • Multiple deployment pipelines to maintain

Best for: Production systems that need both cheap inference and a polished API layer.


Management Methods: CLI vs API vs MCP

Once your agents are deployed, you need a way to manage them — ship updates, check status, roll back. There are three main approaches.

CLI

A command-line tool that talks to your agent infrastructure over SSH or HTTP.

# Typical CLI workflow
mycli status
mycli deploy --service agent
mycli rollback
mycli logs agent --tail

Pros:

  • Fast for operators — one command, done
  • Easy to script and compose with other CLI tools
  • Works great in CI/CD pipelines
  • Low overhead, no server-side UI to maintain

Cons:

  • Requires terminal access and auth setup
  • Hard to share with non-technical team members
  • No real-time dashboard or visual overview
  • Each tool has its own CLI conventions to learn

Best for: Day-to-day operations by the team that built the system.


API

A REST or gRPC API that exposes deployment operations programmatically.

# Deploy via API
curl -X POST https://deploy.example.com/api/v1/deploy \
  -H "Authorization: Bearer $TOKEN" \
  -d '{"service": "agent", "version": "v42"}'

# Check status
curl https://deploy.example.com/api/v1/status

Pros:

  • Language-agnostic — any HTTP client can use it
  • Easy to integrate with dashboards, Slack bots, or other systems
  • Can enforce auth, rate limiting, and audit logging at the API layer
  • Enables building custom UIs on top

Cons:

  • More infrastructure to build and maintain (the API itself)
  • Versioning and backwards compatibility become your problem
  • Latency overhead compared to direct CLI-to-server
  • Auth token management adds complexity

Best for: Teams building internal platforms or integrating deploys into larger systems.


MCP (Model Context Protocol)

Expose deployment operations as MCP tools so AI agents can manage infrastructure directly.

{
  "tool": "deploy",
  "input": {
    "service": "agent",
    "version": "latest",
    "strategy": "rolling"
  }
}

Pros:

  • Agents can self-manage — deploy, monitor, and rollback autonomously
  • Natural language interface for non-technical users ("deploy the latest agent")
  • Composable with other MCP tools (monitoring, alerting, etc.)
  • Fits naturally into agentic workflows

Cons:

  • Newer pattern — less battle-tested tooling
  • Requires careful permission scoping (you don't want an agent force-pushing to prod unsupervised)
  • Debugging is harder when the caller is an LLM
  • Needs guardrails: confirmation steps, dry-run modes, blast radius limits

Best for: Agentic DevOps workflows where AI agents participate in the deploy lifecycle.


Comparison Matrix

CLIAPIMCP
Speed to set upFastMediumMedium
AutomationScripts/CIAny HTTP clientAgent-native
AudienceEngineersEngineers + systemsEngineers + agents
ObservabilityTerminal outputStructured responsesTool call logs
Auth modelSSH keys / tokensAPI tokens / OAuthMCP auth scopes
Best paired withBare metal, VMsManaged platformsAgent orchestrators

Recommendations

  • Starting out? Use a managed platform (Railway, Fly.io) with their built-in CLI. Least ops burden.
  • Cost matters? Go bare metal with a simple CLI for deploys. Best bang for buck.
  • Building a platform? Invest in an API layer. It pays off as the team grows.
  • Agentic workflows? Add MCP tools on top of your existing API. Don't replace your API with MCP — wrap it.
  • GPU inference? Bare metal or reserved cloud instances. Serverless doesn't work for long-running inference.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

38.21%
按下载量换算3,014

Claude

28.27%
按下载量换算2,230

Cursor

18.96%
按下载量换算1,495

Gemini CLI

9.44%
按下载量换算745

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

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

来源信息

继续浏览同类 Skills