Skip to content

Instantly share code, notes, and snippets.

@rdmueller
Forked from capsulecorplab/.gitignore
Created January 5, 2021 20:57
Show Gist options
  • Save rdmueller/5909e58a6f3ddd61f314ccb33d83b4ef to your computer and use it in GitHub Desktop.
Save rdmueller/5909e58a6f3ddd61f314ccb33d83b4ef to your computer and use it in GitHub Desktop.
plantuml template for specifying stakeholder concerns & user stories
# Asciidoctor
.asciidoctor/

Example Stakeholder Concern & User Story in PlantUML

userstory
@startuml
left to right direction
!$stakeholder = "<stakeholder>"
!$painpoint = "<pain point>"
!$actor = "<user>"
!$behavior = "<behavior>"
!$rationale = "<rationale>"
object stakeholderconcern1 {
As a $stakeholder
I experience $painpoint
}
object userstory1 {
As a $actor
I want to $behavior
so that I can $rationale
}
note bottom of userstory1 : <b>Example:</b> $behavior using some standard
stakeholderconcern1 <.. userstory1 : <<trace>>
@enduml
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment