Can someone help me write this story

So I have written the following stories but they run only the initial time after which they stop running. I am using the same intents multiple time but I don’t think that’s the problem. Can someone help me rectify the issue. Thanks

  • story: happy path

    steps:

    • intent: greet

    • action: utter_greet

    • intent: mood_great

    • action: utter_happy

  • story: Watermark Initial

    steps:

    • intent: watermark

    • action: utter_watermark_initial

    • checkpoint: watermarkcheck1

  • story: Watermark 1st Deny

    steps:

    • checkpoint: watermarkcheck1

    • intent: deny

    • action: utter_watermark_result1

    • checkpoint: feedback

  • story: Watermark 1st Yes

    steps:

    • checkpoint: watermarkcheck1

    • intent: affirm

    • action: utter_watermark_q1

    • checkpoint: watermarkcheck2

  • story: Watermark 2nd Yes

    steps:

    • checkpoint: watermarkcheck2

    • intent: affirm

    • action: utter_watermark_result2

    • checkpoint: feedback

  • story: Watermark 2nd No

    steps:

    • checkpoint: watermarkcheck2

    • intent: deny

    • action: utter_watermark_result3

    • checkpoint: feedback

  • story: feedback

    steps:

    • checkpoint: feedback

    • action: utter_final_resolve

    • checkpoint: feedback1

  • story: feedbackposi

    steps:

    • checkpoint: feedback1

    • intent: affirm

    • action: utter_resolved

  • story: feedbacknegative

    steps:

    • checkpoint: feedback1

    • intent: deny

    • action: utter_notresolved

You should stop using checkpoints which aren’t recommended anymore. Instead, change these to rules and use the wait_for_user_input: false option in the place where you have a checkpoint at the end.

For example:

rule: Watermark Initial
steps:
  intent: watermark
  action: utter_watermark_initial
  wait_for_user_input: false

rule: Watermark 1st Deny
steps:
  action: utter_watermark_initial
  intent: deny
  action: utter_watermark_result1

In future posts, please use Markdown for your examples.

I wanted to implement it into stories rather than rules. Is there any way to do that? I am not able to understand your approach. I would like an example if possible. Thanks for the help

I have changed the stories.