agentsclimarketplace

整理现状

Skill Lumos-789/agent-skills/skills/整理现状

Reusable Claude Code skills — handoff queue, daily wrap-up, design interrogation, looklook

Install
npx -y skills add Lumos-789/agent-skills --skill 整理现状

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

整理现状 — 全量只读快照,读取所有项目卡片和 git 活跃度,生成现状报告。

SKILL.md

1.6 KB, 449 tokens by cl100k_base, as published. Nobody here has run it

全量只读快照:并行读取所有项目卡片 + 检查 git 活跃度 → 生成 reports/status-YYYY-MM-DD.md

步骤

1. 读项目注册表

<!-- adapt: point this to your own project registry -->

读取项目注册表(如 projects/_registry.md),解析出所有项目(slug、显示名、路径)。

2. 并行读取所有项目卡片

对每个项目,读取对应的卡片文件,提取:

  • 状态(规划中 / 开发中 / 测试中 / 已部署 / 维护中 / 已归档)
  • 当前进度
  • 最新待办
  • 阻塞项

3. 并行检查 git 状态

对每个项目,在项目路径下运行:

git log --oneline -5 --format="%h %s (%cr)"
git status --porcelain | head -20

判断:最近 7 天有无活动、有无未提交变更。

4. 生成现状报告

输出到 reports/status-YYYY-MM-DD.md,结构:

# Status Snapshot — YYYY-MM-DD

## Overview
One-line summary of workspace state.

## Project Status

| Project | Card Status | Git Activity | Needs Attention |
|---|---|---|---|
| ... | ... | ... | ... |

### ProjectA
- **Card**: current progress summary
- **Git**: recent activity
- **Todos**: top 3 items
- **Blockers**: list or "none"

(every project follows the same pattern)

## Cross-project Observations
Notable items at the global level.

规则

  • 只读:不修改任何项目卡片或文件(除了生成报告本身)
  • 在管理项目目录下执行

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.