Token导航 LogoToken导航TokenDH.com
前端设计只读github未标认证来源可访问许可证需确认审计通过

doc-sys-validator文档系统验证器

Agent Skill

用于辅助文档、README、Markdown、说明文和内容稿件的整理与改写。它适合让 Agent 提炼结构、补齐章节、统一术语、检查链接或把零散材料整理成可读文档。使用时应保留项目已有事实、命令和路径,不要把未确认的信息写成确定结论;涉及对外文案时,还需要控制语气,避免过度营销或夸大能力。

总安装

635

周安装

27

GitHub Stars

14

下载量

222
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:doc-sys-validator(文档系统验证器)
来源仓库:https://github.com/vladm3105/aidoc-flow-framework
仓库路径:skills/doc-sys-validator
安装命令:
npx skills add https://github.com/vladm3105/aidoc-flow-framework --skill doc-sys-validator
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/vladm3105/aidoc-flow-framework --skill doc-sys-validator

简介

验证系统需求文档是否符合分层架构标准结构。

  • 强制校验文件夹嵌套规则与 YAML 模式匹配情况。
  • 提供阻塞式检查,防止不符合规范的文档进入下游流程。
  • 必须配合 ai_dev_ssd_flow/06_SYS/SYS_MVP_SCHEMA.yaml 使用。
  • doc-sys-validator 属于前端设计类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

doc-sys-validator

Validate System Requirements (SYS) documents against Layer 6 schema standards.

Activation

Invoke when user requests validation of SYS documents or after creating/modifying SYS artifacts.

Validation Schema Reference

Schema: ai_dev_ssd_flow/06_SYS/SYS_MVP_SCHEMA.yaml Layer: 6 Artifact Type: SYS

Validation Checklist

0. Folder Structure Validation (BLOCKING)

Nested Folder Rule: ALL SYS documents MUST be in nested folders regardless of size.

Required Structure:

SYS TypeRequired Location
Monolithicdocs/06_SYS/SYS-NN_{slug}/SYS-NN_{slug}.md

Validation:

1. Check document is inside a nested folder: docs/06_SYS/SYS-NN_{slug}/
2. Verify folder name matches SYS ID pattern: SYS-NN_{slug}
3. Verify file name matches folder: SYS-NN_{slug}.md
4. Parent path must be: docs/06_SYS/

Example Valid Structure:

docs/06_SYS/
├── SYS-01_f1_iam/
│   ├── SYS-01_f1_iam.md           ✓ Valid
│   ├── SYS-01.R_review_report_v001.md
│   └── .drift_cache.json
├── SYS-02_f2_session/
│   └── SYS-02_f2_session.md       ✓ Valid

Invalid Structure:

docs/06_SYS/
├── SYS-01_f1_iam.md               ✗ NOT in nested folder

Error Codes:

CodeSeverityDescription
SYS-E020ERRORSYS not in nested folder (BLOCKING)
SYS-E021ERRORFolder name doesn't match SYS ID
SYS-E022ERRORFile name doesn't match folder name
VAL-H001ERRORDrift cache missing hash for upstream document
VAL-H002ERRORInvalid hash format (must be sha256:<64 hex chars>)

This check is BLOCKING - SYS must pass folder structure validation before other checks proceed.


1. Metadata Validation

Required custom_fields:
  - document_type: ["sys", "template"]
  - artifact_type: "SYS"
  - layer: 6
  - architecture_approaches: [array format]
  - priority: ["primary", "shared", "fallback"]
  - development_status: ["active", "draft", "deprecated", "reference"]

Required tags:
  - sys (or sys-template)
  - layer-6-artifact

Forbidden tag patterns:
  - "^system-requirements$"
  - "^sys-doc$"
  - "^sys-\\d{3}$"

2. Structure Validation

Required Sections (15 sections):

  • Title (H1): # SYS-NNN: Title
  • Section 1: Document Control
  • Section 2: Executive Summary
  • Section 3: Scope (Boundaries, Inclusions, Exclusions)
  • Section 4: Functional Requirements (SYS.NN.01.SS format)
  • Section 5: Quality Attributes (Performance, Reliability, Security)
  • Section 6: Interface Specifications
  • Section 7: Data Management
  • Section 8: Testing Requirements
  • Section 9: Deployment Requirements
  • Section 10: Compliance Requirements
  • Section 11: Acceptance Criteria
  • Section 12: Risk Assessment
  • Section 13: Traceability
  • Section 14: Implementation Notes
  • Section 15: Change History

Document Control Required Fields:

  • SYS ID
  • Document Name
  • Version
  • Date Created
  • Last Updated
  • Author
  • Reviewer
  • Status

File Naming: Pattern: SYS-NNN_descriptive_name.md

3. Content Validation

Functional Requirement Format:

  • Pattern: SYS.NN.01.SS (unified 3-segment format)
  • Table columns: SYS ID, Requirement, Priority, Source, Verification Method
  • Element type code: 01 = Functional Requirement
  • Priority values: Must Have, Should Have, Could Have, Won't Have

Quality Attribute Format (3-segment):

  • Pattern: SYS.NN.02.SS (02 = Quality Attribute type)
  • Example: SYS.08.0215
  • Categories: Performance, Reliability, Scalability, Security, Observability, Maintainability

