oh-my-hi 0.2.0 → 0.2.1

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.
@@ -11,7 +11,7 @@
11
11
  {
12
12
  "name": "oh-my-hi",
13
13
  "description": "Visual dashboard for Claude Code harness — usage/token analysis of skills, agents, plugins, hooks, memory, MCP servers, rules, and principles",
14
- "version": "0.1.0",
14
+ "version": "0.2.1",
15
15
  "author": {
16
16
  "name": "Jae Sung Park",
17
17
  "email": "alberto.park@gmail.com"
package/CHANGELOG.md CHANGED
@@ -1,5 +1,33 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.2.1] - 2026-03-31
4
+
5
+ ### Changed
6
+ - Merge Installation and Update sections into single "Installation & Update" in README and Help page
7
+ - Fix update instructions: marketplace add required before install
8
+
9
+ ## [0.2.0] - 2026-03-31
10
+
11
+ ### Added
12
+ - esbuild for CSS/JS minification (CSS -20%, JS -31%)
13
+ - Billboard.js (pkgd) bundled inline — full offline support, no CDN dependencies
14
+ - Usage data minification: key shortening + sessionId indexing (14.8MB → 8.5MB, -43%)
15
+ - English locale file (`locales/en.json`) — extracted from hardcoded `I18N.en`
16
+ - Task category schema file (`work-types.json`) — externalized from build script
17
+ - 13 new work type categories (25 total): Refactor, Test, Git, Frontend, Backend, Database, DevOps, Security, Data, Research, i18n, Comms, PM
18
+
19
+ ### Changed
20
+ - All i18n strings externalized from app.js to locale files (324 keys)
21
+ - Task categories auto-generated at every build (no longer user-editable)
22
+ - Category labels use English only (removed per-language labels from schema)
23
+ - app.js converted from ES5 to ES6+ (const/let, arrow functions, spread)
24
+ - Dark theme CSS dynamically injected via JS (replaces `<style media>` approach)
25
+
26
+ ### Fixed
27
+ - Donut chart text color override (`.bb-chart-arc text` specificity)
28
+ - `--data-only` help text now matches actual behavior
29
+ - Added `node_modules` guard with clear error message
30
+
3
31
  ## [0.1.3] - 2026-03-31
4
32
 
5
33
  ### Added
package/README.md CHANGED
@@ -23,31 +23,18 @@ Parses your entire Claude Code configuration and usage data, then generates an i
23
23
  #### From the Command Line
24
24
 
25
25
  ```bash
26
- # 1. Add marketplace
27
26
  claude plugin marketplace add netil/oh-my-hi
28
-
29
- # 2. Install plugin
30
27
  claude plugin install oh-my-hi
31
28
  ```
32
29
 
33
- #### Claude Code (via Plugin Marketplace)
30
+ #### Claude Code (in-session)
34
31
 
35
32
  ```bash
36
33
  /plugin marketplace add netil/oh-my-hi
37
34
  /plugin install oh-my-hi@oh-my-hi-marketplace
38
35
  ```
39
36
 
40
- ## Update
41
-
42
- To update to the latest version, run the same install command:
43
-
44
- ```bash
45
- # From the Command Line
46
- $ claude plugin install oh-my-hi
47
-
48
- # Claude Code (in-session)
49
- /plugin install oh-my-hi@oh-my-hi-marketplace
50
- ```
37
+ > Run the same commands to update to the latest version.
51
38
 
52
39
  ## Usage
53
40
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "oh-my-hi",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "description": "Claude Code harness insights dashboard",
5
5
  "repository": {
6
6
  "type": "git",
package/templates/app.js CHANGED
@@ -2376,20 +2376,16 @@
2376
2376
  + '<h1>❓ ' + t('helpTitle') + ' <a href="https://github.com/netil/oh-my-hi" target="_blank" style="font-size:14px;font-weight:400;color:var(--text-secondary);text-decoration:none;vertical-align:middle;margin-left:8px">GitHub ↗</a></h1>'
2377
2377
  + '</div>';
2378
2378
 
2379
- // Usage
2379
+ // Install / Update
2380
2380
  html += '<div class="section">'
2381
- + '<div class="section-title">' + t('helpUsage') + '</div>'
2382
- + '<div class="card help-card"><p>' + t('helpUsageDesc') + '</p></div>'
2383
- + '</div>';
2384
-
2385
- // Update
2386
- html += '<div class="section">'
2387
- + '<div class="section-title">' + t('helpUpdate') + '</div>'
2388
- + '<div class="card help-card"><p>' + t('helpUpdateDesc') + '</p>'
2381
+ + '<div class="section-title">' + t('helpInstall') + '</div>'
2382
+ + '<div class="card help-card"><p>' + t('helpInstallDesc') + '</p>'
2389
2383
  + '<pre style="margin:8px 0 0;padding:8px 12px;background:#1a1b1e;color:#e0e0e0;border-radius:6px;font-size:13px;line-height:1.6"><code>'
2390
2384
  + '<span style="color:#6c757d"># ' + t('helpUpdateCli') + '</span>\n'
2385
+ + '$ claude plugin marketplace add netil/oh-my-hi\n'
2391
2386
  + '$ claude plugin install oh-my-hi\n\n'
2392
2387
  + '<span style="color:#6c757d"># ' + t('helpUpdateSession') + '</span>\n'
2388
+ + '/plugin marketplace add netil/oh-my-hi\n'
2393
2389
  + '/plugin install oh-my-hi@oh-my-hi-marketplace'
2394
2390
  + '</code></pre>'
2395
2391
  + '</div></div>';
@@ -161,10 +161,8 @@
161
161
  "activities": "activities",
162
162
  "help": "Help",
163
163
  "helpTitle": "Help",
164
- "helpUsage": "Usage",
165
- "helpUsageDesc": "Generate the dashboard via the /omh skill.",
166
- "helpUpdate": "Update",
167
- "helpUpdateDesc": "To update to the latest version, run the same install command:",
164
+ "helpInstall": "Installation & Update",
165
+ "helpInstallDesc": "Run the same commands to install or update to the latest version:",
168
166
  "helpUpdateCli": "From the command line",
169
167
  "helpUpdateSession": "Claude Code (in-session)",
170
168
  "helpParams": "Parameters",
@@ -161,10 +161,8 @@
161
161
  "activities": "활동",
162
162
  "help": "도움말",
163
163
  "helpTitle": "도움말",
164
- "helpUsage": "사용법",
165
- "helpUsageDesc": "/omh 스킬을 통해 대시보드를 생성합니다.",
166
- "helpUpdate": "업데이트",
167
- "helpUpdateDesc": "최신 버전으로 업데이트하려면 설치 명령을 다시 실행하세요:",
164
+ "helpInstall": "설치 / 업데이트",
165
+ "helpInstallDesc": "설치 최신 버전 업데이트 시 동일한 명령을 실행하세요:",
168
166
  "helpUpdateCli": "커맨드 라인에서",
169
167
  "helpUpdateSession": "Claude Code 세션 내에서",
170
168
  "helpParams": "실행 파라미터",