claude-prism 1.2.1 → 1.2.2

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-prism",
3
- "version": "1.2.1",
3
+ "version": "1.2.2",
4
4
  "description": "EUDEC methodology framework for AI coding agents — Essence, Understand, Decompose, Execute, Checkpoint.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -28,7 +28,7 @@ Report format:
28
28
  Lines:
29
29
  1 ⚡ project:branch | Model | 🔋ctx% | HH:MM
30
30
  2 📋 plan name XX%(done/total) | 💾 commit msg (elapsed)
31
- 3 📊 세션 XX%(Xm) │ 주간XX%(요일 HH:MM)
31
+ 3 📊 XX%(Xm) │ Wkly XX%(Day HH:MM)
32
32
  ```
33
33
 
34
34
  ### enable
@@ -18,7 +18,7 @@ When this command is invoked:
18
18
  ```
19
19
  🌈 claude-prism stats
20
20
 
21
- Version: v1.2.1
21
+ Version: v1.2.2
22
22
  Language: ko
23
23
  Plans: 3 file(s)
24
24
  OMC: ✅ detected
@@ -102,7 +102,7 @@ function formatUsageData(data) {
102
102
  ? Math.max(0, Math.round((new Date(data.fiveHourResetsAt) - now) / 60000))
103
103
  : 0;
104
104
  const weeklyReset = data.weeklyResetsAt ? new Date(data.weeklyResetsAt) : null;
105
- const dayNames = ['', '', '', '', '', '', ''];
105
+ const dayNames = ['Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat'];
106
106
  return {
107
107
  session: data.fiveHourPercent,
108
108
  weekly: data.weeklyPercent,
@@ -288,7 +288,7 @@ try {
288
288
  const line3 = [];
289
289
  if (planUsage) {
290
290
  const warn = (planUsage.session > 95 || planUsage.weekly > 95) ? '\uD83D\uDD34' : (planUsage.session > 80 || planUsage.weekly > 80) ? '\u26A0\uFE0F' : '';
291
- line3.push(`\uD83D\uDCCA ${planUsage.session}%(${planUsage.sessionResetMin}m) \u2502 \uC8FC\uAC04${planUsage.weekly}%(${planUsage.weeklyResetLabel})${warn}`);
291
+ line3.push(`\uD83D\uDCCA ${planUsage.session}%(${planUsage.sessionResetMin}m) \u2502 Wkly ${planUsage.weekly}%(${planUsage.weeklyResetLabel})${warn}`);
292
292
  }
293
293
 
294
294
  // ── Compose ──