work-pipeline
仓库创建 2025年7月25日最近提交 1 天前SkillHot 收录 20 天前
▸ 精选理由
通过简单标签实现工作流自动触发,便于标准化提单和启动流程。
▸ 风险提示
自动触发可能执行写操作或启动长耗时流程,需限制触发权限
这个 Skill 做什么
检测消息开头的 [] 标签并触发对应的 WORK 管道流程。
消息开头如果写了像 [new-feature]、[bugfix] 这样的方括号标签,就会自动把请求交给 WORK-PIPELINE 去做后续流程编排。适合在发起新任务、上线变更或需要按既定流程走的工作项时使用,省得手动分派和判断优先级。特点是按预设编排流自动执行,并支持自定义标签触发,自动把任务推进到下一步。
▸ 展开 SKILL.md 英文原文
Triggers the WORK-PIPELINE when a user request starts with a [] tag (e.g., [new-feature], [bugfix], [WORK start]). Use this skill whenever you detect a [] tag at the beginning of a user message.
3.2k
Stars
441
Forks
40
仓库内 Skill
+72
7 日增星
安装 / 使用
给你的 Agent 一句话(通用)
帮我安装这个 skill:https://raw.githubusercontent.com/davepoon/buildwithclaude/main/plugins/agents-uc-taskmanager/skills/work-pipeline/SKILL.md或 curl 直取 SKILL.md
curl -fsSL "https://raw.githubusercontent.com/davepoon/buildwithclaude/main/plugins/agents-uc-taskmanager/skills/work-pipeline/SKILL.md"SKILL.MD 节选查看完整文件 ↗
# WORK-PIPELINE Trigger
When the user's message starts with a `[]` tag, start the WORK-PIPELINE by reading `../skills/sdd-pipeline/references/agent-flow.md` and following the orchestration flow.
## Trigger Detection
Any message starting with `[...]` triggers this pipeline:
- `[new-feature]`, `[enhancement]`, `[bugfix]`, `[new-work]`, `[WORK start]`
- Or any custom tag in square brackets
## References Directory (CRITICAL)
When this skill is triggered, Claude Code provides the "Base directory for this skill" as an absolute path.
Derive the **REFERENCES_DIR** from it:
```
REFERENCES_DIR = {Base directory}/../sdd-pipeline/references
```
You MUST pass this absolute path to **every sub-agenvia SKILL·HOT · 数据来自 GitHub 公开信息 · 原文版权归作者所有