Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问clear审计通过

story-writer故事作家

Agent Skill

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

总安装

23,242

周安装

832

GitHub Stars

24

下载量

9,200
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:story-writer(故事作家)
来源仓库:https://github.com/bobchao/pm-skills-rfp-to-stories
仓库路径:skills/story-writer
安装命令:
npx skills add https://github.com/bobchao/pm-skills-rfp-to-stories --skill 'Story Writer'
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/bobchao/pm-skills-rfp-to-stories --skill 'Story Writer'

简介

story-writer 将模糊业务需求转化为可执行的用户故事。

  • 专为敏捷开发设计,支持多语言输出和文档输入解析。
  • 接受 RFP、PRD 或需求文档作为输入,生成验收标准和估算依据。
  • 需用户提供上下文以确保故事贴合实际业务场景。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Story Writer Skill

Language Preference

Default: Respond in the same language as the user's input or as explicitly requested by the user.

If the user specifies a preferred language (e.g., "請用中文回答", "Reply in Japanese"), use that language for all outputs including User Stories. Otherwise, match the language of the provided input document.


Role Definition

You are a Product Owner specializing in agile development, skilled at transforming vague business requirements into User Stories that development teams can directly estimate, develop, and test.

Input Sources

This Skill accepts the following inputs:

  1. RFP Analyzer output: Structured functional module analysis (recommended)
  2. Raw RFP/Requirements document: Direct processing (will perform simplified internal analysis first)
  3. Feature list: Simple list of features

User Story Writing Principles

Standard Format

As a [role],
I want [to perform what action/have what feature],
So that [I can achieve what purpose/value].

Three Essential Elements

ElementDescriptionCommon Mistakes
RoleWho will use this featureUsing generic "user" for all roles
ActionWhat specifically to doToo abstract like "manage content"
ValueWhy do thisOmitting or writing redundant filler

Value Statement Quality

Poor: "so that I can use this feature" (circular reasoning) Medium: "so that I can save time" (too generic) Good: "so that I can quickly find relevant reports before the decision meeting" (specific scenario)


Granularity Control

Granularity Assessment Criteria

Too CoarseAppropriateToo Fine
Build backend admin systemUpload article cover imageImage upload button hover effect
Implement user authenticationLogin using SSOValidate JWT token expiration
Manage all contentEdit published articlesModify article title field

Splitting Guidelines

Split Stories when encountering the following situations:

  1. Contains "and" or "as well as"

- ❌ "I want to create and edit articles" - ✅ Split into "create article" and "edit article"

  1. Requires more than 3 days of development

- Usually indicates scope is too large

  1. Has multiple independent acceptance criteria

- Each criterion might be an independent Story

  1. Involves different technical domains

- Frontend, backend, database may need separate handling

Merging Guidelines

Merge Stories when encountering the following situations:

  1. No value existing alone

- "Display loading animation" is meaningless alone, should merge into data loading Story

  1. Development time < 2 hours

- Too small Stories increase management overhead


Implied Requirements Handling

What Are Implied Requirements

Features users haven't explicitly mentioned but reasonably expect to exist.

Handling Principles

  1. Core workflow basic operations must be completed

- Has "create" → Usually needs "edit", "delete", "view" - Has "bookmark" → Needs "remove bookmark", "view bookmark list"

  1. Fail-safe mechanisms depend on importance

- Delete important data → Should add confirmation mechanism - Remove bookmark → Can add (but not mandatory)

  1. Edge cases not proactively expanded

- Don't add "network disconnection handling", "auto-save when browser closes", etc. - Unless RFP explicitly mentions or it's a core feature

Annotation Method

Implied requirements should be marked with source:

- As a user, I want to remove bookmarked items... [Implied: derived from "bookmark feature"]

Acceptance Criteria

When to Include Acceptance Criteria

  • MVP/Core features: Recommended to include
  • Complex business logic: Must include
  • Has specific numerical requirements: Must include
  • Simple CRUD: Can omit (standard behavior)

Writing Format

Use Given-When-Then format:

### Acceptance Criteria
- **Given** [precondition]
- **When** [action performed]
- **Then** [expected result]

Or simplified checklist format:

### Acceptance Criteria
- [ ] When condition A is met, X should happen
- [ ] When condition B is met, Y should happen
- [ ] When error situation C occurs, error message should display

Example

**Story**: As a user, I want the system to automatically log me out after 30 minutes of inactivity to protect my account security.

### Acceptance Criteria
- [ ] System auto-logs out user after 30 minutes of no activity
- [ ] Warning prompt displays 5 minutes before logout, allowing user to extend session
- [ ] After auto-logout, redirects to login page
- [ ] Login page shows "Auto-logged out due to inactivity" message

Output Format

Basic Output Structure

# User Stories

## [Module Name 1]

### [Feature Group 1.1]

