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

github-actions-ci-workflowGitHub actions CI 工作流

Agent Skill

用于围绕 GitHub 仓库、Issue、Pull Request、分支、提交和代码协作流程提供辅助能力。它适合让 Agent 查询项目状态、整理变更、辅助创建或检查协作事项,并把仓库中的信息转成可执行的下一步。使用时需要区分只读查询和写入操作;涉及创建 PR、修改 Issue、推送分支或访问私有仓库时,应确认 token 权限、目标仓库范围和用户授权。

总安装

203

周安装

12

GitHub Stars

3

下载量

97
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/hopeoverture/worldbuilding-app-skills --skill github-actions-ci-workflow

简介

协助创建和管理 GitHub Actions 持续集成工作流。

  • 适合自动化测试、代码检查和部署流程搭建。
  • 提供标准化的 CI 模板和最佳实践参考。
  • 安装前请确认目标仓库的写入权限。github-actions-ci-workflow 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 可生成 YAML 配置文件并验证语法正确性。

SKILL.md

GitHub Actions CI Workflow

Set up complete GitHub Actions workflows for continuous integration and deployment of worldbuilding applications.

Overview

To configure comprehensive CI/CD pipelines with GitHub Actions:

  1. Analyze the project structure and dependencies
  2. Generate workflow files for lint, test, build, and deploy stages
  3. Configure caching strategies for node_modules, Next.js cache, and build artifacts
  4. Add preview deployment with automatic URL comments on pull requests
  5. Set up environment-specific deployment targets

Workflow Structure

Create the following workflow files in .github/workflows/:

CI Workflow (ci.yml)

To set up continuous integration:

  1. Configure triggers for push to main/master and pull requests
  2. Set up job matrix for multiple Node.js versions if needed
  3. Add checkout, dependency installation with caching
  4. Run linting (ESLint, Prettier, type checking)
  5. Execute test suites with coverage reporting
  6. Build the application to verify no build errors
  7. Upload build artifacts for deployment jobs

Deploy Workflow (deploy.yml)

To set up continuous deployment:

  1. Trigger on push to main/master branch
  2. Download build artifacts from CI workflow
  3. Deploy to target environment (Vercel, Netlify, AWS, etc.)
  4. Set environment variables and secrets
  5. Notify on deployment success/failure

Preview Deployment (preview.yml)

To set up preview deployments for pull requests:

  1. Trigger on pull_request events
  2. Build and deploy to preview environment
  3. Generate unique preview URL
  4. Comment preview URL on pull request using GitHub API
  5. Clean up preview deployments when PR is closed

Caching Strategy

To optimize workflow performance:

  1. Cache node_modules with dependency lock file as cache key
  2. Cache Next.js build cache (.next/cache) for faster builds
  3. Cache testing artifacts and coverage reports
  4. Use actions/cache@v3 with appropriate cache keys
  5. Implement cache restoration fallbacks for partial matches

Resources

Consult references/github-actions-best-practices.md for workflow optimization patterns and security best practices.

Use scripts/generate_ci_workflow.py to scaffold workflow files based on detected project configuration.

Reference assets/workflow-templates/ for starter templates for common frameworks (Next.js, React, Node.js).

Implementation Steps

To implement complete CI/CD with GitHub Actions:

  1. Detect Project Configuration

- Identify framework (Next.js, Vite, CRA, etc.) - Detect package manager (npm, yarn, pnpm) - Find test runner (Jest, Vitest, Playwright) - Check for linting configuration

  1. Generate Workflow Files

- Use scripts/generate_ci_workflow.py with detected configuration - Customize jobs based on project requirements - Add matrix builds if testing multiple environments

  1. Configure Secrets and Variables

- Document required secrets in README or workflow comments - Set up environment-specific variables - Configure deployment credentials

  1. Add Preview Deployments

- Generate preview workflow with URL commenting - Configure preview environment provider - Set up cleanup automation

  1. Optimize Caching

- Implement multi-level caching strategy - Use cache keys based on lock files - Add cache restoration logic

  1. Test and Validate

- Push workflows to repository - Create test PR to verify preview deployments - Check workflow execution times and optimize

Advanced Features

To add advanced CI/CD capabilities:

  • Parallel Jobs: Split test suites across multiple jobs for faster execution
  • Conditional Deployments: Deploy only specific paths or when conditions are met
  • Status Checks: Require CI passing before merge
  • Deployment Gates: Add manual approval steps for production deployments
  • Performance Monitoring: Integrate Lighthouse CI or bundle analysis
  • Dependency Updates: Automate dependency updates with Dependabot integration

Framework-Specific Configuration

Next.js Applications

To optimize for Next.js:

  1. Cache .next/cache directory for faster builds
  2. Set NEXT_TELEMETRY_DISABLED=1 to disable telemetry
  3. Use next build and next export for static exports
  4. Configure ISR revalidation for preview deployments

Full-Stack Applications

To handle full-stack deployments:

  1. Set up separate jobs for frontend and backend
  2. Configure database migrations in deployment workflow
  3. Run integration tests against preview environment
  4. Coordinate deployment order (backend first, then frontend)

Deployment Providers

Consult references/deployment-providers.md for platform-specific configuration:

  • Vercel: Use vercel-action with project configuration
  • Netlify: Use netlify-cli with site ID and auth token
  • AWS: Configure S3/CloudFront or ECS deployment
  • Docker: Build and push container images to registry
  • Self-Hosted: SSH deployment with rsync or git pull

Monitoring and Notifications

To add monitoring and notifications:

  1. Configure Slack/Discord webhooks for deployment notifications
  2. Add GitHub status checks for required CI jobs
  3. Set up error tracking integration (Sentry, etc.)
  4. Monitor workflow execution times and optimize slow jobs
  5. Track deployment frequency and failure rates

Troubleshooting

Common issues and solutions:

  • Cache Misses: Verify cache key includes all dependency files
  • Timeout Errors: Increase timeout or split into parallel jobs
  • Permission Errors: Check repository secrets and permissions
  • Build Failures: Ensure environment variables are set correctly
  • Preview URL Not Commented: Verify PR comment permissions and token scope

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

33.37%
按下载量换算32

Claude

31.93%
按下载量换算31

Cursor

17.19%
按下载量换算17

Gemini CLI

9.97%
按下载量换算10

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills