Token导航 LogoToken导航TokenDH.com
待分类只读github未标认证来源可访问许可证需确认审计通过

skill-dev-workflow技能开发工作流程

Agent Skill

skill-dev-workflow 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

539

周安装

22

GitHub Stars

公开资料未说明

下载量

174
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/caldiaworks/caldiaworks-marketplace --skill skill-dev-workflow

简介

skill-dev-workflow 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合围绕项目状态进行整理。

  • 适用于查询变更内容、辅助创建协作事项或将仓库信息转化为可执行步骤。
  • 使用时需区分只读查询与写入操作,涉及 PR 或分支推送时应确认 token 权限。
  • 通过 npx skills add 命令从 GitHub 安装,建议核实是否会触发文件读写或命令执行。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Skill Development Workflow

Orchestrate the full lifecycle of creating a skill for the CaldiaWorks marketplace. This skill is specific to the CaldiaWorks Skills repository.

Mandatory Execution Rule

Each invoked skill defines its own internal steps. Every internal step of every invoked skill must be executed in order without exception. Do not skip, merge, or silently omit any step -- even if the step seems trivial or the answer seems obvious.

Only ask the user for input that cannot be derived from available context (issue titles, document content, git history, etc.). If a step produces output, present it. Violating this rule degrades quality and erodes user trust.

Partial Workflow Entry

If the user already has artifacts from earlier steps, skip completed steps:

Existing ArtifactStart From
Idea documentStep 2: Issue Creation
Issue numberStep 3: Planning
Plan documentStep 4: Branch Creation
USDM requirements documentStep 6: Skill Implementation

Ask the user what artifacts they already have before starting.

Workflow Steps

Execute these 9 steps in order. Proceed automatically from one step to the next.

Step 1: Ideation

Invoke the ideation skill.

  • Input: User's rough idea or problem description
  • Output: Idea document at .docs/ideas/YYYY-MM-DD-<topic>.md
  • Pass the idea document path to Step 5 (USDM)

Step 2: Issue Creation (Parent Issue)

Invoke the issue-create skill in standalone mode.

  • Input: Summary from the idea document
  • Output: GitHub Issue number and URL
  • Pass the issue number to Step 3 (Planning)

Step 3: Planning

Invoke the planning skill.

  • Input: The parent issue number from Step 2
  • Output: Plan document at .docs/plans/YYYY-MM-DD-<topic>.md
  • Pass the plan document and first work unit's issue numbers to Step 4

Update the plan document: set the first work unit's Status to In Progress.

Step 4: Branch Creation

Invoke the branch-create skill.

  • Input: Issue number and description from the plan's first work unit
  • Output: Feature branch name

Update the plan document: set the work unit's Branch to the created branch name.

Step 5: Requirements Definition (USDM)

Invoke the usdm skill.

  • Input: The idea document from Step 1
  • Output: USDM requirements document at .docs/REQ-DOC-*.md

After USDM completes, invoke the issue-create skill in USDM mode to create requirement sub-issues:

  • Input: USDM document path + parent issue number from Step 2
  • This creates all REQ issues as sub-issues with SPECs in the body

Step 6: Skill Implementation

Invoke the skill-creator skill.

  • Input: The USDM requirements document from Step 5
  • Output: Complete skill directory under skills/<skill-name>/
  • The skill must include SKILL.md with frontmatter

After skill-creator completes:

  1. Add the skill path to both .claude-plugin/plugin.json and .claude-plugin/marketplace.json.
  2. Bump the version in both manifest files to the same value.

Step 7: Commit

Invoke the commit skill.

  • Input: All changes from Steps 4-6
  • Commits may be made multiple times during implementation for safety

Step 8: Pull Request

Invoke the pull-request skill.

  • Input: The feature branch with all commits
  • Output: PR number and URL

After the PR is merged or the user confirms completion, update the plan document: set the work unit's Status to Done.

Step 9: Issue Cleanup

After the PR is merged, close all remaining open sub-issues under the parent issue.

  1. List open sub-issues of the parent issue: gh sub-issue list <parent-issue-number>
  2. For each open sub-issue, recursively list and close its own sub-issues first (bottom-up).
  3. Close each open sub-issue with a comment referencing the merged PR.

This is necessary because Resolves #N in commit messages only auto-closes the directly referenced issues. Sub-issues created from USDM requirements (sub-REQs) are not auto-closed and must be closed explicitly.

Plan Progress Tracking

Throughout the workflow, keep the plan document up to date:

EventUpdate
Work unit beginsStatus: Pending -> In Progress
Branch createdBranch: TBD -> branch name
PR merged or user confirms completionStatus: In Progress -> Done

Before Finishing

After the workflow completes (or when the user stops at any step), verify nothing is left behind:

  • Open issues? Are there sub-issues under the parent issue that should be closed? Step 9 handles this after merge, but if the workflow is interrupted earlier, flag any open issues to the user.
  • Uncommitted changes? Run git status to check for changes that were not included in the final commit.
  • Plan up to date? Does the plan document reflect the actual state of all work units (Status and Branch columns)?

Constraints

  • This skill is specific to the CaldiaWorks Skills repository.
  • Always follow the project's git workflow: feature branches, squash merge, no direct commits to main.
  • Do not skip marketplace registration after skill creation.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

32.15%
按下载量换算56

Claude

31.07%
按下载量换算54

Cursor

20.04%
按下载量换算35

Gemini CLI

9.77%
按下载量换算17

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

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

来源信息

继续浏览同类 Skills