Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器github未标认证来源可访问许可证需确认审计通过

software-requirements软件要求

Agent Skill

software-requirements 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

480

周安装

20

GitHub Stars

1

下载量

160
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/theepan/ai-agent-skills --skill software-requirements

简介

用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中快速定位候选结果。

  • 适用于根据关键词或任务场景从多个来源中筛选出相关技术方案或工具。
  • 通过关键词匹配和来源仓库分析实现信息聚合与初步评估。
  • 安装命令:npx skills add https://github.com/theepan/ai-agent-skills --skill software-requirements
  • 建议确认权限范围和维护状态,避免触发不必要的联网或文件操作。

SKILL.md

Software Requirements Analysis

Write professional, comprehensive, and unambiguous software requirements documents that development teams can build from, QA teams can test against, and stakeholders can approve with confidence.

Input Handling

Determine the input type and respond accordingly:

  1. Informal description -- User describes what they want to build in plain language (e.g., "I need a login page with password reset"). Expand this into structured requirements by following the discovery and writing phases.
  2. Existing document to review -- User provides an existing requirements document for critique. Skip discovery, proceed to Requirements Review Mode.
  3. "Write me an X" request -- User explicitly asks for a specific document type (e.g., "Write me an SRS for my payment system"). Skip discovery if the scope is clear; proceed to document type selection and writing.
  4. Feature request for user stories -- User wants user stories + acceptance criteria for a specific feature or sprint. Use the User Story template from the document types guide.

Discovery Phase (Phase 1)

Before writing any requirement, you MUST gather context using these 7 questions. If the user has already provided some information, acknowledge what you know and ask only about what's missing. Do not skip this phase.

Ask the user to clarify:

  1. System/Product: What is being built? What is explicitly IN scope and OUT of scope?
  2. Stakeholders: Who are the end users, admins, operators, external systems, regulators?
  3. Problem: What specific problem does this solve? Why does it need to exist?
  4. Constraints: Technology stack, budget, timeline, regulatory requirements (GDPR, HIPAA, PCI-DSS, SOX, ADA), existing systems to integrate with, legacy dependencies?
  5. Document Type: What kind of document do they need? (If unsure, recommend based on their context.)
  6. Delivery Format:.docx, markdown, wiki, JIRA stories, Confluence page?
  7. Existing Materials: Do they have wireframes, user research, competitive analysis, or existing documents to reference?

Explicitly surface every assumption and list them in the final document.

Document Type Selection (Phase 2)

Read references/document-types.md before this phase.

Based on the discovery phase, recommend the appropriate document type using the decision heuristic. The reference file contains:

  • Selection table (SRS, PRD, BRD, FRD, User Stories, Use Cases)
  • Quick decision logic
  • All 6 document templates

Requirements Writing (Phase 3)

Read references/requirement-writing-rules.md before this phase.

Write requirements using:

  • Language rules: All requirements shall use "shall" (mandatory), "should" (recommended), or "may" (optional). Use active voice. Never combine behaviors with "and" or "or" in a single requirement. Specify exact quantities (e.g., "within 2 seconds", not "quickly").
  • Requirement ID format: Use hierarchical IDs like FR-AUTH-001, NFR-PERF-001, DR-001, IR-API-001
  • Required fields per requirement: ID, Description, Rationale, Priority (Must/Should/Could/Won't), Source, Acceptance Criteria, Dependencies, Notes
  • Avoid banned words: "should generally", "as appropriate", "etc.", "and/or", "user-friendly", "fast", "efficient", "robust", "seamless", "intuitive", "various", "some", "relevant", "adequate", "reasonable", "timely", "properly", "correctly", "easy", "simple", "normal"

Replace every instance of a banned word with a specific, measurable statement.

Input handling rules:

  • For every INPUT: specify type, format, valid range, required vs optional, default value, max length
  • For every OUTPUT: specify format, destination, timing, error format
  • For every OPERATION: specify what happens on failure, timeout, invalid data, concurrent access, cancellation

Expand informal descriptions by at least 3x the original size. For example, a one-sentence feature description should produce 20+ requirements covering functionality, security, performance, accessibility, and compliance.

Mandatory Coverage Areas (Phase 3 Continued)

For EVERY document, ensure ALL of these categories are addressed:

A) Functional Requirements (FR): Core features, business rules, data validation, error handling, state transitions, batch processing, notifications

B) Non-Functional Requirements (NFR): ALWAYS include ALL of these:

  • Performance: page load times, API response times, throughput, query latency
  • Scalability: max concurrent users, max data volume, growth rate
  • Security: authentication, authorization (RBAC/ABAC), encryption, audit logging, session management, CSRF/XSS/SQLi protection
  • Reliability: uptime target, MTTR, MTBF, failover strategy, disaster recovery
  • Accessibility: WCAG level (2.1 AA minimum), keyboard navigation, screen reader, color contrast
  • Usability: learnability, error recovery, user satisfaction benchmarks
  • Maintainability: logging standards, monitoring, deployment, code quality
  • Portability: browsers + versions, operating systems, devices, offline
  • Compliance: GDPR, HIPAA, PCI-DSS, SOX, ADA, COPPA, CCPA, industry regulations
  • Internationalization: languages, locales, RTL support, Unicode handling

C) Interface Requirements (IR): User interfaces, API endpoints with schemas, hardware interfaces, third-party integrations

D) Data Requirements (DR): Data models, retention policies, migration strategy, backup procedures, privacy classification, data quality rules

Validation Phase (Phase 4)

Read references/validation-checklist.md before this phase.

Run the validation checklist against every requirement:

  • AMBIGUITY SCAN: Search for banned words and replace with specific, measurable statements
  • TESTABILITY CHECK: Can you write a pass/fail test for each requirement?
  • COMPLETENESS CHECK: What about null/empty inputs, network failures, timeouts, disk full, malformed data, concurrent access, API unavailability, permission errors, session expiration?
  • CONTRADICTION CHECK: Are any two requirements impossible to satisfy simultaneously?
  • INTERFACE CHECK: Are all external interfaces completely specified?
  • NFR CHECK: Are ALL non-functional categories addressed?
  • PRIORITY CHECK: Is every requirement prioritized (Must/Should/Could/Won't)?
  • GLOSSARY CHECK: Are all domain-specific terms defined?
  • ASSUMPTIONS CHECK: Are all assumptions explicitly listed?
  • SCOPE CHECK: Are out-of-scope items explicitly listed?
  • TRACEABILITY CHECK: Does every requirement trace to a business objective?
  • OPEN QUESTIONS: Are unresolved items captured with owners and target resolution dates?

Fix all issues before proceeding to delivery.

Delivery Phase (Phase 5)

Structure the deliverable with:

  1. Main requirements document -- Using the template from Phase 2 with all requirements, structured by category, with IDs, priorities, acceptance criteria, and cross-references
  2. Numbered Assumptions list -- All implicit assumptions surfaced in discovery and planning, with risk assessment for each
  3. Open Questions log -- Unresolved items with columns: ID, Question, Owner, Target Date, Status
  4. Appendices:

- Requirements Traceability Matrix (Requirement ID → Business Objective → Test Case ID) - Glossary of all domain-specific terms - Change Log (Version, Date, Author, Changes)

  1. Version block: v0.1 Draft → v1.0 Approved as document matures

Requirements Review Mode

When a user provides an existing requirements document for review:

  1. Read the entire document before commenting
  2. Check each requirement against the 7 Quality Principles (see references)
  3. Flag issues with exact references:

- AMBIGUITY: Quote the vague phrase → provide specific replacement text - MISSING: Identify the gap → suggest requirement text to fill it - CONTRADICTION: Cite both conflicting requirement IDs → recommend resolution - UNTESTABLE: Explain why → provide testable rewrite - INCOMPLETE: Identify missing error cases, edge cases, NFR categories

  1. Rate each issue:

- Critical: Blocks development - Major: Causes rework - Minor: Polish

  1. Summarize: Issue count by severity, top 5 priority fixes, overall quality score (1-10)
  2. Rewrite the worst requirements completely in your response

Output Rules

  • Requirements are WHAT, not HOW. Say "The system shall authenticate users" not "Use OAuth 2.0 with JWT" (unless technology is a genuine constraint).
  • When expanding informal descriptions, produce at MINIMUM 3x the number of requirements the user described.
  • ALWAYS include "What's Missing / Needs Stakeholder Input" section at the end.
  • ALWAYS include a numbered Assumptions list.
  • ALWAYS include an Open Questions log with owners and target dates.
  • Version the document (v0.1 Draft → v1.0 Approved) and maintain a change log.
  • Cross-reference related requirements by ID throughout.
  • For formal documents: generate with table of contents, headers, page numbers, and requirement tables.
  • For agile artifacts: format for direct import to JIRA/Linear/Shortcut.

Guidelines

  • Do not skip discovery. Do not assume. Surface every assumption explicitly.
  • Never use banned words. Replace them with specific, measurable statements.
  • Cross-reference related requirements by ID. For example: "See FR-AUTH-001 for session management requirements."
  • When rewriting informal descriptions, surface hidden assumptions — list them and ask about each one.
  • Break compound requirements into atomic single-behavior statements.
  • Always add security, accessibility, and compliance requirements based on the domain, even if the user didn't explicitly ask.
  • For very large documents (>100 requirements), divide into logical sections and provide a consolidated summary.
  • When uncertain about user intent, state the assumption explicitly rather than making a silent judgment.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Claude

31.73%
按下载量换算51

Codex

31.55%
按下载量换算50

Cursor

18.22%
按下载量换算29

Gemini CLI

9.46%
按下载量换算15

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

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

来源信息

继续浏览同类 Skills