Quality Attribute Metrics:

CategoryKeywordsMetrics
Performancelatency, response time, throughput, p50/p95/p99Response Time, Throughput, Latency
Reliabilityuptime, availability, MTBF, MTTRAvailability, Error Rate
Scalabilityconcurrent, horizontal, verticalConcurrent Users, Data Volume
Securityauth, encrypt, RBAC, complianceAuthentication, Authorization
Observabilitylog, monitor, alert, traceLogging, Monitoring, Alerting
Maintainabilitycoverage, deploy, CI/CDCode Coverage, Deploy Frequency

REQ-Ready Score:

  • Minimum threshold: 90%
  • Components: Functional completeness, quality attributes, interfaces, data management, testing, acceptance criteria, traceability

4. Traceability Validation

Layer 6 Cumulative Tags:

  • @brd: BRD.NN.01.SS (required)
  • @prd: PRD.NN.07.SS (required)
  • @ears: EARS.NN.24.SS (required)
  • @bdd: BDD.NN.13.SS (required)
  • @adr: ADR-NN (required)

Downstream Expected:

  • REQ documents
  • SPEC documents
  • TASKS documents

Same-Type References:

  • @related-sys: SYS-NN
  • @depends-sys: SYS-NN

Error Codes

CodeSeverityDescription
SYS-E001errorMissing required tag 'sys'
SYS-E002errorMissing required tag 'layer-6-artifact'
SYS-E003errorInvalid document_type
SYS-E004errorInvalid architecture_approaches format
SYS-E005errorForbidden tag pattern detected
SYS-E006errorMissing required section
SYS-E007errorMultiple H1 headings detected
SYS-E008errorSection numbering not sequential (1-15)
SYS-E009errorDocument Control missing required fields
SYS-E010errorMissing Functional Requirements (Section 4)
SYS-E011errorMissing Quality Attributes (Section 5)
SYS-E012errorMissing Traceability (Section 13)
SYS-E013warningFile name does not match format
SYS-W001warningFunctional requirements not using SYS.NN.01.SS
SYS-W002warningQuality attributes not using 3-segment format
SYS-W003warningMissing Performance category
SYS-W004warningMissing Security category
SYS-W005warningMissing upstream tags (require 5)
SYS-W006warningREQ-Ready Score below 90%
SYS-W007warningTesting Requirements missing coverage
SYS-I001infoConsider adding p50/p95/p99 latency
SYS-I002infoConsider adding MTBF/MTTR metrics

Validation Commands

# Validate single SYS document
python ai_dev_ssd_flow/06_SYS/scripts/validate_sys.py docs/06_SYS/SYS-01_example/SYS-01_example.md

# Validate all SYS documents
python ai_dev_ssd_flow/06_SYS/scripts/validate_sys.py docs/06_SYS/

# Check with verbose output
python ai_dev_ssd_flow/06_SYS/scripts/validate_sys.py docs/06_SYS/ --verbose

Validation Workflow

  1. Parse YAML frontmatter
  2. Check required metadata fields
  3. Validate tag taxonomy
  4. Verify section structure (1-15)
  5. Validate Document Control table
  6. Check functional requirement format
  7. Check quality attribute format
  8. Verify quality categories coverage
  9. Validate upstream references (5 required)
  10. Calculate REQ-Ready Score
  11. Verify file naming convention
  12. Generate validation report

Integration

  • Invoked by: doc-flow, doc-sys (post-creation)
  • Feeds into: trace-check (cross-document validation)
  • Reports to: quality-advisor

Output Format

SYS Validation Report
=====================
Document: SYS-001_example.md
Status: PASS/FAIL

Quality Attribute Coverage:
- Performance: Present/Missing
- Reliability: Present/Missing
- Security: Present/Missing
- Scalability: Present/Missing
- Observability: Present/Missing

Errors: N
Warnings: N
Info: N

[Details listed by severity]

Version History

VersionDateChangesAuthor
1.22026-02-27Migrated frontmatter to metadata; aligned schema to SYS_MVP_SCHEMA.yaml; normalized validation commands to ai_dev_ssd_flow/06_SYS/scripts/validate_sys.pySystem
1.12026-02-11Nested Folder Rule: Added Section 0 Folder Structure Validation (BLOCKING); SYS must be in docs/06_SYS/SYS-NN_{slug}/ folders; Added error codes SYS-E020, SYS-E021, SYS-E022
1.02026-02-08Initial validator skill definition with YAML frontmatterSystem

Implementation Plan Consistency (IPLAN-004)

  • Treat plan-derived outputs as valid source mode and verify intent preservation from implementation plan scope/objectives.
  • Validate upstream autopilot precedence assumption: --iplan > --ref > --prompt.
  • Flag objective/scope conflicts between plan context and artifact output as blocking issues requiring clarification.
  • Do not introduce legacy fallback paths such as docs-v2.0/00_REF.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

37.22%
按下载量换算83

Claude

27.68%
按下载量换算61

Cursor

18.11%
按下载量换算40

Gemini CLI

9.16%
按下载量换算20

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

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

来源信息

继续浏览同类 Skills