pikakit 1.0.48 → 1.0.49

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.
@@ -975,13 +975,9 @@
975
975
  document.getElementById('totalTasks').textContent = dashboard.summary.totalTasks || 0;
976
976
  document.getElementById('patternsLearned').textContent = dashboard.summary.patternsLearned || 0;
977
977
 
978
- // Show onboarding banner for new users
978
+ // Always show onboarding banner (unified dashboard UI)
979
979
  const onboardingBanner = document.getElementById('onboardingBanner');
980
- if (dashboard.isNewUser || dashboard.summary.isNewUser) {
981
- onboardingBanner.classList.add('show');
982
- } else {
983
- onboardingBanner.classList.remove('show');
984
- }
980
+ onboardingBanner.classList.add('show');
985
981
  }
986
982
 
987
983
  // Update skills
@@ -1123,7 +1119,7 @@
1123
1119
  refreshData();
1124
1120
 
1125
1121
  // Auto-refresh every 30 seconds
1126
- setInterval(refreshData, 30000);
1122
+ setInterval(refreshData000);
1127
1123
  </script>
1128
1124
  </body>
1129
1125
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pikakit",
3
- "version": "1.0.48",
3
+ "version": "1.0.49",
4
4
  "description": "Enterprise-grade Agent Skill Manager with Antigravity Skills support, Progressive Disclosure detection, and semantic routing validation",
5
5
  "license": "MIT",
6
6
  "author": "pikakit <pikakit@gmail.com>",