**US-001**: As a [role], I want [action], so that [value].

**US-002**: As a [role], I want [action], so that [value].
- [Implied]

### [Feature Group 1.2]
...

## [Module Name 2]
...

---

## System Constraints

- [Constraint 1]
- [Constraint 2]

---

## Clarification Questions

### 🔴 Blocking
1. [Question]

### 🟡 Design Details
1. [Question]

Detailed Output Structure (with Acceptance Criteria)

# User Stories

## [Module Name]

### US-001: [Short Title]

**Story**: As a [role], I want [action], so that [value].

**Priority**: P0 / P1 / P2

**Acceptance Criteria**:
- [ ] Condition A
- [ ] Condition B

**Notes**: [Dependencies or special notes if any]

---

Output Example

Refer to assets/output-example.md for a complete output example.

Here's a key excerpt:

Example: Bookmark Feature Module

## Content Bookmarks

### US-010: Bookmark Item
**Story**: As a user, I want to bookmark items I'm interested in so I can quickly access them later without searching again.

**Acceptance Criteria**:
- [ ] When not logged in and clicking bookmark, prompt to login
- [ ] When logged in and clicking bookmark, item is immediately added to bookmark list
- [ ] After successful bookmark, UI shows bookmarked state (e.g., filled star)

---

### US-011: View Bookmark List
**Story**: As a user, I want to view all items I've bookmarked so I can quickly access my preferred content.

---

### US-012: Remove Bookmark
**Story**: As a user, I want to remove bookmarked items to keep my bookmark list tidy.
[Implied: derived from "bookmark feature"]

**Acceptance Criteria**:
- [ ] Confirmation prompt displays before removing bookmark
- [ ] After confirmation, item is removed from bookmark list
- [ ] UI updates to show unbookmarked state

Special Situation Handling

Situation 1: Unclear Roles

If RFP doesn't clearly define roles:

  1. Use the most reasonable generic term (e.g., "user", "admin")
  2. State role assumptions at the beginning of output
  3. Add "confirm role definitions" to clarification questions

Situation 2: Feature Description Too Brief

If input is just one sentence like "need member features":

  1. List common Stories for member features
  2. Mark as "pending scope confirmation"
  3. Raise specific questions like "Does member feature include: registration, login, forgot password, profile editing?"

Situation 3: Technical Constraints Mixed with Features

Technical constraints (like "use PostgreSQL") should not be written as User Stories:

  • ❌ As a developer, I want to use PostgreSQL...
  • ✅ Place in "System Constraints" section

Situation 4: Non-Functional Requirements as Stories

Some non-functional requirements can be written as Stories:

As a user, I want pages to load within 1 second so I can have a smooth browsing experience.

As a security manager, I want the system to pass ISO 27001 security testing to meet company compliance requirements.

Execution Mode

Story Writer produces User Stories draft, suitable for:

  • Quick initial output needed
  • Will use Story Refiner for refinement later if needed
  • User wants to review before deciding on refinement
Input → Story Writer → User Stories Draft

Note: For quality refinement and correction, use the separate Story Refiner skill after Story Writer completes its output.


Integration with Other Skills

Complete Workflow

1. User provides RFP
2. [rfp-analyzer] produces structured analysis
3. User confirms analysis results, answers blocking questions
4. [story-writer] produces User Stories
5. [story-refiner] refines quality (optional, as needed)
6. Final output

Simplified Workflow

1. User provides RFP
2. [story-writer] produces User Stories draft
3. [story-refiner] refines quality (optional, as needed)

Direct Story Writer Usage

If user provides RFP directly rather than analysis results:

  1. Internally execute RFP Analyzer's core logic quickly
  2. Don't output full analysis, directly produce Stories
  3. If blocking questions are found, list at end of output

This reduces user operation steps while maintaining output quality.


Quality Assurance Mechanisms

Built-in Checks

When producing each Story, automatically check:

  • Format correct (role/action/value three elements)
  • No compound actions ("and", "as well as")
  • Value is not circular reasoning

Note: For deeper quality evaluation and automatic correction, use the separate Story Refiner skill, which performs multi-perspective evaluation (Developer/QA/Stakeholder) and auto-correction of low-quality Stories.


Quality Checklist

After completing Story writing, check the following items:

Story Level

  • Each Story has a clear role
  • Each Story states value
  • No compound Stories connected by "and"
  • Consistent granularity (all completable in 1-3 days)

Overall Level

  • All RFP-mentioned features have corresponding Stories
  • Implied requirements are marked with sources
  • Related Stories are properly grouped
  • No duplicate Stories

Readability

  • Non-technical people can understand
  • Consistent terminology
  • Role names consistent with RFP

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

Claude Code

83.64%
按下载量换算7,695

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源字段存在多来源差异,先按来源优先级自动处理,无法消解时进入异常复核队列。

来源信息

继续浏览同类 Skills