requirements-specification

pluginagentmarketplace/custom-plugin-product-manager · updated Apr 8, 2026

MDX-style export adds YAML metadata + attribution linking explainx.ai and this canonical listing URL.

$npx skills add https://github.com/pluginagentmarketplace/custom-plugin-product-manager --skill requirements-specification
0 commentsdiscussion
summary

Transform customer insights into clear, detailed specifications that engineering can build from. Master user story writing, define acceptance criteria, and manage scope ruthlessly.

skill.md

Requirements & Specification Skill

Transform customer insights into clear, detailed specifications that engineering can build from. Master user story writing, define acceptance criteria, and manage scope ruthlessly.

User Story Writing (INVEST Format)

INVEST Principles

I - Independent (minimal dependencies) N - Negotiable (details can be discussed) V - Valuable (delivers customer value) E - Estimable (team can estimate effort) S - Small (can complete in 1-2 sprints) T - Testable (clear success criteria)

User Story Template

As a [user role]
I want [action/capability]
So that [benefit/outcome]

Acceptance Criteria:
Given [context]
When [user action]
Then [expected result]

Good vs Bad Examples

Bad Story:

As a user
I want a better dashboard
So that I can see my data

Problem: Too vague, not testable, too large

Good Story:

As a project manager
I want to see all tasks assigned to me in the last 24 hours
So that I can track what happened while I was offline

Acceptance Criteria:
Given I'm logged in
When I view the Home dashboard
Then I see a "Recent Tasks" section
And it shows tasks assigned to me from last 24 hours
And tasks are sorted by assignment time (newest first)
And clicking a task opens the task detail page

Acceptance Criteria (BDD Format)

Scenario Template

Scenario: [Specific user action]
Given [initial context/state]
When [user performs action]
Then [expected result]
And [additional verification]

Example: Password Reset Feature

Scenario: User resets password with valid email
Given I'm on the login page
And I'm not logged in
When I click "Forgot Password?"
And enter my email address
And click "Send Reset Email"
Then I see message "Check your email for reset link"
And a password reset email is sent to that address
And the email contains a valid reset link

Scenario: User uses expired reset link
Given I received a password reset email
And the reset link is more than 24 hours old
When I click the reset link
Then I see "Link has expired"
And I'm offered to request a new reset link

Scenario: Password doesn't meet requirements
Given I'm on password reset page
When I enter password "123"
Then I see error "Password must be 8+ characters"
And the form doesn't submit

Requirements Document Structure

Executive Summary (1 page)

  • Overview of feature/product
  • Business goal/context
  • Key benefits
  • Timeline
  • Success metrics

Requirements Overview (5-10 pages)

Functional Requirements

  • What the system must do
  • Features and capabilities
  • User interactions
  • Data handling

Non-Functional Requirements

  • Performance (response time < 2s)
  • Scalability (support 10K concurrent users)
  • Security (encrypt PII)
  • Availability (99.9% uptime)
  • Accessibility (WCAG AA compliance)

Business Requirements

  • Why we're building this
  • Business metrics
  • Customer need
  • Competitive advantage

Constraints

  • Technical constraints
  • Budget constraints
  • Timeline constraints
  • Resource constraints

User Stories & Epics (20-50 pages)

Structure:

  • Epic: Large initiative grouping related stories
  • User Stories: Individual features (10-20 stories per epic)
  • Tasks: Engineering breakdown (if needed)

Each Story Includes:

  • Story ID and title
  • As a... I want... so that...
  • Acceptance criteria (3-8 scenarios)
  • Story points estimate
  • Dependencies
  • Design reference (wireframe/mockup)
  • Note/clarifications

Use Cases & Flows (10-20 pages)

Use Case Template:

Use Case: [Use Case Name]
Primary Actor: [User role]
Precondition: [State before action]

Main Flow:
1. User does X
2. System responds with Y
3. User does Z
4. System returns result

Alternative Flows:
3a. If data invalid
    - System shows error
    - User corrects and resubmits

Data Models (10 pages)

Entity Relationship Diagram

  • Entities (User, Post, Comment)
  • Relationships (User creates Posts)
  • Attributes (Post title, content, creation_date)
  • Primary keys, foreign keys

UI/Wireframes (Attached)

  • User interface mockups
  • User flows and navigation
  • Key interactions

