@we-scrum/cli 6.9.2 → 6.9.3
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/README.md +2 -2
- package/dist/cli.js +107 -51
- package/package.json +4 -4
- package/src/cli.ts +2 -0
- package/src/commands/change-thread.ts +53 -0
- package/src/commands/index.ts +1 -0
- package/src/commands/task.ts +6 -6
- package/src/helpers/we-scrum.helper.ts +92 -22
- package/templates/get-next-task.hbs +21 -10
- package/templates/review-analysis-skill.hbs +36 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@we-scrum/cli",
|
|
3
|
-
"version": "6.9.
|
|
3
|
+
"version": "6.9.3",
|
|
4
4
|
"description": "Cli tool for we-scrum application",
|
|
5
5
|
"main": "dist/cli.js",
|
|
6
6
|
"bin": {
|
|
@@ -37,12 +37,12 @@
|
|
|
37
37
|
"@types/node": "^24.13.3",
|
|
38
38
|
"tsup": "^8.5.1",
|
|
39
39
|
"typescript": "^6.0.3",
|
|
40
|
+
"@my-devkit/cli": "2.1.0",
|
|
41
|
+
"@we-scrum/enums": "1.0.0",
|
|
40
42
|
"@we-scrum/commands": "1.0.0",
|
|
41
43
|
"@we-scrum/models": "1.0.0",
|
|
42
44
|
"@my-devkit/core": "1.0.0",
|
|
43
|
-
"@we-scrum/utils": "1.0.0"
|
|
44
|
-
"@we-scrum/enums": "1.0.0",
|
|
45
|
-
"@my-devkit/cli": "2.1.0"
|
|
45
|
+
"@we-scrum/utils": "1.0.0"
|
|
46
46
|
},
|
|
47
47
|
"scripts": {
|
|
48
48
|
"start": "node dist/cli.js",
|
package/src/cli.ts
CHANGED
|
@@ -4,6 +4,7 @@ import { Command } from 'commander';
|
|
|
4
4
|
import { version } from '../package.json';
|
|
5
5
|
import {
|
|
6
6
|
registerAuthCommands,
|
|
7
|
+
registerChangeThreadCommands,
|
|
7
8
|
registerIterationCommands,
|
|
8
9
|
registerPolicyCommands,
|
|
9
10
|
registerProjectCommands,
|
|
@@ -23,5 +24,6 @@ registerStoryCommands(program);
|
|
|
23
24
|
registerTaskCommands(program);
|
|
24
25
|
registerPolicyCommands(program);
|
|
25
26
|
registerIterationCommands(program);
|
|
27
|
+
registerChangeThreadCommands(program);
|
|
26
28
|
|
|
27
29
|
program.parse(process.argv);
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
import { WeScrumHelper } from '@helpers';
|
|
2
|
+
import { Logger } from '@my-devkit/core';
|
|
3
|
+
import { runProjectCommand } from '@utils';
|
|
4
|
+
import { ChangeThreadStatus } from '@we-scrum/enums';
|
|
5
|
+
import { Command, Option } from 'commander';
|
|
6
|
+
|
|
7
|
+
export function registerChangeThreadCommands(program: Command): void {
|
|
8
|
+
program
|
|
9
|
+
.command('get-change-threads')
|
|
10
|
+
.description('Get the open change threads for a change')
|
|
11
|
+
.requiredOption('-c, --changeId <id>', 'Unique identifier of the change')
|
|
12
|
+
.action(
|
|
13
|
+
runProjectCommand<{ changeId: string }>(async (options) => {
|
|
14
|
+
return WeScrumHelper.getOpenChangeThreads(options.changeId);
|
|
15
|
+
}),
|
|
16
|
+
);
|
|
17
|
+
|
|
18
|
+
program
|
|
19
|
+
.command('create-change-thread')
|
|
20
|
+
.description('Open a new change thread with a first comment')
|
|
21
|
+
.requiredOption('-c, --changeId <id>', 'Unique identifier of the change')
|
|
22
|
+
.requiredOption('-m, --comment <comment>', 'Comment body (markdown supported)')
|
|
23
|
+
.action(
|
|
24
|
+
runProjectCommand<{ changeId: string; comment: string }>(async (options) => {
|
|
25
|
+
const changeThreadId = await WeScrumHelper.createChangeThread(options.changeId, options.comment);
|
|
26
|
+
Logger.info(`Change thread "${changeThreadId}" created successfully.`);
|
|
27
|
+
}),
|
|
28
|
+
);
|
|
29
|
+
|
|
30
|
+
program
|
|
31
|
+
.command('update-change-thread-status')
|
|
32
|
+
.description('Update the status of a change thread')
|
|
33
|
+
.requiredOption('-t, --changeThreadId <id>', 'Unique identifier of the change thread')
|
|
34
|
+
.addOption(new Option('-s, --status <status>', 'New status').choices(ChangeThreadStatus.helper.members).makeOptionMandatory())
|
|
35
|
+
.action(
|
|
36
|
+
runProjectCommand<{ changeThreadId: string; status: ChangeThreadStatus }>(async (options) => {
|
|
37
|
+
await WeScrumHelper.updateChangeThreadStatus(options.changeThreadId, options.status);
|
|
38
|
+
Logger.info('Change thread status updated successfully.');
|
|
39
|
+
}),
|
|
40
|
+
);
|
|
41
|
+
|
|
42
|
+
program
|
|
43
|
+
.command('add-comment-to-change-thread')
|
|
44
|
+
.description('Reply to an existing change thread')
|
|
45
|
+
.requiredOption('-t, --changeThreadId <id>', 'Unique identifier of the change thread')
|
|
46
|
+
.requiredOption('-m, --comment <comment>', 'Comment body (markdown supported)')
|
|
47
|
+
.action(
|
|
48
|
+
runProjectCommand<{ changeThreadId: string; comment: string }>(async (options) => {
|
|
49
|
+
await WeScrumHelper.addCommentToChangeThread(options.changeThreadId, options.comment);
|
|
50
|
+
Logger.info('Comment added successfully.');
|
|
51
|
+
}),
|
|
52
|
+
);
|
|
53
|
+
}
|
package/src/commands/index.ts
CHANGED
package/src/commands/task.ts
CHANGED
|
@@ -8,10 +8,10 @@ export function registerTaskCommands(program: Command): void {
|
|
|
8
8
|
.command('start-task')
|
|
9
9
|
.description('Mark a specific task as in progress')
|
|
10
10
|
.requiredOption('-i, --identificationNumber <id>', 'Story identification number')
|
|
11
|
-
.requiredOption('-
|
|
11
|
+
.requiredOption('-c, --changeId <id>', 'Unique identifier of the change to act on')
|
|
12
12
|
.action(
|
|
13
|
-
runProjectCommand<{ identificationNumber: string;
|
|
14
|
-
await WeScrumHelper.startTask(options.identificationNumber, options.
|
|
13
|
+
runProjectCommand<{ identificationNumber: string; changeId: string }>(async (options) => {
|
|
14
|
+
await WeScrumHelper.startTask(options.identificationNumber, options.changeId);
|
|
15
15
|
Logger.info('Task started successfully. You can now make changes to the codebase.');
|
|
16
16
|
}),
|
|
17
17
|
);
|
|
@@ -20,10 +20,10 @@ export function registerTaskCommands(program: Command): void {
|
|
|
20
20
|
.command('complete-task')
|
|
21
21
|
.description('Mark the current in-progress task as done')
|
|
22
22
|
.requiredOption('-i, --identificationNumber <id>', 'Story identification number')
|
|
23
|
-
.requiredOption('-
|
|
23
|
+
.requiredOption('-c, --changeId <id>', 'Unique identifier of the change to act on')
|
|
24
24
|
.action(
|
|
25
|
-
runProjectCommand<{ identificationNumber: string;
|
|
26
|
-
await WeScrumHelper.completeTask(options.identificationNumber, options.
|
|
25
|
+
runProjectCommand<{ identificationNumber: string; changeId: string }>(async (options) => {
|
|
26
|
+
await WeScrumHelper.completeTask(options.identificationNumber, options.changeId);
|
|
27
27
|
Logger.info('Task completed successfully.');
|
|
28
28
|
}),
|
|
29
29
|
);
|
|
@@ -1,5 +1,7 @@
|
|
|
1
|
-
import { _sortBy, assert, Command, serialize, TypeHelper } from '@my-devkit/core';
|
|
1
|
+
import { _sortBy, assert, Command, ContributionOrigin, serialize, TypeHelper } from '@my-devkit/core';
|
|
2
2
|
import {
|
|
3
|
+
AddCommentToChangeThreadCommand,
|
|
4
|
+
CreateChangeThreadCommand,
|
|
3
5
|
MarkEnumerationChangeAsDoneCommand,
|
|
4
6
|
MarkObjectChangeAsDoneCommand,
|
|
5
7
|
MarkRelationChangeAsDoneCommand,
|
|
@@ -11,11 +13,13 @@ import {
|
|
|
11
13
|
TakeRelationChangeCommand,
|
|
12
14
|
TakeRouteChangeCommand,
|
|
13
15
|
TakeTaskCommand,
|
|
16
|
+
UpdateChangeThreadStatusCommand,
|
|
14
17
|
UpdateIterationCommand,
|
|
15
18
|
} from '@we-scrum/commands';
|
|
16
|
-
import { ContentType, ProgressStatus } from '@we-scrum/enums';
|
|
19
|
+
import { ChangeThreadStatus, ContentType, ProgressStatus } from '@we-scrum/enums';
|
|
17
20
|
import {
|
|
18
21
|
DevelopmentPolicyModel,
|
|
22
|
+
ProjectChangeThreadModel,
|
|
19
23
|
ProjectIterationModel,
|
|
20
24
|
ProjectStoryModel,
|
|
21
25
|
ProjectStorySectionModel,
|
|
@@ -63,6 +67,8 @@ export class WeScrumHelper {
|
|
|
63
67
|
});
|
|
64
68
|
}
|
|
65
69
|
|
|
70
|
+
this.appendOpenThreadsHint(nextChange);
|
|
71
|
+
|
|
66
72
|
const analysisChange = StorySectionHelper.mapSingleChange(nextChange);
|
|
67
73
|
const isTodo = nextChange.progress.status === ProgressStatus.ToDo;
|
|
68
74
|
const developmentPolicy = await this.getChangeDevelopmentPolicy(nextChange);
|
|
@@ -74,7 +80,7 @@ export class WeScrumHelper {
|
|
|
74
80
|
unitTestsPath: developmentPolicy?.areUnitTestsMandatory ? unitTestsPath : null,
|
|
75
81
|
isTodo,
|
|
76
82
|
identificationNumber,
|
|
77
|
-
|
|
83
|
+
changeId: analysisChange.id,
|
|
78
84
|
});
|
|
79
85
|
}
|
|
80
86
|
|
|
@@ -85,11 +91,7 @@ export class WeScrumHelper {
|
|
|
85
91
|
|
|
86
92
|
const sections = await this.getStorySections(story.storyId);
|
|
87
93
|
|
|
88
|
-
|
|
89
|
-
.flatMap((s) => [...s.enumerationChanges, ...s.objectChanges, ...s.routeChanges, ...s.relationChanges, ...s.tasks])
|
|
90
|
-
.find((t) => t.progress?.status !== ProgressStatus.Done);
|
|
91
|
-
|
|
92
|
-
return task;
|
|
94
|
+
return this.getAllChanges(sections).find((t) => t.progress?.status !== ProgressStatus.Done);
|
|
93
95
|
}
|
|
94
96
|
|
|
95
97
|
public static async getChangeById(identificationNumber: string, changeId: string) {
|
|
@@ -98,23 +100,14 @@ export class WeScrumHelper {
|
|
|
98
100
|
|
|
99
101
|
const sections = await this.getStorySections(story.storyId);
|
|
100
102
|
|
|
101
|
-
const change =
|
|
102
|
-
.flatMap((s) => [...s.enumerationChanges, ...s.objectChanges, ...s.routeChanges, ...s.relationChanges, ...s.tasks])
|
|
103
|
-
.find((t) => {
|
|
104
|
-
if (t instanceof ProjectStorySectionModelEnumerationChange) return t.enumerationChangeId === changeId;
|
|
105
|
-
if (t instanceof ProjectStorySectionModelObjectChange) return t.objectChangeId === changeId;
|
|
106
|
-
if (t instanceof ProjectStorySectionModelRouteChange) return t.routeChangeId === changeId;
|
|
107
|
-
if (t instanceof ProjectStorySectionModelRelationChange) return t.relationChangeId === changeId;
|
|
108
|
-
if (t instanceof ProjectStorySectionModelTask) return t.taskId === changeId;
|
|
109
|
-
return false;
|
|
110
|
-
});
|
|
103
|
+
const change = this.getAllChanges(sections).find((t) => this.getChangeIdentifier(t) === changeId);
|
|
111
104
|
|
|
112
105
|
assert(!!change, `Change "${changeId}" not found in story "${identificationNumber}".`);
|
|
113
106
|
return change;
|
|
114
107
|
}
|
|
115
108
|
|
|
116
|
-
public static async startTask(identificationNumber: string,
|
|
117
|
-
const change = await this.getChangeById(identificationNumber,
|
|
109
|
+
public static async startTask(identificationNumber: string, changeId: string): Promise<void> {
|
|
110
|
+
const change = await this.getChangeById(identificationNumber, changeId);
|
|
118
111
|
|
|
119
112
|
assert(change.progress.status === ProgressStatus.ToDo, `Task is not in ToDo status (current status: ${change.progress.status}).`);
|
|
120
113
|
|
|
@@ -143,8 +136,8 @@ export class WeScrumHelper {
|
|
|
143
136
|
}
|
|
144
137
|
}
|
|
145
138
|
|
|
146
|
-
public static async completeTask(identificationNumber: string,
|
|
147
|
-
const change = await this.getChangeById(identificationNumber,
|
|
139
|
+
public static async completeTask(identificationNumber: string, changeId: string): Promise<void> {
|
|
140
|
+
const change = await this.getChangeById(identificationNumber, changeId);
|
|
148
141
|
|
|
149
142
|
assert(change.progress.status === ProgressStatus.Doing, `Task is not in progress (current status: ${change.progress.status}).`);
|
|
150
143
|
|
|
@@ -237,11 +230,87 @@ export class WeScrumHelper {
|
|
|
237
230
|
assert(!!story, `Story "${identificationNumber}" not found in the active project.`);
|
|
238
231
|
|
|
239
232
|
const sections = await this.getStorySections(story.storyId);
|
|
233
|
+
this.getAllChanges(sections).forEach((change) => this.appendOpenThreadsHint(change));
|
|
234
|
+
|
|
240
235
|
const ast = StorySectionHelper.mapSectionsToAnalysisAst(sections);
|
|
241
236
|
|
|
242
237
|
return AnalysisDsl.stringify(ast);
|
|
243
238
|
}
|
|
244
239
|
|
|
240
|
+
public static async getOpenChangeThreads(changeId: string): Promise<string> {
|
|
241
|
+
const threads = await FirebaseHelper.getCollection<ProjectChangeThreadModel>(`/projects/${this.projectId}/change-threads`, {
|
|
242
|
+
where: [
|
|
243
|
+
['changeId', '==', changeId],
|
|
244
|
+
['status', '==', ChangeThreadStatus.Open],
|
|
245
|
+
],
|
|
246
|
+
});
|
|
247
|
+
|
|
248
|
+
if (threads.length === 0) {
|
|
249
|
+
return `No open threads for change "${changeId}".`;
|
|
250
|
+
}
|
|
251
|
+
|
|
252
|
+
return threads.map((thread) => this.formatChangeThread(thread)).join('\n\n---\n\n');
|
|
253
|
+
}
|
|
254
|
+
|
|
255
|
+
public static async createChangeThread(changeId: string, comment: string): Promise<string> {
|
|
256
|
+
return this.post(
|
|
257
|
+
'project-management/create-change-thread',
|
|
258
|
+
TypeHelper.transform(CreateChangeThreadCommand, { changeId, commentBody: comment }),
|
|
259
|
+
);
|
|
260
|
+
}
|
|
261
|
+
|
|
262
|
+
public static async addCommentToChangeThread(changeThreadId: string, comment: string): Promise<void> {
|
|
263
|
+
await this.post(
|
|
264
|
+
'project-management/add-comment-to-change-thread',
|
|
265
|
+
TypeHelper.transform(AddCommentToChangeThreadCommand, { changeThreadId, commentBody: comment }),
|
|
266
|
+
);
|
|
267
|
+
}
|
|
268
|
+
|
|
269
|
+
public static async updateChangeThreadStatus(changeThreadId: string, status: ChangeThreadStatus): Promise<void> {
|
|
270
|
+
await this.post(
|
|
271
|
+
'project-management/update-change-thread-status',
|
|
272
|
+
TypeHelper.transform(UpdateChangeThreadStatusCommand, { changeThreadId, status }),
|
|
273
|
+
);
|
|
274
|
+
}
|
|
275
|
+
|
|
276
|
+
private static formatChangeThread(thread: ProjectChangeThreadModel): string {
|
|
277
|
+
const comments = thread.comments
|
|
278
|
+
.map((comment) => {
|
|
279
|
+
const author = comment.contributionOrigin === ContributionOrigin.Cli ? 'Claude Code' : comment.createdByUserFullName;
|
|
280
|
+
return `**${author}** (${comment.createdAt.toISOString()}):\n${comment.body}`;
|
|
281
|
+
})
|
|
282
|
+
.join('\n\n');
|
|
283
|
+
|
|
284
|
+
return `## Thread ${thread.changeThreadId} (${thread.status})\n\n${comments}`;
|
|
285
|
+
}
|
|
286
|
+
|
|
287
|
+
private static getAllChanges(sections: ProjectStorySectionModel[]): DevelopmentPolicyHelper.Change[] {
|
|
288
|
+
return _sortBy(sections, (s) => s.name).flatMap((s) => [
|
|
289
|
+
...s.enumerationChanges,
|
|
290
|
+
...s.objectChanges,
|
|
291
|
+
...s.routeChanges,
|
|
292
|
+
...s.relationChanges,
|
|
293
|
+
...s.tasks,
|
|
294
|
+
]);
|
|
295
|
+
}
|
|
296
|
+
|
|
297
|
+
private static getChangeIdentifier(change: DevelopmentPolicyHelper.Change): string {
|
|
298
|
+
if (change instanceof ProjectStorySectionModelEnumerationChange) return change.enumerationChangeId;
|
|
299
|
+
if (change instanceof ProjectStorySectionModelObjectChange) return change.objectChangeId;
|
|
300
|
+
if (change instanceof ProjectStorySectionModelRouteChange) return change.routeChangeId;
|
|
301
|
+
if (change instanceof ProjectStorySectionModelRelationChange) return change.relationChangeId;
|
|
302
|
+
return change.taskId;
|
|
303
|
+
}
|
|
304
|
+
|
|
305
|
+
private static appendOpenThreadsHint(change: DevelopmentPolicyHelper.Change): void {
|
|
306
|
+
const openThreadCount = change.threads.filter((t) => t.status === ChangeThreadStatus.Open).length;
|
|
307
|
+
if (openThreadCount === 0) return;
|
|
308
|
+
|
|
309
|
+
const changeId = this.getChangeIdentifier(change);
|
|
310
|
+
const hint = `${openThreadCount} open ${openThreadCount === 1 ? 'thread' : 'threads'} on this change — run \`we-scrum get-change-threads --changeId "${changeId}"\` to view them.`;
|
|
311
|
+
change.description = change.description ? `${change.description}\n\n${hint}` : hint;
|
|
312
|
+
}
|
|
313
|
+
|
|
245
314
|
private static async findStoryByIterationNumber(identificationNumber: string) {
|
|
246
315
|
return FirebaseHelper.findDocument<ProjectStoryModel>(`/projects/${this.projectId}/stories`, [
|
|
247
316
|
['identificationNumber', '==', identificationNumber],
|
|
@@ -287,6 +356,7 @@ export class WeScrumHelper {
|
|
|
287
356
|
headers: {
|
|
288
357
|
'Content-Type': 'application/json',
|
|
289
358
|
Authorization: `Bearer ${userIdToken}`,
|
|
359
|
+
'X-Contribution-Origin': ContributionOrigin.Cli,
|
|
290
360
|
},
|
|
291
361
|
signal: AbortSignal.timeout(60 * 1000),
|
|
292
362
|
});
|
|
@@ -12,14 +12,25 @@
|
|
|
12
12
|
|
|
13
13
|
## Next steps
|
|
14
14
|
{{#if isTodo}}
|
|
15
|
-
1. Run `we-scrum start-task --identificationNumber "{{identificationNumber}}" --
|
|
16
|
-
2. Implement the task described above.
|
|
17
|
-
3. Commit your changes.
|
|
18
|
-
4. Run `we-scrum complete-task --identificationNumber "{{identificationNumber}}" --taskId "{{taskId}}"` when done.
|
|
19
|
-
5. Call `get_next_task` to continue with the next task.
|
|
20
|
-
{{else}}
|
|
21
|
-
1. Implement the task described above.
|
|
22
|
-
2. Commit your changes.
|
|
23
|
-
3. Run `we-scrum complete-task --identificationNumber "{{identificationNumber}}" --taskId "{{taskId}}"` when done.
|
|
24
|
-
4. Call `get_next_task` to continue with the next task.
|
|
15
|
+
1. Run `we-scrum start-task --identificationNumber "{{identificationNumber}}" --changeId "{{changeId}}"` before making any changes.
|
|
25
16
|
{{/if}}
|
|
17
|
+
1. If the task above mentions open threads, run `we-scrum get-change-threads --changeId "{{changeId}}"` before implementing. If a thread requests an adjustment to this task, make it part of the implementation below, then resolve the thread once done:
|
|
18
|
+
```bash
|
|
19
|
+
we-scrum add-comment-to-change-thread --changeThreadId <changeThreadId> --comment "<markdown explaining what was done>"
|
|
20
|
+
we-scrum update-change-thread-status --changeThreadId <changeThreadId> --status Resolved
|
|
21
|
+
```
|
|
22
|
+
Leave a thread open (with a reply explaining why) if it does not call for a change to this task, or if you disagree with the request.
|
|
23
|
+
1. Implement the task described above.
|
|
24
|
+
1. If your implementation deviates in any way from what this task describes (different naming, different location, a sub-step skipped or altered, a workaround for a blocker, a mistake you had to correct mid-way, etc.), post a comment explaining the deviation and why, before completing the task:
|
|
25
|
+
```bash
|
|
26
|
+
we-scrum create-change-thread --changeId "{{changeId}}" --comment "<markdown explaining the deviation>"
|
|
27
|
+
```
|
|
28
|
+
Group related deviations into a single thread. If there are several unrelated deviations, a few separate threads is fine, but do not open one thread per minor deviation — use judgment to keep the count reasonable. Skip this step entirely if the task was implemented exactly as described.
|
|
29
|
+
1. If the development guidelines or the unit tests guidelines referenced above were incomplete, outdated, or missing for this kind of task — meaning you had to spend extra effort figuring out conventions they should have covered — open a change thread with a concrete suggested addition or correction:
|
|
30
|
+
```bash
|
|
31
|
+
we-scrum create-change-thread --changeId "{{changeId}}" --comment "<markdown: what was missing/outdated, and a suggested fix>"
|
|
32
|
+
```
|
|
33
|
+
Use at most one thread for all development guidelines feedback, and, separately, at most one thread for all unit tests guidelines feedback — do not mix the two guidelines together, and do not mix guideline feedback into the deviation thread above. Skip whichever guideline was accurate and sufficient.
|
|
34
|
+
1. Commit your changes.
|
|
35
|
+
1. Run `we-scrum complete-task --identificationNumber "{{identificationNumber}}" --changeId "{{changeId}}"` when done.
|
|
36
|
+
1. Call `get_next_task` to continue with the next task.
|
|
@@ -34,7 +34,27 @@ we-scrum get-story-analysis --identificationNumber <identificationNumber>
|
|
|
34
34
|
|
|
35
35
|
---
|
|
36
36
|
|
|
37
|
-
## Step 2 — Review
|
|
37
|
+
## Step 2 — Review existing threads
|
|
38
|
+
|
|
39
|
+
The analysis DSL may annotate a change with a note such as _"N open thread(s) — run `we-scrum get-change-threads --changeId <id>` to view them."_ This means earlier review comments are already open on that change.
|
|
40
|
+
|
|
41
|
+
For every change annotated this way:
|
|
42
|
+
|
|
43
|
+
```bash
|
|
44
|
+
we-scrum get-change-threads --changeId <changeId>
|
|
45
|
+
```
|
|
46
|
+
|
|
47
|
+
For each thread returned:
|
|
48
|
+
- If the current state of the analysis addresses the concern raised in the thread, resolve it and explain why:
|
|
49
|
+
```bash
|
|
50
|
+
we-scrum add-comment-to-change-thread --changeThreadId <changeThreadId> --comment "<markdown explaining why this is resolved>"
|
|
51
|
+
we-scrum update-change-thread-status --changeThreadId <changeThreadId> --status Resolved
|
|
52
|
+
```
|
|
53
|
+
- If the concern still stands, leave the thread open. Only add a follow-up comment via `add-comment-to-change-thread` if you have new information to add — do not just repeat the original comment.
|
|
54
|
+
|
|
55
|
+
---
|
|
56
|
+
|
|
57
|
+
## Step 3 — Review the analysis
|
|
38
58
|
|
|
39
59
|
{{> analysis-dsl-legend}}
|
|
40
60
|
|
|
@@ -60,4 +80,18 @@ Review the story description and analysis DSL together. Check for:
|
|
|
60
80
|
- Any change that adds, removes, or renames a field on an Aggregate or a Model must be accompanied by a migration script task in the analysis
|
|
61
81
|
- If such a structural change is present but no corresponding migration task exists, raise it as a blocking issue — shipping without a migration will corrupt existing data or break reads
|
|
62
82
|
|
|
63
|
-
|
|
83
|
+
---
|
|
84
|
+
|
|
85
|
+
## Step 4 — Post findings as change threads
|
|
86
|
+
|
|
87
|
+
Do not just report new findings in the chat — open a change thread on the change each finding concerns:
|
|
88
|
+
|
|
89
|
+
```bash
|
|
90
|
+
we-scrum create-change-thread --changeId <changeId> --comment "<markdown-formatted finding>"
|
|
91
|
+
```
|
|
92
|
+
|
|
93
|
+
- The comment body supports Markdown (headings, lists, bold, code spans) — it renders as such in the we-scrum UI.
|
|
94
|
+
- Group every finding for a given change into a single thread/comment rather than opening one thread per bullet point.
|
|
95
|
+
- Skip changes that already have an open thread covering the same concern (see Step 2) — reply on the existing thread instead of duplicating it.
|
|
96
|
+
|
|
97
|
+
Once threads are created or resolved, give the user a short summary in the chat: what was found, what was posted or resolved, and why — do not skip this summary just because the details live in we-scrum.
|