AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Elicit Requirements

skill-faizkhairi-claude-code-blueprint-elicit-requirements · by faizkhairi

Structured pre-feature requirements gathering. Run before writing any new feature or API endpoint to clarify scope, acceptance criteria, and technical constraints. Produces: a Requirements Summary (Problem | Scope | Stories | Acceptance Criteria | Out of Scope | Open Questions) — presented to the user for confirmation BEFORE saving to a file, so requirements can be edited before they become refer…

No reviews yet
0 installs
30 views
0.0% view→install

Install

$ agentstack add skill-faizkhairi-claude-code-blueprint-elicit-requirements

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-faizkhairi-claude-code-blueprint-elicit-requirements)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
3mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Elicit Requirements? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Elicit Requirements — Structured Pre-Feature Clarification

Run this before writing any new feature to avoid scope creep, missed edge cases, and mid-implementation discoveries that force rewrites.

Elicitation Workflow

Work through these sections with the user. Ask grouped questions — do not ask one at a time.


1. Problem Statement

Ask:

  • What problem are we solving, and for whom?
  • What triggers this feature? (user action, external system push, scheduled job, webhook)
  • What is the expected outcome when it works correctly?
  • What is the expected behaviour when it fails?

2. User Roles and Stakeholders

Ask:

  • Which user roles interact with this directly? (admin, developer, end user, external system)
  • Which roles are indirectly affected? (e.g., reports they see change, notifications they receive)
  • For integration features: which external system is involved? (identify from project context or ask)

3. Technical Constraints

For integration or API features, always clarify:

| Constraint | Questions | |---|---| | System | Which external system? | | Direction | INBOUND (system pushes to us) or OUTBOUND (we push to system)? | | Trigger | API call, webhook, scheduled job, file arrival? | | Data format | JSON? XML? CSV? Other? | | Auth | JWT? API key? mTLS? None (internal only)? | | Error handling | Retry? Dead-letter queue? Alert? Silent fail? | | Idempotency | Must duplicate calls be safe? |


4. Acceptance Criteria

For each piece of functionality, define:

  • What HTTP endpoint (method + path) if applicable
  • What the success response looks like (status code, key fields)
  • What DB rows are created/updated and with which values
  • What external calls are made (APIs, storage, queues)
  • What happens on error (validation fail, external system down, duplicate)

Acceptance criteria must be verifiable without human judgement. If it says "looks good" or "works correctly" it is not an acceptance criterion.

Good: POST /api/v1/orders returns 202 with { "jobId": "" } and creates job row with status='PENDING'

Bad: "The endpoint should handle the data correctly"


5. Out of Scope

Explicitly list what is NOT included in this feature to prevent scope creep:

  • Which related endpoints are deferred?
  • Which error scenarios are explicitly not handled yet?
  • Which UI/dashboard elements are not part of this backend feature?

6. Dependencies and Ordering

  • Does this feature depend on another feature being complete first?
  • Does another feature depend on this being complete?
  • What environment is needed to test? (running dev server, specific DB records, external system mock?)

Output

After elicitation, produce a structured summary:

## Requirements Summary: [Feature Name]

### Problem
[1-2 sentences]

### Scope
- System: [external system if applicable]
- Direction: [inbound/outbound]
- Trigger: [how it starts]

### Stories (ordered by dependency)
1. [Story 1 title] — [one-line description]
2. [Story 2 title] — [one-line description]

### Acceptance Criteria (per story)
**Story 1:**
- ...

### Out of Scope
- ...

### Open Questions
- ...

Step 7: Confirmation Before Saving

After drafting the Requirements Summary, present it to the user in readable markdown and ask:

> "Does this requirements summary look complete and accurate? Should I save it?"

Do NOT save until the user confirms (yes / save / proceed / looks good). If the user wants revisions, loop back to the relevant section, update the draft, and re-present.

Only after confirmation: save the requirements to a structured markdown file the user can reference during implementation.

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.