โ† All skills
Tencent SkillHub ยท Developer Tools

CI-CD

Automate builds, tests, and deployments across web, mobile, and backend applications.

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Automate builds, tests, and deployments across web, mobile, and backend applications.

โฌ‡ 0 downloads โ˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
SKILL.md, mobile.md, templates.md, web.md

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

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

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.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.0.0

Documentation

ClawHub primary doc Primary doc: SKILL.md 8 sections Open source page

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

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
4 Docs
  • SKILL.md Primary doc
  • mobile.md Docs
  • templates.md Docs
  • web.md Docs