Token导航 LogoToken导航TokenDH.com
研究检索只读github未标认证来源可访问clear审计通过

doc-ref文档参考

Agent Skill

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

总安装

1,141

周安装

49

GitHub Stars

14

下载量

729
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

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

简介

为 BRD 或 ADR 创建补充参考资料文档。

  • 不参与正式追溯链但增强上下文完整性。适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。
  • 采用 TYPE-REF-DOC_NUM 命名规则保证唯一性。
  • 可用于附录、示例或背景说明等非主干内容。
  • doc-ref 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

doc-ref

Purpose

Create Reference Documents (REF) - supplementary documentation for BRD and ADR artifact types in the SDD framework. REF documents provide supporting information without participating in the formal traceability chain.

Layer: Not applicable (supplementary to any layer)

Traceability: Optional (encouraged but not required)

Validation: Minimal (non-blocking)

Naming Convention

Format: {TYPE}-REF-DOC_NUM_{slug}.md

ComponentDescriptionExample
{TYPE}Parent artifact typeBRD or ADR only
REFReference document indicatorREF
DOC_NUMVariable-length sequence (2+ digits)01, 02, 100, 1000
{slug}Descriptive slug (snake_case)project_overview

Scope: REF documents are LIMITED to BRD and ADR artifact types ONLY.

Examples:

  • BRD-REF-01_project_overview.md - Business context
  • BRD-REF-02_strategic_vision.md - Strategic vision
  • ADR-REF-01_technology_stack_summary.md - Tech overview
  • ADR-REF-02_infrastructure_guide.md - Infrastructure reference

Numbering: Independent sequence per parent TYPE (variable-length: 01-99, 100-999, 1000+)

  • BRD-REF-01, BRD-REF-02 (BRD sequence)
  • ADR-REF-01, ADR-REF-02 (ADR sequence - separate from BRD)

Location: Within parent TYPE directory

  • docs/BRD/BRD-REF-01_project_overview.md
  • docs/ADR/ADR-REF-01_technology_stack_summary.md

When to Use This Skill

Use doc-ref when creating supplementary documentation that:

  • BRD-REF: Project overviews, executive summaries, strategic vision, stakeholder guides
  • ADR-REF: Technology stack summaries, architecture overviews, infrastructure guides

Do NOT use doc-ref for:

  • Documents that should participate in traceability chain
  • Core artifacts (BRD, PRD, REQ, ADR, SPEC, etc.)
  • Documents requiring validation gates
  • Any parent type other than BRD or ADR (REF is limited to these two types)

Template Reference

Template: ai_dev_flow/REF/REF-TEMPLATE.md

Required Sections (4 Mandatory)

  1. YAML Frontmatter - Metadata with artifact_type: REF
  2. Document Control - Version, date, author, status
  3. Document Revision History - Change tracking
  4. Introduction - Purpose and scope

Optional Sections

  • Related Documents - Cross-references (traceability encouraged)
  • Content sections - As needed for the specific reference material

Creation Process

Step 1: Determine Parent Type

Identify which artifact type this reference document supports (BRD or ADR only):

  • Business context → BRD-REF-NN
  • Architecture context → ADR-REF-NN

Step 2: Check Existing REF Documents

# List existing REF documents for the parent type
ls docs/BRD/*-REF-*.md 2>/dev/null    # For BRD references
ls docs/ADR/*-REF-*.md 2>/dev/null    # For ADR references

Step 3: Allocate Next Number

# Find highest REF number for parent type
ls docs/BRD/*-REF-*.md 2>/dev/null | sort -V | tail -1

ID Numbering Convention: Start with 2 digits and expand only as needed.

  • ✅ Correct: BRD-REF-01, ADR-REF-99, BRD-REF-102
  • ❌ Incorrect: BRD-REF-001, ADR-REF-009 (extra leading zero not required)

Step 4: Create Document

  1. Copy template: ai_dev_flow/REF/REF-TEMPLATE.md
  2. Rename to: {TYPE}-REF-NN_{slug}.md (NN = next sequence number, 2+ digits)
  3. Update H1 heading: # {TYPE}-REF-NN: [Document Title]
  4. Fill Document Control section
  5. Write Introduction
  6. Add content sections as needed
  7. [Optional] Add Related Documents section

Step 5: Place Document

Save in parent TYPE directory:

docs/{TYPE}/{TYPE}-REF-NN_{slug}.md

Element IDs (Not Applicable)

REF documents are free-format supplementary documents and do NOT use element IDs:

  • No element type codes (01-31 codes from ID_NAMING_STANDARDS.md do not apply)
  • No sub-element IDs (no TYPE.NN.xxxx pattern)
  • Content sections can be organized freely without formal ID structure

Rationale: REF documents serve as reference targets that other documents link to. They provide supporting information but do not define formal requirements or architecture decisions requiring element-level traceability.

Validation Rules

Required (Blocking)

CheckDescription
H1 ID MatchH1 must match pattern {TYPE}-REF-NN: Title
Document ControlMust have Document Control section
Revision HistoryMust have Document Revision History
IntroductionMust have Introduction section

Exempted (Not Checked)

CheckReason
Cumulative TagsREF docs don't participate in traceability chain
Full TraceabilityTraceability is optional
Quality GatesNon-blocking validation
SPEC-Ready ScoreNot applicable

Common Use Cases

1. Project Overview (BRD-REF)

General project description for stakeholders:

# BRD-REF-01: Project Overview

## Document Control
...

## 1. Introduction

This document provides a high-level overview of the project for stakeholder reference...

2. Strategic Vision (BRD-REF)

Strategic roadmap and vision:

# BRD-REF-02: Strategic Vision

## Document Control
...

## 1. Introduction

This document outlines the strategic vision and roadmap for the project...

3. Technology Summary (ADR-REF)

Consolidated architecture reference:

# ADR-REF-01: Technology Stack Summary

## Document Control
...

## 1. Introduction

This document summarizes the technology decisions documented across ADRs...

4. Infrastructure Guide (ADR-REF)

Infrastructure reference documentation:

# ADR-REF-02: Infrastructure Guide

## Document Control
...

## 1. Introduction

Reference guide for infrastructure components and deployment architecture...

Ready-Score Exemptions

REF documents are EXEMPT from ALL ready-scores and quality gates:

AspectStandard DocumentREF Document
PRD-Ready Score (BRD-REF)Required ≥90%NOT APPLICABLE
SYS-Ready Score (ADR-REF)Required ≥90%NOT APPLICABLE
Cumulative TagsRequired per layerNOT REQUIRED
Quality GatesFull validationEXEMPT
FormatStructured sectionsFree format

Comparison: REF vs Regular Artifacts

AspectRegular ArtifactsREF Documents
TraceabilityRequired (cumulative tags)Optional
ValidationFull (blocking)Minimal (4 checks only)
Quality GatesMust passExempt
Workflow PositionDefined layerNo layer
NumberingTYPE-NN{TYPE}-REF-NN
Valid Parent TypesAll artifact typesBRD and ADR only

Diagram Standards

All diagrams MUST use Mermaid syntax. Text-based diagrams (ASCII art, box drawings) are prohibited. See: ai_dev_ssd_flow/DIAGRAM_STANDARDS.md and mermaid-gen skill.

Related Resources

  • Template: ai_dev_flow/REF/REF-TEMPLATE.md
  • Naming Standards: ai_dev_flow/ID_NAMING_STANDARDS.md
  • Validation: ai_dev_flow/scripts/validate_artifact.py

Regex Validation Patterns

Filename Pattern

^(BRD|ADR)-REF-[0-9]{2,}_[a-z0-9_]+\.md$

Valid: BRD-REF-01_project_overview.md, ADR-REF-100_technology_stack.md Invalid: PRD-REF-01_features.md (PRD not allowed), BRD-REF-1_overview.md (single digit)

H1 ID Pattern

^#\s(BRD|ADR)-REF-[0-9]{2,}:.+$

Valid: # BRD-REF-01: Project Overview, # ADR-REF-100: Technology Stack Summary Invalid: # REQ-REF-01: Requirements Reference (REQ not allowed)

Quick Reference

  • Format: {TYPE}-REF-NN_{slug}.md
  • DOC_NUM: Variable-length (2+ digits: 01-99, 100-999, 1000+)
  • Valid Parent Types: BRD and ADR only
  • Required Sections: Document Control, Revision History, Introduction
  • Traceability: Optional (encouraged but not required)
  • Validation: Minimal (non-blocking, 4 checks only)
  • Element IDs: NOT APPLICABLE - REF documents use free format
  • Ready-Scores: NOT APPLICABLE - no quality gate enforcement

Version History

VersionDateChanges
1.12025-12-29Fixed DOC_NUM to variable-length (was NNN 3-digit); Added Element IDs section; Added Regex Validation; Updated examples
1.02025-11-30Initial skill creation

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

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

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

平台分布

Gemini CLI

24.81%
按下载量换算181

Claude Code

24.27%
按下载量换算177

OpenCode

18.13%
按下载量换算132

Antigravity

11.67%
按下载量换算85

Codex

8%
按下载量换算58

windsurf

3.07%
按下载量换算22

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

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

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills