{
  "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": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/ci-cd",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=ci-cd",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "mobile.md",
      "templates.md",
      "web.md"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "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."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "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."
        },
        {
          "label": "Upgrade existing",
          "body": "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."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "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."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/ci-cd",
    "agentPageUrl": "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"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "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."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "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."
      },
      {
        "label": "Upgrade existing",
        "body": "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."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "When to Use",
        "body": "Trigger on: automated deployment, continuous integration, pipeline setup, GitHub Actions, GitLab CI, build failing, deploy automatically, CI configuration, release automation."
      },
      {
        "title": "Platform Selection",
        "body": "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\n\nDecision 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."
      },
      {
        "title": "Quick Start Templates",
        "body": "For copy-paste workflows, see templates.md."
      },
      {
        "title": "Common Pipeline Pitfalls",
        "body": "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"
      },
      {
        "title": "Mobile-Specific: Code Signing",
        "body": "The #1 pain point. iOS requires certificates + provisioning profiles. Android requires keystores.\n\nThe fix: Use Fastlane Match — stores certs/profiles in git repo, syncs across team and CI.\n\n# One-time setup\nfastlane match init\nfastlane match appstore\n\n# In CI\nfastlane match appstore --readonly\n\nFor detailed mobile CI/CD patterns (iOS, Android, Flutter), see mobile.md."
      },
      {
        "title": "Web-Specific: Build Caching",
        "body": "Next.js/Nuxt builds are slow without cache. The No Cache Detected warning = full rebuild.\n\n# GitHub Actions: persist Next.js cache\n- uses: actions/cache@v4\n  with:\n    path: .next/cache\n    key: nextjs-${{ hashFiles('**/package-lock.json') }}\n\nFor framework-specific configs, see web.md."
      },
      {
        "title": "Debugging Failed Builds",
        "body": "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"
      },
      {
        "title": "What This Doesn't Cover",
        "body": "Container orchestration (Kubernetes) → see k8s skill\nServer configuration → see server skill\nMonitoring and observability → see monitoring skill"
      }
    ],
    "body": "When to Use\n\nTrigger on: automated deployment, continuous integration, pipeline setup, GitHub Actions, GitLab CI, build failing, deploy automatically, CI configuration, release automation.\n\nPlatform Selection\nStack\tRecommended\tWhy\nWeb (Next.js, Nuxt, static)\tVercel, Netlify\tZero-config, auto-deploys, preview URLs\nMobile (iOS/Android/Flutter)\tCodemagic, Bitrise + Fastlane\tPre-configured signing, app store upload\nBackend/Docker\tGitHub Actions, GitLab CI\tFull control, self-hosted runners option\nMonorepo\tNx/Turborepo + GHA\tAffected detection, build caching\n\nDecision 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.\n\nQuick Start Templates\n\nFor copy-paste workflows, see templates.md.\n\nCommon Pipeline Pitfalls\nMistake\tImpact\tFix\nUsing latest image tags\tBuilds break randomly\tPin versions: node:20.11.0\nNot caching dependencies\t+5-10 min per build\tCache node_modules, .next/cache\nSecrets in workflow files\tLeaked in logs/PRs\tUse platform secrets, OIDC for cloud\nMissing timeout-minutes\tStuck jobs burn budget\tAlways set: timeout-minutes: 15\nNo concurrency control\tRedundant runs on rapid pushes\tGroup by branch/PR\nBuilding on every push\tWasted resources\tBuild on push to main, test on PRs\nMobile-Specific: Code Signing\n\nThe #1 pain point. iOS requires certificates + provisioning profiles. Android requires keystores.\n\nThe fix: Use Fastlane Match — stores certs/profiles in git repo, syncs across team and CI.\n\n# One-time setup\nfastlane match init\nfastlane match appstore\n\n# In CI\nfastlane match appstore --readonly\n\n\nFor detailed mobile CI/CD patterns (iOS, Android, Flutter), see mobile.md.\n\nWeb-Specific: Build Caching\n\nNext.js/Nuxt builds are slow without cache. The No Cache Detected warning = full rebuild.\n\n# GitHub Actions: persist Next.js cache\n- uses: actions/cache@v4\n  with:\n    path: .next/cache\n    key: nextjs-${{ hashFiles('**/package-lock.json') }}\n\n\nFor framework-specific configs, see web.md.\n\nDebugging Failed Builds\nError Pattern\tLikely Cause\tCheck\nWorks locally, fails in CI\tEnvironment drift\tNode version, env vars, OS\nIntermittent failures\tFlaky tests, resource limits\tRetry logic, increase timeout\nENOENT / file not found\tBuild order, missing artifact\tCheck needs: dependencies\nExit code 137\tOut of memory\tUse larger runner or optimize\nCertificate/signing errors\tExpired or mismatched creds\tRegenerate with Match/Fastlane\nWhat This Doesn't Cover\nContainer orchestration (Kubernetes) → see k8s skill\nServer configuration → see server skill\nMonitoring and observability → see monitoring skill"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/ivangdavila/ci-cd",
    "publisherUrl": "https://clawhub.ai/ivangdavila/ci-cd",
    "owner": "ivangdavila",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "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"
  }
}