Token导航 LogoToken导航TokenDH.com
研究检索只读github未标认证来源可访问许可证需确认审计通过

workflow-start工作流程启动

Agent Skill

workflow-start 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

269

周安装

11

GitHub Stars

6

下载量

86
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/duc01226/easyplatform --skill workflow-start

简介

用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中快速定位候选结果。

  • 支持基于关键词、任务场景或来源线索进行信息聚合与过滤,提升研究效率。
  • 通过 npx 命令从 GitHub 仓库安装,具体用法需结合原始 README 进一步确认。
  • 安装前建议核实权限范围、维护状态及是否涉及联网、命令执行或文件操作。
  • workflow-start 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

[MANDATORY] You MUST ATTENTION use TaskCreate to break ALL work into small tasks BEFORE starting. NEVER skip task creation.

Quick Summary

Goal: Activate a workflow by ID, creating tracking tasks and announcing the workflow sequence.

Workflow:

  1. Match -- Validate workflow ID against catalog
  2. Create -- Set up TaskCreate items for all workflow steps
  3. Announce -- Tell user the detected intent and workflow sequence

Key Rules:

  • AI MUST ATTENTION always detect nearest workflow and ask user via AskUserQuestion to confirm activation
  • Present "Activate [Workflow] (Recommended)" vs "Execute directly without workflow"
  • Create workflow-level tasks BEFORE any implementation tasks

Be skeptical. Apply critical thinking, sequential thinking. Every claim needs traced proof, confidence percentages (Idea should be more than 80%).

Workflow Start

Activate a workflow from the injected catalog and initialize step tracking via TaskCreate.


When to Use

  • Starting a detected workflow from the injected catalog
  • Initializing workflow state for step-by-step execution
  • Switching from one active workflow to another

NOT for: Manual step execution (follow TaskCreate items), workflow design (use planning), or workflow catalog management.


Quick Reference

Workflow

  1. Read the workflow catalog injected by the hook
  2. Validate the workflow ID against available entries
  3. Create workflow state via the workflow-step-tracker hook
  4. Create TaskCreate items for ALL sequence steps immediately
  5. Begin first step, marking it in_progress

Related

  • Command: /workflow-start <workflowId>
  • Hook: workflow-step-tracker.cjs
  • Hook: workflow-router.cjs

Activation Rules

  • Call ONLY after reading the workflow catalog injected by the hook
  • Use the exact workflow ID shown in the catalog (e.g., feature, bugfix, investigation)
  • ALWAYS ask the user via AskUserQuestion to confirm activation before proceeding
  • If called while another workflow is active, it will auto-switch (end current, start new)

After Activation — Task Creation Protocol (ZERO TOLERANCE)

Your FIRST action after activation MUST ATTENTION be creating EXACTLY one TaskCreate for EACH entry in the workflow's sequence array from .claude/workflows.json.

How to determine the task list:

  1. Read .claude/workflows.json
  2. Find the activated workflow by ID
  3. Read its sequence array — this is the SOLE source of truth
  4. Create one TaskCreate per array entry, IN ORDER

Task format:

TaskCreate: subject="[Workflow] /{step-name} — {brief description}", description="Workflow step N/{total}. {conditional note if applicable}", activeForm="Executing /{step-name}"

Rules (NON-NEGOTIABLE):

  • 1:1 mapping — Each sequence entry = exactly one task. No consolidation, no summarization, no custom task names.
  • Conditional steps still get tasks — Steps that may be skipped at runtime (e.g., /plan, /cook after a PASS review) STILL get created as tasks. Add to description: "Conditional — skip if reviews pass".
  • Recursive self-calls get tasks — If the sequence references itself (e.g., workflow-review-changes within review-changes), create a task: [Workflow] /workflow-review-changes — Recursive re-review (conditional).
  • Never invent tasks — Do NOT add tasks not in the sequence array (no "Assess results", no "Final review", no "Check output"). Only create what the sequence defines.
  • Count verification — After creating all tasks, verify: task count == len(sequence). If mismatch, fix immediately before proceeding.

Create ALL tasks first, then mark the first task in_progress via TaskUpdate.

Step Execution Protocol (applies to ALL workflows)

Per step: TaskUpdate in_progressinvoke Skill tool → complete skill workflow → TaskUpdate completed.

Marking a task completed without invoking its Skill tool is a workflow violation. Validation gates (/plan-validate, /plan-review, /why-review) require AskUserQuestion — never auto-approve or batch-complete them.

To skip a conditional step: TaskUpdate in_progress → add comment "Skipped — {reason}" → TaskUpdate completed. Do NOT delete conditional tasks.


See Also

  • planning skill - Creating implementation plans
  • feature-implementation skill - Implementing features after planning
  • debug-investigate skill - Bug fix workflows

IMPORTANT Task Planning Notes (MUST ATTENTION FOLLOW)

  • Always plan and break work into many small todo tasks
  • Always add a final review todo task to verify work quality and identify fixes/enhancements

Closing Reminders

  • IMPORTANT MUST ATTENTION break work into small todo tasks using TaskCreate BEFORE starting
  • IMPORTANT MUST ATTENTION search codebase for 3+ similar patterns before creating new code
  • IMPORTANT MUST ATTENTION cite file:line evidence for every claim (confidence >80% to act)
  • IMPORTANT MUST ATTENTION add a final review todo task to verify work quality

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

33.88%
按下载量换算29

Claude

29.99%
按下载量换算26

Cursor

19.38%
按下载量换算17

Gemini CLI

8.5%
按下载量换算7

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

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

安装前确认

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

来源信息

继续浏览同类 Skills