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

status状态

Agent Skill

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

总安装

245

周安装

10

GitHub Stars

15

下载量

78
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

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

简介

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

  • 适用于需要根据关键词或任务场景获取项目进展、问题或里程碑信息的场景。
  • 通过 npx skills add 命令从 GitHub 仓库安装,需确认权限范围与是否触发联网操作。
  • 建议结合原始 README 核验具体用法,并注意维护状态与潜在的文件读写行为。
  • status 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Show the current state of the workflow for this project.

Step 0: Run Migrations

This step is mandatory. You must complete it before proceeding.

Invoke the /migrate skill and assess its output.

If files were updated: STOP and wait for the user to review the changes (e.g., via git diff) and confirm before proceeding to Step 1. Do not continue automatically.

If no updates needed: Proceed to Step 1.


Step 1: Discovery State

!.claude/skills/status/scripts/discovery.sh

If the above shows a script invocation rather than YAML output, the dynamic content preprocessor did not run. Execute the script before continuing:

.claude/skills/status/scripts/discovery.sh

If YAML content is already displayed, it has been run on your behalf.

Parse the discovery output. IMPORTANT: Use ONLY this script for discovery. Do NOT run additional bash commands (ls, head, cat, etc.) to gather state.

→ Proceed to Step 2.


Step 2: Present Status

Build the display from discovery data. Only show sections for phases that have content.

CRITICAL: Entities don't flow one-to-one across phases. Multiple discussions may combine into one specification, topic names may change between phases, and specs may be superseded. The display must make these relationships visible — primarily through the specification's sources array.

2a: Summary

*Output the next fenced block as a code block:*
Workflow Status

  Research:       {count} file(s)
  Discussion:     {count} ({concluded} concluded, {in_progress} in-progress)
  Specification:  {active} active ({feature} feature, {crosscutting} cross-cutting)
  Planning:       {count} ({concluded} concluded, {in_progress} in-progress)
  Implementation: {count} ({completed} completed, {in_progress} in-progress)

Only show lines for phases that have content. If a phase has zero items but a later phase has content, show the line as (none) to highlight the gap.

If no workflow content exists at all

*Output the next fenced block as a code block:*
Workflow Status

No workflow files found in .workflows/

Start with /start-research to explore ideas,
or /start-discussion if you already know what to build.

STOP. Do not proceed — terminal condition.

2b: Specifications

Show if any specifications exist. This is the most important section — it reveals many-to-one relationships between discussions and specifications.

*Output the next fenced block as a code block:*
Specifications

  1. {name:(titlecase)} ({status})
     └─ Sources: @if(no_sources) (none) @else
        ├─ {src} ({src_status})
        └─ ...
     @endif

  2. ...

Rules:

  • Each numbered item is an active (non-superseded) specification
  • Show (cross-cutting) after status for cross-cutting specs; omit type label for feature specs
  • Blank line between numbered items
  • If superseded specs exist, show after the numbered list:
  Superseded:
    • {name} → {superseded_by}

2c: Plans

Show if any plans exist.

*Output the next fenced block as a code block:*
Plans

  1. {name:(titlecase)} ({status})
     └─ Spec: {specification_name}
     @if(has_unresolved_deps) └─ Blocked:
        ├─ {dep_topic}:{dep_task_id} ({dep_state})
        └─ ...
     @endif

  2. ...

Rules:

  • Map raw planning status to in-progress in the display
  • Show spec name without .md extension

2d: Implementation

Show if any implementations exist.

*Output the next fenced block as a code block:*
Implementation

  1. {topic:(titlecase)} ({status})
     └─ Phase {current_phase}, {completed_tasks}/{total_tasks} tasks done

  2. ...

Rules:

  • not-started└─ Not started
  • in-progress → phase and task progress; if total_tasks is 0, show {completed_tasks} tasks done without denominator
  • completed└─ Complete

2e: Unlinked Discussions

Derive which discussions are NOT referenced in any active (non-superseded) specification's sources array. Show only if unlinked discussions exist.

*Output the next fenced block as a code block:*
Discussions not yet in a specification:

  • {name} ({status})

2f: Key

Show if the display uses statuses that benefit from explanation. Only include statuses actually shown. No --- separator before this section.

*Output the next fenced block as a code block:*
Key:

  Status:
    in-progress — work is ongoing
    concluded   — complete, ready for next step
    superseded  — replaced by another specification

  Spec type:
    cross-cutting — architectural policy, not directly plannable

Omit categories with no entries.


Step 3: Suggest Next Steps

Based on gaps in the workflow, briefly suggest 2-3 most relevant actions:

  • Concluded discussions not in any spec → /start-specification
  • In-progress specs → finish with /start-specification
  • Concluded feature specs without plans → /start-planning
  • Concluded plans not yet implemented → /start-implementation
  • Completed implementations → /start-review

If plans exist, mention /view-plan for detailed plan viewing.

Keep suggestions brief — the user knows their project better than we do.

Notes

  • Keep output scannable — this is a status check, not a deep analysis
  • Discussions may appear in multiple specifications' sources
  • A discussion not appearing in any active spec's sources is "unlinked"
  • Research files are project-wide, not topic-specific
  • Topic names may differ across phases (e.g., discussions "auth-flow" and "session-mgmt" may combine into specification "auth-system")

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.33%
按下载量换算28

Claude

26.57%
按下载量换算21

Cursor

18.69%
按下载量换算15

Gemini CLI

8.57%
按下载量换算7

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/leeovery/claude-technical-workflows --skill status 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

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

来源信息

继续浏览同类 Skills