AI AGENT SKILLS

Alpine Linux

一个面向 Design 场景的 Agent 技能。原始说明:alpine:interface-01 - Fetch Latest Releases; alpine:interface-02 - Aggregate Latest Version Archs

SKILL.md

SKILL.md


name: skill-alpine
description: "alpine:interface-01 - Fetch Latest Releases; alpine:interface-02 - Aggregate Latest Version Archs"


Important Principles ⭐

Modification Prohibited (Mandatory): Any files under skill-alpine. This skill is maintained via
openclaw skills update skill-alpine; any alterations will disrupt its normal operation.

alpine:interface-01 - Fetch Latest Releases

latest_releases_json=$(bash scripts/alpine_fetch_latest_releases.sh)

Return value (latestreleasesjson=stdout, example only)

[
  {
    "version": "3.23.4",
    "arch": "x86_64",
    "file_url": "https://dl-cdn.alpinelinux.org/alpine/latest-stable/releases/x86_64/alpine-minirootfs-3.23.4-x86_64.tar.gz"
  },
  {
    "version": "3.23.4",
    "arch": "aarch64",
    "file_url": "https://dl-cdn.alpinelinux.org/alpine/latest-stable/releases/aarch64/alpine-minirootfs-3.23.4-aarch64.tar.gz"
  }
]

alpine:interface-02 - Aggregate Latest Version Archs

latest_version_archs_json=$(bash scripts/alpine_aggregate_latest_version_archs.sh)

Return value (latestversionarchs_json=stdout, example only)

[
  {
    "version": "3.23.4",
    "archs": [
      "aarch64",
      "armhf",
      "armv7",
      "loongarch64",
      "ppc64le",
      "riscv64",
      "s390x",
      "x86",
      "x86_64"
    ]
  }
]

More skills

https://github.com/lentiancn/skills