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

srs-documentationSRS 文档

Agent Skill

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

总安装

353

周安装

15

GitHub Stars

2

下载量

124
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/doubleslashse/claude-marketplace --skill srs-documentation

简介

srs-documentation 用于辅助文档、README、Markdown 和内容稿件的整理与改写。

  • 它适合提炼结构、补齐章节、统一术语或检查链接,提升文档可读性。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装并使用。
  • 使用时应保留项目已有事实,避免将未确认信息写成确定结论。
  • 涉及对外文案时需控制语气,避免过度营销或夸大能力。

SKILL.md

SRS Documentation Skill

Overview

This skill provides guidance for creating formal Software Requirements Specification (SRS) documents following the IEEE 830 standard structure.

IEEE 830 Standard Structure

1. Introduction

1.1 Purpose

  • State the purpose of the SRS document
  • Identify the intended audience
  • Specify the scope of coverage

1.2 Scope

  • Identify the software product by name
  • Explain what the software will do
  • Describe application benefits, objectives, goals
  • Be consistent with related higher-level specs

1.3 Definitions, Acronyms, and Abbreviations

  • Define all terms used in the document
  • Include technical terms, acronyms, abbreviations
  • Reference glossary or appendix if extensive

1.4 References

  • List all referenced documents
  • Include document titles, numbers, dates, sources
  • Identify version or revision information

1.5 Overview

  • Describe document organization
  • Explain the structure of remaining sections

2. Overall Description

2.1 Product Perspective

  • System Context: How the product fits into the larger ecosystem
  • System Interfaces: Connections to other systems
  • User Interfaces: UI considerations and constraints
  • Hardware Interfaces: Required hardware connections
  • Software Interfaces: Required software connections
  • Communications Interfaces: Network and protocol requirements
  • Memory Constraints: Memory and storage limitations
  • Operations: Normal and special operations modes
  • Site Adaptation Requirements: Installation and deployment needs

2.2 Product Functions

  • Summary of major functions
  • High-level feature overview
  • Organized by user or business function

2.3 User Characteristics

  • General characteristics of intended users
  • Educational level, experience, technical expertise
  • Accessibility considerations

2.4 Constraints

  • Regulatory requirements
  • Hardware limitations
  • Interface requirements
  • Standards compliance
  • Security considerations

2.5 Assumptions and Dependencies

  • Factors assumed to be true
  • Dependencies on other systems or components
  • Conditions that if changed would affect requirements

3. Specific Requirements

3.1 External Interface Requirements

  • User Interfaces: Detailed UI specifications
  • Hardware Interfaces: Hardware interaction details
  • Software Interfaces: API and integration details
  • Communications Interfaces: Protocol specifications

3.2 Functional Requirements

Organized by:

  • Feature or function
  • User class
  • Business object
  • Mode of operation
  • Stimulus/response sequence

Each requirement should include:

  • Unique identifier (FR-XXX)
  • Description of functionality
  • Inputs and outputs
  • Processing logic
  • Error handling

3.3 Performance Requirements

  • Response time requirements
  • Throughput requirements
  • Capacity requirements
  • Resource utilization limits

3.4 Design Constraints

  • Standards compliance
  • Hardware limitations
  • Software constraints
  • Architectural requirements

3.5 Software System Attributes

  • Reliability: Mean time between failures, recovery
  • Availability: Uptime requirements
  • Security: Access control, data protection
  • Maintainability: Modification ease, documentation
  • Portability: Platform requirements

3.6 Other Requirements

  • Database requirements
  • Operations requirements
  • Internationalization requirements

4. Appendices

A. Glossary

Complete list of defined terms

B. Analysis Models

  • Data flow diagrams
  • Entity-relationship diagrams
  • State diagrams
  • Use case diagrams

C. Requirements Traceability Matrix

  • Maps requirements to business objectives
  • Maps requirements to test cases
  • Shows requirement dependencies

Writing Guidelines

Requirement Characteristics

Each requirement should be:

CharacteristicDescriptionExample
NecessaryNeeded for system successNot nice-to-have
UnambiguousSingle interpretation"User" defined specifically
CompleteAll information includedIncludes error scenarios
ConsistentNo conflictsAligns with other requirements
VerifiableCan be testedMeasurable criteria
TraceableHas clear originLinks to business need
ModifiableCan be changed easilyUnique ID, no redundancy
PrioritizedRanked by importanceMoSCoW classification

Requirement Writing Style

DO:

  • Use "shall" for mandatory requirements
  • Use "should" for desirable requirements
  • Use "may" for optional requirements
  • Be specific and quantitative
  • Use consistent terminology
  • Write in active voice
  • One requirement per statement

DON'T:

  • Use vague terms (fast, user-friendly, flexible)
  • Use negative requirements when possible
  • Combine multiple requirements
  • Include design/implementation details
  • Use inconsistent terminology

Examples

Good Requirement:

FR-001: The system shall display search results within 3 seconds
of the user submitting a search query.

Bad Requirement:

The system should be fast and display results quickly.

Requirement ID Conventions

Functional Requirements

FR-XXX: Core functional requirements
FR-AUTH-XXX: Authentication related
FR-RPT-XXX: Reporting related
FR-INT-XXX: Integration related

Non-Functional Requirements

NFR-PERF-XXX: Performance
NFR-SEC-XXX: Security
NFR-REL-XXX: Reliability
NFR-USA-XXX: Usability
NFR-MAINT-XXX: Maintainability

Constraints

CON-XXX: General constraints
CON-REG-XXX: Regulatory constraints
CON-TECH-XXX: Technical constraints

Priority Levels

MoSCoW Method

PriorityCodeDescription
Must HaveMCritical for success
Should HaveSImportant but not critical
Could HaveCNice to have
Won't HaveWOut of scope for this release

Risk-Based Priority

PriorityLevelDescription
CriticalP1System cannot function without
HighP2Major feature impacted
MediumP3Minor feature impacted
LowP4Enhancement or convenience

Document Formatting

Section Numbering

1. Introduction
   1.1 Purpose
   1.2 Scope
2. Overall Description
   2.1 Product Perspective

Requirement Tables

| ID | Description | Priority | Status | Source |
|----|-------------|----------|--------|--------|
| FR-001 | User login | M | Approved | Stakeholder Meeting 2024-01-15 |

Cross-References

  • Use hyperlinks within document
  • Reference by ID: "See FR-001"
  • Include traceability: "Implements BR-003"

Validation Checklist

Before finalizing SRS, verify:

  • All sections of IEEE 830 template completed
  • All requirements have unique identifiers
  • All requirements are verifiable
  • No conflicting requirements
  • All terms defined in glossary
  • Traceability matrix complete
  • Stakeholder sign-off obtained
  • Version control and change history included

See template.md for the complete SRS template. See checklists.md for validation checklists.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.99%
按下载量换算43

Claude

32.16%
按下载量换算40

Cursor

16.94%
按下载量换算21

Gemini CLI

9.36%
按下载量换算12

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills