Token导航 LogoToken导航TokenDH.com
研究检索只读github未标认证来源可访问许可证需确认审计提醒

requirements-builder需求构建者

Agent Skill

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

总安装

416

周安装

17

GitHub Stars

1

下载量

135
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/skinnyandbald/fish-skills --skill requirements-builder

简介

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

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

SKILL.md

Requirements Builder

Intelligent requirements gathering system that discovers codebase context, asks structured yes/no questions, and generates comprehensive requirements documentation.

Based on claude-code-requirements-builder.

Arguments

$ARGUMENTS — description of the feature or requirement to gather (e.g., "add user profile photo upload")

Setup

Ensure the requirements/ directory exists in the project root:

mkdir -p requirements
touch requirements/.current-requirement

Workflow Overview

Phase 1: Initial Setup & Codebase Analysis
    → Create timestamped folder, analyze codebase structure
Phase 2: Context Discovery Questions (5 yes/no questions)
    → Ask about problem space, workflows, integrations
Phase 3: Targeted Context Gathering (autonomous)
    → Deep-dive into relevant code, patterns, similar features
Phase 4: Expert Requirements Questions (5 yes/no questions)
    → Ask like a senior dev who knows the codebase
Phase 5: Requirements Documentation
    → Generate comprehensive spec with acceptance criteria

Phase 1: Initial Setup & Codebase Analysis

  1. Create timestamp-based folder: requirements/YYYY-MM-DD-HHMM-[slug]
  2. Extract slug from $ARGUMENTS (e.g., "add user profile" → "user-profile")
  3. Create initial files:

- 00-initial-request.md with the user's request - metadata.json with status tracking

  1. Read and update requirements/.current-requirement with folder name
  2. Analyze the codebase to understand overall structure:

- Get high-level architecture overview - Identify main components and services - Understand technology stack - Note patterns and conventions

Phase 2: Context Discovery Questions

  1. Generate the five most important yes/no questions to understand the problem space:

- Questions informed by codebase structure - Questions about user interactions and workflows - Questions about similar features users currently use - Questions about data/content being worked with - Questions about external integrations or third-party services - Questions about performance or scale expectations - Write all questions to 01-discovery-questions.md with smart defaults - Begin asking questions one at a time proposing the question with a smart default option - Only after all questions are asked, record answers in 02-discovery-answers.md as received and update metadata.json. Not before.

Discovery Question Format:

## Q1: Will users interact with this feature through a visual interface?
**Default if unknown:** Yes (most features have some UI component)

## Q2: Does this feature need to work on mobile devices?
**Default if unknown:** Yes (mobile-first is standard practice)

Phase 3: Targeted Context Gathering (Autonomous)

  1. After all discovery questions answered:

- Search for specific files based on discovery answers - Read relevant code in batch - Deep dive into similar features and patterns - Analyze specific implementation details - Use WebSearch and/or context7 for best practices or library documentation - Document findings in 03-context-findings.md including: - Specific files that need modification - Exact patterns to follow - Similar features analyzed in detail - Technical constraints and considerations - Integration points identified

Phase 4: Expert Requirements Questions

  1. Now ask questions like a senior developer who knows the codebase:

- Write the top 5 most pressing unanswered detailed yes/no questions to 04-detail-questions.md - Questions should be as if you were speaking to the product manager who knows nothing of the code - These questions are meant to clarify expected system behavior now that you have a deep understanding of the code - Include smart defaults based on codebase patterns - Ask questions one at a time - Only after all questions are asked, record answers in 05-detail-answers.md as received

Expert Question Format:

## Q7: Should we extend the existing UserService at services/UserService.ts?
**Default if unknown:** Yes (maintains architectural consistency)

## Q8: Will this require new database migrations in db/migrations/?
**Default if unknown:** No (based on similar features not requiring schema changes)

Phase 5: Requirements Documentation

  1. Generate comprehensive requirements spec in 06-requirements-spec.md:

- Problem statement and solution overview - Functional requirements based on all answers - Technical requirements with specific file paths - Implementation hints and patterns to follow - Acceptance criteria - Assumptions for any unanswered questions


Important Rules

  • ONLY yes/no questions with smart defaults
  • ONE question at a time
  • Write ALL questions to file BEFORE asking any
  • Stay focused on requirements (no implementation)
  • Use actual file paths and component names in detail phase
  • Document WHY each default makes sense

Phase Transitions

  • After each phase, announce: "Phase complete. Starting [next phase]..."
  • Save all work before moving to next phase

Sub-Commands

/requirements-status

Show current requirement gathering progress and continue from last unanswered question.

  1. Read requirements/.current-requirement
  2. If no active requirement, suggest starting one
  3. If active: show formatted status, load question files, continue from last unanswered question

/requirements-current

Display detailed information about the active requirement (view-only, doesn't continue gathering).

Shows: initial request, codebase overview, all questions/answers, context findings, current phase, next steps.

/requirements-list

Display all requirements with their status and summaries, sorted by active first, then complete, then incomplete.

/requirements-end

Finalize the current requirement gathering session. Options:

  1. Generate spec with current information (defaults for unanswered)
  2. Mark as incomplete for later
  3. Cancel and delete

/requirements-remind

Quick correction when deviating from requirements gathering rules. Auto-detects:

  • Open-ended questions asked → rephrase as yes/no
  • Multiple questions asked → ask one at a time
  • Implementation started → redirect to requirements
  • No default provided → add a default

File Structure

Each requirement creates this folder structure:

requirements/
  .current-requirement          # Active requirement folder name
  YYYY-MM-DD-HHMM-[slug]/
    00-initial-request.md       # Original user request
    01-discovery-questions.md   # Context discovery questions
    02-discovery-answers.md     # User's answers
    03-context-findings.md      # AI's codebase analysis
    04-detail-questions.md      # Expert requirements questions
    05-detail-answers.md        # User's detailed answers
    06-requirements-spec.md     # Final requirements document
    metadata.json               # Status tracking

Metadata Structure

{
  "id": "feature-slug",
  "started": "ISO-8601-timestamp",
  "lastUpdated": "ISO-8601-timestamp",
  "status": "active",
  "phase": "discovery|context|detail|complete",
  "progress": {
    "discovery": { "answered": 0, "total": 5 },
    "detail": { "answered": 0, "total": 0 }
  },
  "contextFiles": ["paths/of/files/analyzed"],
  "relatedFeatures": ["similar features found"]
}

Final Spec Format

# Requirements Specification: [Name]

Generated: [timestamp]
Status: [Complete with X assumptions / Partial]

## Overview
[Problem statement and solution summary]

## Detailed Requirements

### Functional Requirements
[Based on answered questions]

### Technical Requirements
- Affected files: [list with paths]
- New components: [if any]
- Database changes: [if any]

### Assumptions
[List any defaults used for unanswered questions]

### Implementation Notes
[Specific guidance for implementation]

### Acceptance Criteria
[Testable criteria for completion]

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.17%
按下载量换算46

Claude

31.62%
按下载量换算43

Cursor

18.27%
按下载量换算25

Gemini CLI

8.79%
按下载量换算12

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

只读

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

安装前确认

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

来源信息

继续浏览同类 Skills