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

requirements-engineering需求工程

Agent Skill

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

总安装

3,669

周安装

147

GitHub Stars

636

下载量

1,188
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/jasonkneen/kiro --skill requirements-engineering

简介

用于查找、检索和筛选相关信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词或任务场景快速定位候选结果。
  • 通过 npx skills add 命令从指定仓库安装,需确认权限与维护状态。
  • 使用前建议核实是否会触发联网、命令执行或文件读写操作。
  • requirements-engineering 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Requirements Engineering

Master the art of capturing what needs to be built before diving into how to build it. This skill teaches the EARS (Easy Approach to Requirements Syntax) format for creating clear, testable requirements.

When to Use This Skill

Use requirements engineering when:

  • Starting any new feature or project
  • Clarifying ambiguous stakeholder requests
  • Creating acceptance criteria for user stories
  • Documenting system behavior for testing
  • Ensuring all team members share understanding

The EARS Format

EARS provides consistent patterns for writing requirements that are specific, testable, and unambiguous.

Basic Patterns

Event-Response (Most Common):

WHEN [triggering event] THEN [system] SHALL [required response]

Conditional Behavior:

IF [precondition is met] THEN [system] SHALL [required response]

Complex Conditions:

WHEN [event] AND [additional condition] THEN [system] SHALL [response]

Optional Conditions:

WHEN [event] OR [alternative event] THEN [system] SHALL [response]

Advanced Patterns

State-Based:

WHEN [system is in specific state] THEN [system] SHALL [behavior]

Performance:

WHEN [user action] THEN [system] SHALL [respond within X seconds/milliseconds]

Security:

IF [authentication condition] THEN [system] SHALL [security response]

Step-by-Step Process

Step 1: Capture User Stories

Format: As a [role], I want [feature], so that [benefit]

Focus on:

  • Who is the user? (role)
  • What do they want to accomplish? (feature)
  • Why does it matter? (benefit/value)

Example:

As a returning customer, I want to save my payment methods, so that I can checkout faster in the future.

Step 2: Generate Acceptance Criteria

For each user story, define specific acceptance criteria using EARS:

Example for payment methods:

**User Story:** As a returning customer, I want to save my payment methods, so that I can checkout faster.

**Acceptance Criteria:**
1. WHEN user adds a valid credit card THEN system SHALL securely store card details
2. WHEN user adds a card with invalid number THEN system SHALL display validation error
3. WHEN user has saved cards THEN system SHALL display list during checkout
4. WHEN user selects saved card THEN system SHALL pre-fill payment form
5. WHEN user deletes saved card THEN system SHALL remove card from list
6. IF user is not authenticated THEN system SHALL redirect to login before saving card
7. WHEN user adds card THEN system SHALL mask all but last 4 digits in display

Step 3: Identify Edge Cases

For each requirement, ask:

  • What if the input is empty/null?
  • What if the input is at boundary values?
  • What if the operation fails?
  • What if the user is not authorized?
  • What if there are concurrent operations?

Edge case patterns:

**Error Handling:**
- WHEN [operation fails] THEN system SHALL [display error / retry / log]

**Boundary Conditions:**
- WHEN [value equals minimum/maximum] THEN system SHALL [specific behavior]

**Concurrent Access:**
- WHEN [multiple users access same resource] THEN system SHALL [conflict resolution]

**Empty States:**
- WHEN [collection is empty] THEN system SHALL [display empty state message]

Step 4: Validate Requirements

Use this checklist:

Completeness:

  • All user roles identified and addressed
  • Normal flow scenarios covered
  • Edge cases documented
  • Error cases handled
  • Business rules captured

Clarity:

  • Each requirement uses precise language
  • No ambiguous terms (fast, easy, user-friendly)
  • Technical jargon avoided or defined
  • Expected behaviors are specific

Consistency:

  • EARS format used throughout
  • Terminology consistent across requirements
  • No contradictory requirements
  • Similar scenarios handled similarly

Testability:

  • Each requirement can be verified
  • Success criteria are observable
  • Inputs and expected outputs specified
  • Performance requirements are measurable

Common Mistakes to Avoid

Mistake 1: Vague Requirements

Bad: "System should be fast" Good: "WHEN user submits search THEN system SHALL return results within 2 seconds"

Mistake 2: Implementation Details

Bad: "System shall use Redis for caching" Good: "WHEN user requests frequently accessed data THEN system SHALL return cached results"

Mistake 3: Missing Error Cases

Bad: Only documenting happy path Good: Include WHEN/IF statements for all error conditions

Mistake 4: Untestable Requirements

Bad: "System should be user-friendly" Good: "WHEN new user completes onboarding THEN system SHALL require no more than 3 clicks to reach main dashboard"

Mistake 5: Conflicting Requirements

Bad: Requirements that contradict each other Good: Review all requirements together, resolve conflicts explicitly

Examples

Example 1: File Upload Feature

**User Story:** As a user, I want to upload files, so that I can share documents with my team.

**Acceptance Criteria:**
1. WHEN user selects file under 10MB THEN system SHALL accept file for upload
2. WHEN user selects file over 10MB THEN system SHALL display "file too large (max 10MB)" error
3. WHEN user selects unsupported file type THEN system SHALL display "unsupported format" error with list of allowed types
4. WHEN upload is in progress THEN system SHALL display progress indicator with percentage
5. WHEN upload completes successfully THEN system SHALL display success message with file link
6. WHEN upload fails due to network error THEN system SHALL display retry option
7. IF user is not authenticated THEN system SHALL redirect to login before upload
8. WHEN user uploads file with same name as existing file THEN system SHALL prompt for rename or replace

**Supported File Types:** PDF, DOC, DOCX, XLS, XLSX, PNG, JPG, GIF
**Maximum File Size:** 10MB
**Maximum Files Per Upload:** 5

Example 2: Search Feature

**User Story:** As a customer, I want to search products, so that I can find items quickly.

**Acceptance Criteria:**
1. WHEN user enters search term THEN system SHALL display matching products
2. WHEN search returns results THEN system SHALL show result count
3. WHEN search returns no results THEN system SHALL display "no products found" with suggestions
4. WHEN user searches with special characters THEN system SHALL sanitize input and search
5. WHEN user submits empty search THEN system SHALL display validation message
6. WHEN results exceed 20 items THEN system SHALL paginate with 20 items per page
7. WHEN user searches THEN system SHALL return results within 2 seconds
8. WHEN user types in search box THEN system SHALL show autocomplete suggestions after 3 characters

**Search Fields:** Product name, description, category, SKU
**Minimum Search Length:** 2 characters

Requirements Document Template

# Requirements Document: [Feature Name]

## Overview
[Brief description of the feature and its purpose]

## User Roles
- [Role 1]: [Description of this user type]
- [Role 2]: [Description of this user type]

## Requirements

### Requirement 1: [Name]
**User Story:** As a [role], I want [feature], so that [benefit]

**Acceptance Criteria:**
1. WHEN [event] THEN system SHALL [response]
2. IF [condition] THEN system SHALL [response]
3. WHEN [event] AND [condition] THEN system SHALL [response]

**Edge Cases:**
- [Edge case 1 and how it's handled]
- [Edge case 2 and how it's handled]

### Requirement 2: [Name]
[Continue pattern...]

## Non-Functional Requirements
- **Performance:** [Specific metrics]
- **Security:** [Security requirements]
- **Accessibility:** [Accessibility standards]

## Out of Scope
- [Items explicitly not included in this feature]

## Open Questions
- [Questions that need stakeholder input]

Next Steps

After completing requirements:

  1. Review with stakeholders for accuracy
  2. Get explicit approval before proceeding
  3. Move to Design Phase to create technical architecture
  4. Use requirements as foundation for acceptance testing

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

Claude Code

29.27%
按下载量换算348

Gemini CLI

24.62%
按下载量换算292

OpenCode

17.22%
按下载量换算205

Cursor

12.89%
按下载量换算153

Antigravity

7.71%
按下载量换算92

Codex

3.4%
按下载量换算40

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills