# Send CI-CD to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "ci-cd",
    "name": "CI-CD",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/ivangdavila/ci-cd",
    "canonicalUrl": "https://clawhub.ai/ivangdavila/ci-cd",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/ci-cd",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=ci-cd",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "mobile.md",
      "templates.md",
      "web.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "ci-cd",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-01T05:34:13.007Z",
      "expiresAt": "2026-05-08T05:34:13.007Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=ci-cd",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=ci-cd",
        "contentDisposition": "attachment; filename=\"ci-cd-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "ci-cd"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/ci-cd"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/ci-cd",
    "downloadUrl": "https://openagent3.xyz/downloads/ci-cd",
    "agentUrl": "https://openagent3.xyz/skills/ci-cd/agent",
    "manifestUrl": "https://openagent3.xyz/skills/ci-cd/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/ci-cd/agent.md"
  }
}
```
## Documentation

### When to Use

Trigger on: automated deployment, continuous integration, pipeline setup, GitHub Actions, GitLab CI, build failing, deploy automatically, CI configuration, release automation.

### Platform Selection

StackRecommendedWhyWeb (Next.js, Nuxt, static)Vercel, NetlifyZero-config, auto-deploys, preview URLsMobile (iOS/Android/Flutter)Codemagic, Bitrise + FastlanePre-configured signing, app store uploadBackend/DockerGitHub Actions, GitLab CIFull control, self-hosted runners optionMonorepoNx/Turborepo + GHAAffected detection, build caching

Decision tree: If platform handles deploy automatically (Vercel, Netlify) → skip custom CI. Only add GitHub Actions when you need tests, custom builds, or deploy to your own infra.

### Quick Start Templates

For copy-paste workflows, see templates.md.

### Common Pipeline Pitfalls

MistakeImpactFixUsing latest image tagsBuilds break randomlyPin versions: node:20.11.0Not caching dependencies+5-10 min per buildCache node_modules, .next/cacheSecrets in workflow filesLeaked in logs/PRsUse platform secrets, OIDC for cloudMissing timeout-minutesStuck jobs burn budgetAlways set: timeout-minutes: 15No concurrency controlRedundant runs on rapid pushesGroup by branch/PRBuilding on every pushWasted resourcesBuild on push to main, test on PRs

### Mobile-Specific: Code Signing

The #1 pain point. iOS requires certificates + provisioning profiles. Android requires keystores.

The fix: Use Fastlane Match — stores certs/profiles in git repo, syncs across team and CI.

# One-time setup
fastlane match init
fastlane match appstore

# In CI
fastlane match appstore --readonly

For detailed mobile CI/CD patterns (iOS, Android, Flutter), see mobile.md.

### Web-Specific: Build Caching

Next.js/Nuxt builds are slow without cache. The No Cache Detected warning = full rebuild.

# GitHub Actions: persist Next.js cache
- uses: actions/cache@v4
  with:
    path: .next/cache
    key: nextjs-${{ hashFiles('**/package-lock.json') }}

For framework-specific configs, see web.md.

### Debugging Failed Builds

Error PatternLikely CauseCheckWorks locally, fails in CIEnvironment driftNode version, env vars, OSIntermittent failuresFlaky tests, resource limitsRetry logic, increase timeoutENOENT / file not foundBuild order, missing artifactCheck needs: dependenciesExit code 137Out of memoryUse larger runner or optimizeCertificate/signing errorsExpired or mismatched credsRegenerate with Match/Fastlane

### What This Doesn't Cover

Container orchestration (Kubernetes) → see k8s skill
Server configuration → see server skill
Monitoring and observability → see monitoring skill
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: ivangdavila
- Version: 1.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-01T05:34:13.007Z
- Expires at: 2026-05-08T05:34:13.007Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/ci-cd)
- [Send to Agent page](https://openagent3.xyz/skills/ci-cd/agent)
- [JSON manifest](https://openagent3.xyz/skills/ci-cd/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/ci-cd/agent.md)
- [Download page](https://openagent3.xyz/downloads/ci-cd)