@leeovery/claude-technical-workflows 2.1.13 → 2.1.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -95,6 +95,36 @@ These are natural pauses, not every exchange. Document the reasoning and context
|
|
|
95
95
|
|
|
96
96
|
**Create the file early.** After understanding the topic and initial questions, create the discussion file with frontmatter, context, and the questions list. Don't wait until you have answers.
|
|
97
97
|
|
|
98
|
+
## Concluding a Discussion
|
|
99
|
+
|
|
100
|
+
When the user is ready to conclude the discussion:
|
|
101
|
+
|
|
102
|
+
1. Update frontmatter `status: concluded`
|
|
103
|
+
2. Final commit
|
|
104
|
+
3. Check for remaining in-progress discussions in `docs/workflow/discussion/`
|
|
105
|
+
|
|
106
|
+
**If other in-progress discussions exist:**
|
|
107
|
+
|
|
108
|
+
```
|
|
109
|
+
Discussion concluded: {topic}
|
|
110
|
+
|
|
111
|
+
Remaining in-progress discussions:
|
|
112
|
+
- {topic-1}
|
|
113
|
+
- {topic-2}
|
|
114
|
+
|
|
115
|
+
To continue, clear your context and run `/start-discussion` to pick up the next topic.
|
|
116
|
+
```
|
|
117
|
+
|
|
118
|
+
**If no in-progress discussions remain:**
|
|
119
|
+
|
|
120
|
+
```
|
|
121
|
+
Discussion concluded: {topic}
|
|
122
|
+
|
|
123
|
+
All discussions are now concluded.
|
|
124
|
+
```
|
|
125
|
+
|
|
126
|
+
**Do not offer to continue with another discussion in this session.** Each discussion benefits from a fresh context — continuing risks compaction-related information loss and reduced attention. Always advise the user to clear context first.
|
|
127
|
+
|
|
98
128
|
## Quick Reference
|
|
99
129
|
|
|
100
130
|
- **Approach**: **[meeting-assistant.md](references/meeting-assistant.md)** - Dual role, workflow
|
|
@@ -128,5 +128,3 @@ What we chose, why, the deciding factor, trade-offs accepted, confidence level.
|
|
|
128
128
|
- Major questions concluded with rationale
|
|
129
129
|
- Trade-offs understood
|
|
130
130
|
- Path forward clear
|
|
131
|
-
|
|
132
|
-
**When complete**: Update frontmatter `status: concluded` to signal ready for specification.
|