@pi-unipi/milestone 0.1.5 → 0.1.7

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.
Files changed (2) hide show
  1. package/coexist.ts +4 -13
  2. 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
- `[milestone] Brainstorm spec contains items that map to milestones: ${matched.join(", ")}`,
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
- // Just log that milestone sync was handled by session_shutdown hook
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
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pi-unipi/milestone",
3
- "version": "0.1.5",
3
+ "version": "0.1.7",
4
4
  "description": "Lifecycle layer for project-level goals — MILESTONES.md tracking, session hooks, auto-sync",
5
5
  "type": "module",
6
6
  "license": "MIT",