← 返回 Skills 市场
hyharry

Easy CI/CD

作者 Yi · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ✓ 安全检测通过
169
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install easy-ci-cd
功能描述
Build lightweight, minimal CI/CD scaffolding around a small project. Use when asked to add or simplify GitHub Actions, create a fast CI pipeline, add a minim...
使用说明 (SKILL.md)

Easy CI/CD

Keep CI/CD boring, fast, and proportionate to the size of the project.

Workflow

  1. Inspect the repo first.

    • Detect language, package manager, test command, and likely runtime command.
    • Read the existing README/config before adding automation.
    • Do not invent build steps the repo does not support.
  2. Choose the minimum useful pipeline.

    • Default to one OS and one runtime version.
    • Trigger on push and pull_request to the main branch unless the repo clearly uses another default branch.
    • Add concurrency with cancel-in-progress for redundant runs.
    • Prefer one job unless the user explicitly wants more.
  3. Add only high-value checks.

    • Run the smallest realistic install step.
    • Add a smoke check if it is cheap and meaningful.
    • Run the repo's existing tests if they are available.
    • Prefer fast feedback over exhaustive matrices.
  4. Add a tiny release/deploy feature only when it helps.

    • Good defaults: upload test results, upload a source archive on tags, or build a minimal container.
    • Do not add cloud deploy, secrets, registries, or production rollout logic unless the user explicitly asks.
  5. Add containerization only when requested or clearly useful.

    • Prefer a common slim base image for the language/runtime.
    • Install only common/lightweight system packages that are likely needed.
    • Keep the default command safe and easy to override.
    • Add a small .dockerignore.
  6. Verify locally when practical.

    • Run the same cheap checks you put into CI when the environment allows.
    • If full verification is not practical, say so plainly.
  7. Update docs minimally.

    • Add 1 short section or a few lines to README if needed.
    • Do not turn a small repo into a manual.

Guardrails

  • Keep YAML readable and short.
  • Prefer standard marketplace actions.
  • Avoid multi-OS and multi-version matrices unless the project really needs them.
  • Avoid long installs and unnecessary services.
  • Avoid secret-dependent steps unless the user explicitly provides that direction.
  • Match the repository's existing style and naming.

Good Defaults

GitHub Actions

For small repos, prefer:

  • actions/checkout
  • language setup action with dependency caching if cheap
  • install deps
  • smoke check
  • test command
  • artifact upload if useful

If you need examples, read references/templates.md.

Docker

For small Python repos, prefer:

  • python:\x3Cversion>-slim
  • PYTHONDONTWRITEBYTECODE=1
  • PYTHONUNBUFFERED=1
  • small apt install block only if likely needed
  • install from requirements.txt or project metadata
  • safe default CMD

Output Expectations

When reporting back:

  • say what was added
  • say where it lives
  • say how it was verified
  • mention anything intentionally left out to keep it minimal
安全使用建议
This skill is coherent and safe as an authoring/helper guide for minimal CI/CD. Before applying any generated workflow or Dockerfile: review the YAML/Dockerfile yourself, and don't merge workflows that add secret-dependent deploy steps unless you requested those. If you will execute generated checks locally or allow the agent to run commands, remember those actions run project code — inspect for unsafe scripts. Also consider pinning third-party actions to fixed versions and review any action sources before trusting them (avoid action versions that point to moving tags if you need reproducible security). If you want the skill to add cloud deploys or secret-handling steps, only provide explicit instructions and the minimal credentials required, and review those steps carefully.
功能分析
Type: OpenClaw Skill Name: easy-ci-cd Version: 1.0.0 The 'easy-ci-cd' skill bundle provides standard, minimal templates and instructions for setting up GitHub Actions and Dockerfiles. The instructions in SKILL.md and references/templates.md focus on project inspection, fast feedback loops, and avoiding unnecessary complexity or secret-dependent steps, with no evidence of malicious intent, data exfiltration, or harmful prompt injection.
能力评估
Purpose & Capability
The name and description match the actual content: guidance and templates for minimal CI/CD pipelines, GitHub Actions, and Dockerfiles. No unrelated binaries, env vars, or config paths are requested.
Instruction Scope
SKILL.md stays within scope: it instructs the agent to inspect the repository (detect language, read README/config), choose minimal pipelines, and prefer not to add secrets, cloud deploys, or registries unless explicitly asked. Reading repo files and running repo tests is appropriate for this purpose; there are no instructions to read unrelated system files or exfiltrate data.
Install Mechanism
There is no install specification and no code files — this is instruction-only. Nothing is downloaded or written by an installer, so install risk is minimal.
Credentials
The skill requests no environment variables or credentials. Built-in guidance explicitly discourages adding secret-dependent steps unless requested, so credential requests would be proportional and user-driven.
Persistence & Privilege
The skill is not forced-always, is user-invocable, and does not request persistent privileges or modify other skills' configs. Autonomous invocation is allowed by default but not combined with other red flags.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install easy-ci-cd
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /easy-ci-cd 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
Initial release: lightweight minimal CI/CD scaffolding for small projects.
元数据
Slug easy-ci-cd
版本 1.0.0
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 1
常见问题

Easy CI/CD 是什么?

Build lightweight, minimal CI/CD scaffolding around a small project. Use when asked to add or simplify GitHub Actions, create a fast CI pipeline, add a minim... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 169 次。

如何安装 Easy CI/CD?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install easy-ci-cd」即可一键安装,无需额外配置。

Easy CI/CD 是免费的吗?

是的,Easy CI/CD 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

Easy CI/CD 支持哪些平台?

Easy CI/CD 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Easy CI/CD?

由 Yi(@hyharry)开发并维护,当前版本 v1.0.0。

💬 留言讨论