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

dev-status开发状态

Agent Skill

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

总安装

343

周安装

14

GitHub Stars

2

下载量

110
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/andreaserradev-gbj/dev-workflow --skill dev-status

简介

dev-status 扫描 .dev/ 文件夹内所有功能模块状态,生成汇总报告并标记已完成或陈旧条目。

  • 它利用专用扫描代理遍历特性目录,提取进度信息,辅助项目管理与资源分配决策。
  • 支持归档建议与更新提醒,保持项目整洁,避免冗余工作堆积与版本混乱。
  • 使用前请确认 .dev/ 目录存在且可写,注意脚本可能修改文件结构,建议在非生产环境先行验证。
  • dev-status 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Dev Status Report

Scan all features in the .dev/ folder, generate a status report, and offer to archive completed or stale features.

Agents

This skill uses a specialized agent for status scanning:

  • feature-batch-scanner (blue) — Scans a batch of feature folders and extracts status for each

Agent definition is in agents/ within this skill's directory.

Step 0: Discover Project Root

Run the discovery script:

bash "$DISCOVER" root

Where $DISCOVER is the absolute path to scripts/discover.sh within this skill's directory.

Path safety — shell state does not persist between tool calls, so you must provide full script paths on each call:

  • Use $HOME instead of the literal home directory (e.g., bash "$HOME/code/…/discover.sh", not bash "/Users/name/…/discover.sh"). This prevents username hallucination.
  • Copy values from tool output. When reusing a value returned by a previous command (like $PROJECT_ROOT), copy it verbatim from that command's output. Never retype a path from memory.
  • Verify on first call: if a script call fails with "No such file", the path is wrong — STOP and re-derive from the skill-loading context.
  • Never ignore a non-zero exit. If any script in this skill fails, stop and report the error before continuing.

Store the output as $PROJECT_ROOT. If the command fails, inform the user and stop.

Step 1: Discover Features

Run the discovery script to find features:

bash "$DISCOVER" features "$PROJECT_ROOT"
  • If the script exits non-zero (no .dev/ directory): inform the user "No .dev/ directory found. Use /dev-plan to start a new feature."
  • If output is empty: inform the user "No features found in .dev/. Use /dev-plan to start a new feature."
  • Otherwise: store the list of feature folder paths for the next step.

Also check for archived features using the discovery script:

bash "$DISCOVER" archived "$PROJECT_ROOT"

Store any archived paths for the report.

Security rule: only use exact folder paths returned by discovery commands. Never build archive/move paths from raw user input.

Step 2: Calculate Batches

Distribute feature folders across agents (maximum 5 agents):

  • If N ≤ 5 features: Launch N agents, 1 folder each
  • If N > 5 features: Launch 5 agents, distribute folders round-robin

Batch distribution algorithm (for N > 5):

Agent 1: folders[0], folders[5], folders[10], ...
Agent 2: folders[1], folders[6], folders[11], ...
Agent 3: folders[2], folders[7], folders[12], ...
Agent 4: folders[3], folders[8], folders[13], ...
Agent 5: folders[4], folders[9], folders[14], ...

Step 3: Launch Parallel Agents

Launch all feature-batch-scanner agents in parallel using the Task tool.

For each agent, provide a prompt like:

"Scan these feature folders and return status for each:
- $PROJECT_ROOT/.dev/feature-a
- $PROJECT_ROOT/.dev/feature-b
- $PROJECT_ROOT/.dev/feature-c

For each folder, determine: Status (Active/Complete/Stale/No PRD), Progress (phases and steps), Last Checkpoint date, and Next Action."

Use subagent_type=dev-workflow:feature-batch-scanner and model=haiku for each agent.

IMPORTANT: Launch all agents in a single message with multiple Task tool calls to run them in parallel.

Step 4: Aggregate Results

After all agents return:

  1. Parse each agent's batch results
  2. Combine into a unified list of all features
  3. Sort by status: Active first, then Stale, then Complete, then No PRD
  4. Calculate summary counts

Step 5: Present Report

Display the status report to the user:

## Dev Status Report

**Generated**: [ISO 8601 timestamp]
**Features Scanned**: [N]

### Summary

| Status | Count |
|--------|-------|
| Active | [X] |
| Complete | [Y] |
| Stale | [Z] |
| No PRD | [W] |

### All Features

| Feature | Status | Progress | Last Activity | Next Action |
|---------|--------|----------|---------------|-------------|
| [name] | [status] | [X/Y phases] | [date/ago] | [summary] |
...

If there are archived features, add a section:

### Archived Features

[N] features in `.dev-archive/`:
- [feature-name-1]
- [feature-name-2]

Step 6: Archive Offer

If there are any Complete or Stale features, ask the user:

"Would you like to archive any completed or stale features? This moves them to .dev-archive/ to keep .dev/ clean."

Present options:

  1. Archive all complete features
  2. Archive all stale features
  3. Archive specific features (list them)
  4. Skip archiving

If user chooses to archive:

  1. Create .dev-archive/ if it doesn't exist: mkdir -p "$PROJECT_ROOT/.dev-archive"
  2. For each selected feature, set $FEATURE_PATH to the matching path from Step 1's discovered list. Validate with the validation script: bash "$VALIDATE" feature-path "$FEATURE_PATH" "$PROJECT_ROOT" Where $VALIDATE is the absolute path to scripts/validate.sh within this skill's directory. Apply the path safety rules from Step 0 ($HOME, copy from output). On failure, STOP immediately — do not archive or continue with an unvalidated path. Then move: mv -- "$FEATURE_PATH" "$PROJECT_ROOT/.dev-archive/" $FEATURE_PATH must be one of the discovered .dev/* directories selected by the user. Never construct it from raw user input.
  3. Confirm what was archived.

If user skips: Proceed to Step 7.

Step 7: Save Report

Remove any previous status reports before writing the new one:

bash "$DISCOVER" status-reports "$PROJECT_ROOT"

Delete each file path returned (if any). If the command fails, skip cleanup and continue.

Write the status report to $PROJECT_ROOT/.dev/status-report-YYYY-MM-DD.md:

# Dev Status Report

**Generated**: [ISO 8601 timestamp]
**Project**: [project name from git or folder]
**Features Scanned**: [N]

## Summary

| Status | Count |
|--------|-------|
| Active | [X] |
| Complete | [Y] |
| Stale | [Z] |
| No PRD | [W] |

## Features

| Feature | Status | Progress | Last Activity |
|---------|--------|----------|---------------|
| [name] | [status] | [X/Y phases] | [date] |
...

## Archive Candidates

### Complete (ready to archive)
- [feature-name]
...

### Stale (no activity > 30 days)
- [feature-name]
...

---

*Report generated by `/dev-status`*

Confirm: "Status report saved to .dev/status-report-YYYY-MM-DD.md"

Privacy Rules

NEVER include in output or saved reports:

  • Absolute paths containing usernames (e.g., /Users/username/...)
  • Secrets, API keys, tokens, or credentials
  • Personal information

ALWAYS use instead:

  • Relative paths from project root (e.g., .dev/feature-name/)
  • Feature names without full paths in tables

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.94%
按下载量换算38

Claude

28.28%
按下载量换算31

Cursor

18.74%
按下载量换算21

Gemini CLI

8.86%
按下载量换算10

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

执行命令

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

安装前确认

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

来源信息

继续浏览同类 Skills