agentsclimarketplace

Current state scanner

Skill morning-start/agent-skills/process/doc-orchestrator/skills/doc-phase-analysis/current-state-scanner

Use when the user needs to scan an existing repository or document set and assess documentation coverage and quality.From its SKILL.md

Install
npx -y skills add morning-start/agent-skills --skill current-state-scanner

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

2 things to look at

  • no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
  • 1 stars1 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.

SKILL.md

2.0 KB, 649 tokens by cl100k_base, as published. Nobody here has run it

Current State Scanner

职责

  • 扫描项目中的现有文档
  • 评估文档完整性和质量
  • 识别文档间的追溯关系
  • 输出文档现状报告

输入

  • 项目根目录路径
  • 可选:指定文档目录

输出

current_state_report:
  existing_docs:
    - type: requirement
      path: docs/srs.md
      format: markdown
      has_frontmatter: false
      quality_score: 0.7
      issues:
        - "缺少非功能需求章节"
        - "未标注版本号"
    - type: api
      path: docs/api.md
      format: markdown
      has_frontmatter: true
      quality_score: 0.85
      issues: []
  traceability_matrix:
    req_to_arch: partial
    arch_to_api: complete
    api_to_test: missing
  coverage:
    requirement: 0.7
    architecture: 0.5
    api: 0.85
    test: 0.0
    overall: 0.51

扫描规则

文档识别

文件名模式文档类型
README.md基础文档
CHANGELOG.md变更记录
requirement, srs, prd需求文档
architecture, design, sad, tdd架构文档
api, interface, endpointAPI 文档
database, schema, data数据文档
test, quality, qa质量文档

质量评估维度

  1. 格式规范(20%):是否有 YAML front matter、标题层级是否正确
  2. 内容完整(30%):是否包含必需章节
  3. 术语一致(20%):术语使用是否统一
  4. 追溯完整(15%):是否有追溯关系标注
  5. 时效性(15%):最后更新时间是否在合理范围内

注意事项

  • 扫描结果仅作为参考,不替代用户判断
  • 对现有文档保持只读,不修改原文件
  • 质量评分低于 0.6 时需列出具体问题
  • 识别到的追溯关系输出为矩阵形式

What ships with it

Read from the repository

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

Keep looking

Skills are one crate of 326,569. 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.