Scope Management

MVP vs Nice-to-Have

MoSCoW Method:

MUST Have (Non-negotiable)

  • Core functionality
  • Without these: product won't work
  • Must launch with these
  • Example: User login, basic content view

SHOULD Have (Important but not critical)

  • Enhance user experience
  • Value add
  • If time allows
  • Example: Advanced search, saved preferences

COULD Have (Nice-to-have)

  • Polish features
  • Low priority
  • Do if extra time/budget
  • Example: Dark mode, animations

WON'T Have (Explicitly out of scope)

  • Clear for future
  • Helps say "no" to stakeholders
  • Plan for later version
  • Example: Mobile app (launching web first)

Scope Creep Prevention

Red Flags:

  • "Can we just add...?"
  • "This would be better if..."
  • "What about also including..."
  • "One more thing..."

Responses:

  • "That's a great idea. Let's add it to the roadmap for Q2."
  • "That would add 3 weeks. What would you deprioritize?"
  • "That's outside current scope. Document for next phase."

Change Management

Change Request Process:

  1. Document the change
  2. Assess impact (time, complexity)
  3. Present trade-offs
  4. Get stakeholder decision
  5. Update requirements document
  6. Communicate to team

Common Pitfalls

Too Vague

❌ "Improve performance" ✅ "Reduce page load time from 4s to under 2s"

No Success Criteria

❌ "Build dashboard" ✅ "Build dashboard showing active users in last 24h with 95% accuracy"

Missing Context

❌ "Fix the bug" ✅ "When searching with special characters, results show error. Fix to handle special chars."

Over-Specifying

❌ "Use Redux with saga middleware for state management" ✅ "State changes must be traceable and debuggable"

Ambiguous Acceptance Criteria

❌ "System should be fast" ✅ "API response time < 200ms for 95th percentile"

Requirements Review Checklist

  • ✓ Each requirement is testable
  • ✓ No requirement specifies implementation
  • ✓ Dependencies identified and documented
  • ✓ Acceptance criteria clear and complete
  • ✓ Engineering has estimated effort
  • ✓ Design mockups provided
  • ✓ Data models documented
  • ✓ Edge cases considered
  • ✓ Scope clearly defined (MVP vs future)
  • ✓ Success metrics identified
  • ✓ Timeline realistic
  • ✓ Reviewed by engineering lead
  • ✓ Reviewed by design lead
  • ✓ Stakeholder aligned

Troubleshooting

Yaygın Hatalar & Çözümler

Hata Olası Sebep Çözüm
Story çok büyük Epic olarak yazıldı Story breakdown
AC belirsiz Vague criteria Given/When/Then format
Scope creep Change mgmt yok Change request process
Missing edge cases Happy path focus Edge case workshop

Debug Checklist

[ ] Her story INVEST criteria geçiyor mu?
[ ] Acceptance criteria testable mı?
[ ] Non-functional requirements tanımlı mı?
[ ] Dependencies documented mı?
[ ] Engineering review yapıldı mı?

Recovery Procedures

  1. Ambiguous Requirements → Clarification meeting
  2. Scope Creep → Trade-off matrix
  3. Missing Feasibility → Engineering spike

Write clear requirements and avoid 90% of project problems!

how to use requirements-specification

How to use requirements-specification on Cursor

AI-first code editor with Composer

1

Prerequisites

Before installing skills in Cursor, ensure your development environment meets these requirements:

  • Cursor installed and configured on your development machine
  • Node.js version 16.0+ with npm package manager (verify with node --version)
  • Active project directory or workspace where you want to add requirements-specification
2

Execute installation command

Execute the skills CLI command in your project's root directory to begin installation:

$npx skills add https://github.com/pluginagentmarketplace/custom-plugin-product-manager --skill requirements-specification

The skills CLI fetches requirements-specification from GitHub repository pluginagentmarketplace/custom-plugin-product-manager and configures it for Cursor.

3

Select Cursor when prompted

The CLI will show a list of available agents. Use arrow keys to navigate and space to select Cursor:

◆ Which agents do you want to install to?
│ ── Universal (.agents/skills) ── always included ────
│ • Amp
│ • Antigravity
│ • Cline
│ • Codex
│ ●Cursor(selected)
│ • Cursor
│ • Windsurf
4

