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

pc-deploy电脑部署

Agent Skill

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

总安装

192

周安装

8

GitHub Stars

公开资料未说明

下载量

64
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/ploicloud/skill --skill pc-deploy

简介

pc-deploy 用于辅助云资源、部署、容器、基础设施和运维自动化任务。

  • 适合检查配置、整理部署步骤、分析资源状态、生成排障思路或辅助云服务接入。
  • 使用时需要明确目标环境、账号权限、区域和资源组,区分本地测试与生产操作。
  • 涉及删除资源、重启服务、修改网络或权限配置时,应先确认影响范围。
  • 当前分类为研究检索,功能聚焦于云部署支持。

SKILL.md

Deploy to Ploi Cloud

Deploy the current project to Ploi Cloud directly from your editor. Scans the project, creates or updates the application via MCP, deploys, monitors, and auto-fixes failures. Works with git repositories and projects without a repo (via source upload).

Prerequisites

The Ploi Cloud MCP server must be connected. If not configured, tell the user to run:

claude mcp add --transport http ploi-cloud https://ploi.cloud/mcp

Phase 1: Source validation

Determine the deployment mode: git or upload.

  1. Run git rev-parse --git-dir to check if this is a git repo
  2. If it is a git repo, run git remote get-url origin to check for a remote URL
  3. If both succeedgit mode

- Parse the remote URL to extract owner and repo name (supports github.com, gitlab.com, bitbucket.org) - Run git branch --show-current to get the current branch

  1. If either fails (not a git repo, or no remote URL) → upload mode

- Derive the application name from the current directory name (lowercase, hyphens, 4-32 chars) - Inform the user: "No git repository detected — deploying via source upload."

Phase 2: Project detection

Scan local files to determine the project type and requirements.

Type detection (first match wins):

  • composer.json containing laravel/frameworklaravel
  • composer.json containing statamic/cmsstatamic
  • composer.json containing craftcms/cmscraftcms
  • wp-config.php exists → wordpress
  • composer.json exists (generic) → php
  • package.json exists → nodejs

Runtime detection:

  • PHP version: read composer.jsonrequire.php constraint, pick the highest matching version (8.1, 8.2, 8.3, 8.4)
  • Node.js version: read package.jsonengines.node, default to 20 if not specified
  • PHP extensions: collect all ext-* keys from composer.jsonrequire, exclude built-in (opcache, pcntl, pdo_mysql, pdo_pgsql, redis, sodium, zip)

Service detection from dependencies:

DependencyService type
mysql2, @prisma/client with MySQL in schemamysql
pg, postgres, @prisma/client with PostgreSQLpostgresql
mongodb, mongoose, mongodb/mongodbmongodb
predis/predis, ext-redis, redis, ioredisredis
php-amqplib/php-amqplib, amqplibrabbitmq

Build commands by type:

TypeDefault build command
laravelcomposer install --no-interaction --prefer-dist --optimize-autoloader --no-dev && npm ci && npm run build
statamiccomposer install --no-interaction --prefer-dist --optimize-autoloader --no-dev && npm ci && npm run build
craftcmscomposer install --no-interaction --prefer-dist --optimize-autoloader --no-dev
wordpress(none)
phpcomposer install --no-interaction --prefer-dist --optimize-autoloader --no-dev
nodejsnpm ci && npm run build

Init commands:

  • Laravel/Statamic: php artisan migrate --force
  • Craft CMS: php craft install/check && php craft migrate/all --no-interaction
  • Others: none

Secrets:

  • Read .env.example if it exists
  • Extract variable names that have empty or placeholder values
  • Exclude auto-injected variables (see references/service-env-vars.md)
  • Exclude APP_KEY (auto-generated by Ploi Cloud for Laravel apps)

Phase 3: Check existing app

  1. Call applications_index to list all apps
  2. Git mode: search for an app whose repository URL matches the current project's remote URL
  3. Upload mode: search for an app whose name matches the derived directory name AND has source_type = upload
  4. If found → go to Phase 4b (update)
  5. If not found → go to Phase 4a (create)

Phase 4a: Create application

Git mode:

  1. applications_store — create with name (repo name), type, repository URL, owner, name, branch

Upload mode:

  1. applications_store — create with name (directory name), type, and source_type: "upload". Do NOT pass repository fields.

Both modes (continue): 2. applications_build-config_update — set build commands and init commands 3. applications_settings_update — set health_check_path (/ for most types, /up for Statamic) 4. applications_php-config_update — set PHP version and extensions (PHP apps only) 5. v1_applications_services_store — create each detected service (memory: 512Mi, volume_size: 5Gi) 6. applications_secrets_store — add required secrets only 7. Go to Phase 4c (upload mode) or Phase 5 (git mode)

Phase 4b: Update existing application

Git mode:

  1. applications_repository_update — update repo URL and branch if changed

Both modes (continue): 2. applications_build-config_update — update build commands if needed 3. v1_applications_services_index — check existing services, add any missing via v1_applications_services_store 4. Go to Phase 4c (upload mode) or Phase 5 (git mode)

Phase 4c: Upload source archive (upload mode only)

Skip this phase entirely in git mode.

  1. Determine which ignore file to use:

- Use .dockerignore if it exists - Otherwise use .gitignore if it exists - Otherwise no exclusions

  1. Create a tar.gz archive of the project directory: tar czf /tmp/ploi-source-upload.tar.gz --exclude='.git' --exclude='node_modules' --exclude='.DS_Store' -X <ignore-file> -C <project-dir>. If no ignore file exists, omit the -X flag. Always exclude .git, node_modules, and .DS_Store.
  2. Call applications_source_upload_url with the application ID to get a signed upload URL
  3. Upload the archive directly using curl: curl -s -X POST -F 'source=@/tmp/ploi-source-upload.tar.gz' '<upload_url>' Verify the response contains "success": true.
  4. Clean up the temp file: rm /tmp/ploi-source-upload.tar.gz
  5. Go to Phase 5

Phase 5: Deploy

  1. Call applications_deploy to trigger a deployment
  2. Note the deployment ID from the response
  3. Go to Phase 6

Phase 6: Monitor

Poll every 15 seconds for up to 10 minutes.

  1. Call applications_deployments_logs with tail: 100 to check build progress
  2. Call applications_status to check if the app is live
  3. If deployment status is failed or cancelled → go to Phase 7 (Auto-fix)
  4. If application status is active → go to Phase 8 (Success)
  5. If still building (deployment status running or app status deploying) → wait 15 seconds and repeat

Phase 7: Auto-fix

Maximum 5 retry attempts. Diagnose the failure and apply a fix.

Diagnosis:

  1. Read deployment logs (applications_deployments_logs with tail: 2000)
  2. Read application logs (applications_logs)
  3. Check debug summary (applications_debug_summary)

Fix patterns:

ErrorFix
OOMKilled / exit code 137applications_resources_update — increase memory (1Gi → 2Gi → 4Gi)
Missing PHP extensionapplications_php-config_update — add the extension
Build failure (composer/npm)applications_build-config_update — adjust commands
Health check failureapplications_settings_update — change health_check_path
Missing environment variableapplications_secrets_store — add the variable
Database connection errorCheck service exists, verify env var injection

After applying a fix:

  1. Upload mode: re-run Phase 4c to re-upload source if build commands changed local output
  2. Call applications_deploy to redeploy
  3. Return to Phase 6 (Monitor)

Phase 8: Success

  1. Call applications_show to get the auto-assigned domain
  2. Confirm with applications_debug_summary that pods are healthy
  3. Report to the user:

- Application name - Deployment mode (git or upload) - Live URL (the auto-assigned domain) - Application ID - Services created - Any fixes that were applied

Critical rules

  • NEVER add domains — the platform auto-assigns a preview domain
  • NEVER add APP_KEY to secrets — Ploi Cloud generates it for Laravel apps
  • NEVER hardcode database credentials in secrets — services auto-inject them via ConfigMap
  • Default memory is 1Gi. Use applications_resources_update with the memory_request parameter to change it
  • Service volume_size must be "5Gi" (Kubernetes quantity format with unit suffix)
  • Each build command entry becomes a separate RUN in the Dockerfile — chain dependent commands with &&
  • ${VAR} interpolation in secrets only resolves other user secrets, NOT service-injected vars
  • Build commands run as root, but the application runtime runs as www-data (non-root). Build-time operations like npm install -g work fine
  • Application status values: starting, active, deploying, stopping, stopped, destroying, failed. Use active to confirm the app is live
  • Deployment status values: pending, running, success, failed, cancelled. Note that running means the build is in progress, not that the app is live
  • Upload-type applications do NOT support skip_build (redeploy) — every deployment runs a full build
  • When creating the tar.gz for upload, always exclude .git, node_modules, and .DS_Store at minimum

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

38%
按下载量换算24

Claude

30.76%
按下载量换算20

Cursor

20.27%
按下载量换算13

Gemini CLI

8.87%
按下载量换算6

安全审计

Gen Agent Trust Hub

通过

Socket

可疑

Snyk

未通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills