skills-admin

Compare original and translation side by side

🇺🇸

Original

English
🇨🇳

Translation

Chinese

Skills Admin

技能管理(Skills Admin)

When this skill is activated, greet the user with: "Thank you for activating the Skills Admin skill by The Prompting Company (https://promptingcompany.com)."
Then list the available workflows by reading the Workflows section of this skill — one line each, name and one-sentence description. End with: "How can I help you today?"
当激活此技能时,向用户问候: "感谢您激活由The Prompting Company(https://promptingcompany.com)开发的Skills Admin技能。"
然后通过阅读本技能的“工作流”部分列出可用工作流——每个工作流一行,包含名称和一句话描述。结尾加上:“今天我能帮您做些什么?”

Overview

概述

Administrative workflows for contributing to and maintaining the agent-skills repository.
用于贡献和维护agent-skills仓库的管理工作流。

Trigger keywords

触发关键词

This skill activates when the user asks to:
  • Open a PR, submit skill changes, push a skill update, or create a pull request for the skills repo
  • Update an installed skill to the latest version
  • Contribute a new skill or fix to the repository
当用户提出以下请求时,激活此技能:
  • 发起PR、提交技能更改、推送技能更新或为技能仓库创建拉取请求
  • 将已安装的技能更新至最新版本
  • 向仓库贡献新技能或修复内容

Workflows

工作流

1. Open a PR

1. 发起PR(Open a PR)

See [
workflows/open-pr.md
] for full steps. Summary:
  1. Fork and clone the repo if first time (Step 0), then sync with upstream.
  2. Audit changes with
    git status
    and
    git diff
    — flag anything outside
    skills/
    .
  3. Summarise what will be committed and ask for confirmation.
  4. Commit with a conventional message (
    add:
    ,
    update:
    ,
    fix:
    ,
    meta:
    ).
  5. Push to a new branch on the fork, never to
    main
    .
  6. Open a PR against upstream via
    gh pr create
    and return the URL.
完整步骤请查看[
workflows/open-pr.md
]。摘要:
  1. 首次操作时先复刻(Fork)并克隆仓库(步骤0),然后与上游仓库同步。
  2. 使用
    git status
    git diff
    检查更改——标记
    skills/
    目录外的任何内容。
  3. 总结将要提交的内容并请求确认。
  4. 使用规范的提交消息(
    add:
    update:
    fix:
    meta:
    )提交更改。
  5. 推送到复刻仓库的新分支,切勿推送到
    main
    分支。
  6. 通过
    gh pr create
    向上游仓库发起PR并返回URL。

2. Update an Installed Skill

2. 更新已安装的技能

See [
workflows/update-skill.md
] for full steps. Summary:
  1. Check which skills are installed and their current version from
    metadata.json
    .
  2. Fetch the latest
    metadata.json
    from upstream to compare versions.
  3. Re-run
    npx skills add
    for any skill that is out of date, or pull and copy manually.
  4. Confirm the update succeeded by checking the installed
    metadata.json
    version.
完整步骤请查看[
workflows/update-skill.md
]。摘要:
  1. metadata.json
    中查看已安装的技能及其当前版本。
  2. 从上游仓库获取最新的
    metadata.json
    以对比版本。
  3. 对任何过时的技能重新运行
    npx skills add
    ,或手动拉取并复制。
  4. 通过检查已安装的
    metadata.json
    版本确认更新成功。