Verify installation

Confirm successful installation by checking the skill directory location:

.cursor/skills/requirements-specification

Reload or restart Cursor to activate requirements-specification. Access the skill through slash commands (e.g., /requirements-specification) or your agent's skill management interface.

Security & Verification Notice

We perform automated surface-level scans (Gen AI Scanner, Socket, Snyk) during installation. These checks detect common vulnerabilities but do not guarantee complete security. Always review skill source code and verify the publisher's reputation before production use.

Skills execute code in your development environment. Always verify the publisher's identity, review recent commits, and test in isolated environments before production deployment.

List & Monetize Your Skill

Submit your Claude Code skill and start earning

GET_STARTED →

Use Cases

Task Automation & Efficiency

Automate repetitive workflows and reduce manual effort

Example

Generate reports, summarize documents, draft communications

Save 3-5 hours per week on routine tasks

Knowledge Enhancement

Learn new skills, understand complex topics, get expert guidance

Example

Explain concepts, provide examples, suggest learning resources

Accelerate learning and skill development by 2x

Quality Improvement

Enhance output quality through reviews, suggestions, and refinements

Example

Review drafts, suggest improvements, catch errors

Improve work quality by 30-40% with less effort

Implementation Guide

Prerequisites

  • Claude Desktop or compatible AI client with skill support
  • Clear understanding of task or problem to solve
  • Willingness to iterate and refine outputs

Time Estimate

15-45 minutes depending on use case complexity

Installation Steps

  1. 1.Install skill using provided installation command
  2. 2.Test with simple use case relevant to your work
  3. 3.Evaluate output quality and relevance
  4. 4.Iterate on prompts to improve results
  5. 5.Integrate into regular workflow if valuable

Common Pitfalls

  • Expecting perfect results without iteration
  • Not providing enough context in prompts
  • Using skill for tasks outside its intended scope
  • Accepting outputs without review and validation

Best Practices

✓ Do

  • +Start with clear, specific prompts
  • +Provide relevant context and constraints
  • +Review and refine all outputs before using
  • +Iterate to improve output quality
  • +Document successful prompt patterns

✗ Don't

  • Don't use without understanding skill limitations
  • Don't skip validation of outputs
  • Don't share sensitive information in prompts
  • Don't expect skill to replace human judgment

💡 Pro Tips

  • Be specific about desired format and style
  • Ask for multiple options to choose from
  • Request explanations to understand reasoning
  • Combine AI efficiency with human expertise

When to Use This

✓ Use When

Use when skill capabilities match your task, clear ROI on time saved, and you can validate outputs. Best for repetitive tasks, learning, and quality improvement.

✗ Avoid When

Avoid when task requires deep expertise you can't validate, involves sensitive decisions, or when learning process is more valuable than speed of completion.

Learning Path

  1. 1Familiarize yourself with skill capabilities and limitations
  2. 2Start with low-risk, non-critical tasks
  3. 3Progress to more complex and valuable use cases
  4. 4Build expertise through regular use and experimentation

Discussion

Product Hunt–style comments (not star reviews)
  • No comments yet — start the thread.
general reviews

Ratings

4.747 reviews
  • Chaitanya Patil· Dec 28, 2024

    requirements-specification reduced setup friction for our internal harness; good balance of opinion and flexibility.

  • Omar Diallo· Dec 28, 2024

    Solid pick for teams standardizing on skills: requirements-specification is focused, and the summary matches what you get after install.

  • Omar Yang· Dec 24, 2024

    requirements-specification fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.

  • Harper Abebe· Dec 20, 2024

    requirements-specification has been reliable in day-to-day use. Documentation quality is above average for community skills.

  • Piyush G· Nov 19, 2024

    I recommend requirements-specification for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.

  • Kaira Dixit· Nov 19, 2024

    We added requirements-specification from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.

  • Mateo Martin· Nov 15, 2024

    requirements-specification is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.

  • Daniel Reddy· Nov 11, 2024

    requirements-specification fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.

  • Shikha Mishra· Oct 10, 2024

    Useful defaults in requirements-specification — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.

  • Soo Rahman· Oct 10, 2024

    requirements-specification fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.

showing 1-10 of 47

1 / 5