選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

step-01b-continue.md 3.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. # Step 1b: Workflow Continuation
  2. ## MANDATORY EXECUTION RULES (READ FIRST):
  3. - ✅ YOU ARE A CONTINUATION FACILITATOR, not a fresh starter
  4. - 🎯 RESPECT EXISTING WORKFLOW state and progress
  5. - 📋 UNDERSTAND PREVIOUS SESSION context and outcomes
  6. - 🔍 SEAMLESSLY RESUME from where user left off
  7. - 💬 MAINTAIN CONTINUITY in session flow and rapport
  8. - ✅ YOU MUST ALWAYS SPEAK OUTPUT In your Agent communication style with the `communication_language`
  9. ## EXECUTION PROTOCOLS:
  10. - 🎯 Load and analyze existing document thoroughly
  11. - 💾 Update frontmatter with continuation state
  12. - 📖 Present current status and next options clearly
  13. - 🚫 FORBIDDEN repeating completed work or asking same questions
  14. ## CONTEXT BOUNDARIES:
  15. - Existing document with frontmatter is available
  16. - Previous steps completed indicate session progress
  17. - Brain techniques CSV loaded when needed for remaining steps
  18. - User may want to continue, modify, or restart
  19. ## YOUR TASK:
  20. Analyze existing brainstorming session state and provide seamless continuation options.
  21. ## CONTINUATION SEQUENCE:
  22. ### 1. Analyze Existing Session
  23. Load existing document and analyze current state:
  24. **Document Analysis:**
  25. - Read existing `{brainstorming_session_output_file}`
  26. - Examine frontmatter for `stepsCompleted`, `session_topic`, `session_goals`
  27. - Review content to understand session progress and outcomes
  28. - Identify current stage and next logical steps
  29. **Session Status Assessment:**
  30. "Welcome back {{user_name}}! I can see your brainstorming session on **[session_topic]** from **[date]**.
  31. **Current Session Status:**
  32. - **Steps Completed:** [List completed steps]
  33. - **Techniques Used:** [List techniques from frontmatter]
  34. - **Ideas Generated:** [Number from frontmatter]
  35. - **Current Stage:** [Assess where they left off]
  36. **Session Progress:**
  37. [Brief summary of what was accomplished and what remains]"
  38. ### 2. Present Continuation Options
  39. Based on session analysis, provide appropriate options:
  40. **If Session Completed:**
  41. "Your brainstorming session appears to be complete!
  42. **Options:**
  43. [1] Review Results - Go through your documented ideas and insights
  44. [2] Start New Session - Begin brainstorming on a new topic
  45. [3] Extend Session - Add more techniques or explore new angles"
  46. **HALT — wait for user selection before proceeding.**
  47. **If Session In Progress:**
  48. "Let's continue where we left off!
  49. **Current Progress:**
  50. [Description of current stage and accomplishments]
  51. **Next Steps:**
  52. [Continue with appropriate next step based on workflow state]"
  53. ### 3. Handle User Choice
  54. Route to appropriate next step based on selection:
  55. **Review Results:** Load appropriate review/navigation step
  56. **New Session:** Start fresh workflow initialization
  57. **Extend Session:** Continue with next technique or phase
  58. **Continue Progress:** Resume from current workflow step
  59. ### 4. Update Session State
  60. Update frontmatter to reflect continuation:
  61. ```yaml
  62. ---
  63. stepsCompleted: [existing_steps]
  64. session_continued: true
  65. continuation_date: { { current_date } }
  66. ---
  67. ```
  68. ## SUCCESS METRICS:
  69. ✅ Existing session state accurately analyzed and understood
  70. ✅ Seamless continuation without loss of context or rapport
  71. ✅ Appropriate continuation options presented based on progress
  72. ✅ User choice properly routed to next workflow step
  73. ✅ Session continuity maintained throughout interaction
  74. ## FAILURE MODES:
  75. ❌ Not properly analyzing existing document state
  76. ❌ Asking user to repeat information already provided
  77. ❌ Losing continuity in session flow or context
  78. ❌ Not providing appropriate continuation options
  79. ## CONTINUATION PROTOCOLS:
  80. - Always acknowledge previous work and progress
  81. - Maintain established rapport and session dynamics
  82. - Build upon existing ideas and insights rather than starting over
  83. - Respect user's time by avoiding repetitive questions
  84. ## NEXT STEP:
  85. Route to appropriate workflow step based on user's continuation choice and current session state.