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

update-workflow-explorer更新工作流资源管理器

Agent Skill

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

总安装

776

周安装

33

GitHub Stars

15

下载量

272
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/leeovery/claude-technical-workflows --skill update-workflow-explorer

简介

用于查找、检索和筛选相关信息。update-workflow-explorer 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

  • 适合在需要根据关键词或任务场景快速定位候选结果时使用。
  • 可结合来源仓库、安装命令和原始 README 继续核验具体用法。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网或文件读写。
  • 注意该技能当前分类为研究检索,功能聚焦信息探索。

SKILL.md

Update Workflow Explorer

Audit workflow-explorer.html and sync its flowchart data with the actual skill/agent source files.

Step 0: Determine Scope

0a: Check for explicit context

Check $ARGUMENTS for user-provided context about what changed.

  • Context given (e.g. "I just updated the implementation skill") → narrow to affected flowchart keys using the source mapping below
  • Ambiguous → ASK user to confirm scope before proceeding

If explicit context was given, skip 0b and proceed to Step 1 with the narrowed scope.

0b: Detect git context

If no explicit context was given, check the git state:

  1. Branch check — run git branch --show-current. If not on main/master, note the feature branch name.
  2. Changed files — run git diff main --name-only (branch changes) and git diff --name-only + git diff --cached --name-only (uncommitted/staged changes). Combine into a single list of changed files.
  3. Cross-reference — match changed files against the source mapping below. Identify which flowchart keys are affected.

If changed source files are detected, present findings to the user:

I'm on branch {branch} with changes to these source files: - {file} → flowchart key(s): {key} - ... Options: 1. Scope to these changes — audit only the affected flowchart keys (recommended if this branch represents all recent work) 2. Full audit — audit all flowchart keys regardless of git state

Wait for user confirmation before proceeding.

If no changed source files are detected (on main with clean tree), proceed with a full audit.

Step 1: Read Source Files

For each in-scope flowchart key, read its source file(s) and extract the logical flow: steps, gates, decisions, loops, conditional branches, outputs.

Source Mapping

KeySource Files
researchskills/start-research/SKILL.md
discussionskills/start-discussion/SKILL.md
specificationskills/start-specification/SKILL.md
planningskills/start-planning/SKILL.md
implementationskills/start-implementation/SKILL.md
reviewskills/start-review/SKILL.md
skill-researchskills/workflow-research-process/SKILL.md
skill-discussionskills/workflow-discussion-process/SKILL.md
skill-specificationskills/workflow-specification-process/SKILL.md + skills/workflow-specification-process/references/*.md
skill-planningskills/workflow-planning-process/SKILL.md + skills/workflow-planning-process/references/*.md
skill-implementationskills/workflow-implementation-process/SKILL.md + skills/workflow-implementation-process/references/*.md
skill-reviewskills/workflow-review-process/SKILL.md + agents/workflow-review-task-verifier.md
start-featureskills/start-feature/SKILL.md
workflow-migrateskills/workflow-migrate/SKILL.md
workflow-planning-phase-designeragents/workflow-planning-phase-designer.md
workflow-planning-task-designeragents/workflow-planning-task-designer.md
workflow-planning-task-authoragents/workflow-planning-task-author.md
workflow-planning-dependency-grapheragents/workflow-planning-dependency-grapher.md
workflow-implementation-task-executoragents/workflow-implementation-task-executor.md
workflow-implementation-task-revieweragents/workflow-implementation-task-reviewer.md
workflow-review-task-verifieragents/workflow-review-task-verifier.md

Use parallel reads (Task tool with Explore agents or multiple Read calls) to gather sources efficiently.

Step 2: Read Current Flowchart Data

Read workflow-explorer.html and extract the 6 data structures for each in-scope key:

  1. phases[key] — metadata (steps, desc, scenarios, detailHTML)
  2. FLOWCHARTS[key] — nodes + connections
  3. FLOWCHART_DESCS[key] — summary, body, meta
  4. **OVERVIEW_*** — only if phases were added/removed/renamed
  5. SOURCE_MAP[key] — repo-relative path to source file (update when files are renamed)
  6. SKILL_NEXT_PHASE[key] — next-phase navigation for skill flowcharts

Step 3: Compare and Report

For each key, compare source logic against current flowchart data. Report per key:

  • MATCH — no drift detected
  • DRIFT — specific differences (added/removed steps, renamed concepts, changed gates, altered flow)
  • MISSING — flowchart key exists in sources but not in explorer (or vice versa)

Present findings to the user and STOP. Wait for confirmation of which changes to apply before proceeding.

Step 4: Apply Updates

For each confirmed change, update the following in workflow-explorer.html:

  • FLOWCHARTS[key].nodes and .connections
  • FLOWCHART_DESCS[key] summary, body, meta
  • phases[key] desc, steps count, detailHTML (if affected)
  • OVERVIEW_* (only if phases added/removed)

Data Conventions

Follow the conventions documented in the file header (lines 1-41):

Node shapes:

  • pill — start/end nodes (w:150, h:40)
  • diamond — decision/routing nodes (w:110-130, h:110-130)
  • stop — hard-cornered terminal nodes for STOP/BLOCK (w:150-180, h:40, rx:3)
  • rect (default) — action step nodes (w:180-200, h:44)

Connection types:

  • yes — green (positive branch from diamond)
  • no — red (negative branch from diamond)
  • transition — orange dashed (phase/context transitions)
  • backloop — gray dashed (retry/loop-back flows)

Color conventions (type-based, NOT phase-based — use CSS vars):

  • var(--action) sky blue — primary work steps (validate, extract, etc.)
  • var(--agent) cyan — agent invocation nodes (with optional skillLink to agent flowchart)
  • var(--text-dim) gray — utility/support steps (read existing, load format, etc.)
  • var(--ask) purple — user-interaction nodes
  • var(--routing) amber — decision diamonds (all diamonds use this)
  • var(--gate) red — STOP/BLOCK terminal nodes (hard-cornered stop shape), cache refresh
  • var(--discovery) green — discovery script execution
  • var(--skill) orange — skill invocation pills (with skillLink)
  • var(--next) blue — next-phase navigation nodes (rect, command color, same shape as agent nodes)
  • var(--accent) blue — entry points, migrations, git commits
  • var(--{phase}) phase color — END output artifacts only (keeps phase identity)

Node properties:

  • skillLink — on nodes that should navigate to a skill or agent flowchart on click
  • desc — tooltip text describing what the node does

Next-phase nodes (skill flowcharts only):

  • Every skill flowchart except skill-review has a next rect node at the end
  • Node: {id: 'next', label: 'Invoke /start-{phase}', desc: '...', w: 200, h: 44, color: 'var(--next)', bg: 'var(--next-bg)', skillLink: NEXT_PHASE_KEY}
  • Connection: {from: 'end', to: 'next', type: 'transition'}
  • All next nodes use consistent command blue (var(--next)) regardless of target phase
  • SKILL_NEXT_PHASE mapping must stay in sync

SOURCE_MAP maintenance:

  • When source files are renamed or new flowchart keys are added, update SOURCE_MAP accordingly
  • SOURCE_MAP maps flowchart keys to repo-relative file paths for the markdown viewer

Step 5: Validate and Verify

After applying updates:

  1. Check all connection from/to values reference valid node IDs in the same flowchart
  2. Check for orphaned nodes (not referenced by any connection as source or target, excluding start nodes)
  3. Remind user to open workflow-explorer.html in browser for visual verification

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.7%
按下载量换算94

Claude

30.64%
按下载量换算83

Cursor

21.09%
按下载量换算57

Gemini CLI

10.28%
按下载量换算28

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

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

来源信息

继续浏览同类 Skills