@pi-unipi/milestone 0.1.5 → 0.1.6
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/coexist.ts +4 -13
- package/package.json +1 -1
package/coexist.ts
CHANGED
|
@@ -49,12 +49,8 @@ export function onBrainstormComplete(specPath: string): void {
|
|
|
49
49
|
}
|
|
50
50
|
|
|
51
51
|
if (matched.length > 0) {
|
|
52
|
-
console.log
|
|
53
|
-
|
|
54
|
-
);
|
|
55
|
-
console.log(
|
|
56
|
-
`[milestone] Run /unipi:milestone-update to sync after completing work.`,
|
|
57
|
-
);
|
|
52
|
+
// Removed console.log — milestone matches are informational.
|
|
53
|
+
// Use /unipi:milestone-update to sync manually.
|
|
58
54
|
}
|
|
59
55
|
}
|
|
60
56
|
|
|
@@ -101,9 +97,7 @@ export function onPlanComplete(planPath: string): void {
|
|
|
101
97
|
}
|
|
102
98
|
|
|
103
99
|
if (matched.length > 0) {
|
|
104
|
-
console.log
|
|
105
|
-
`[milestone] Plan covers milestone items: ${matched.join(", ")}`,
|
|
106
|
-
);
|
|
100
|
+
// Removed console.log — plan-milestone matches are informational.
|
|
107
101
|
}
|
|
108
102
|
}
|
|
109
103
|
|
|
@@ -116,8 +110,5 @@ export function onConsolidate(): void {
|
|
|
116
110
|
|
|
117
111
|
if (!tryRead(milestonesPath)) return;
|
|
118
112
|
|
|
119
|
-
//
|
|
120
|
-
console.log(
|
|
121
|
-
`[milestone] Milestone progress was auto-synced during session shutdown.`,
|
|
122
|
-
);
|
|
113
|
+
// Removed console.log — milestone auto-sync is silent.
|
|
123
114
|
}
|