pikakit 1.0.47 → 1.0.48

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,9 +975,13 @@
975
975
  document.getElementById('totalTasks').textContent = dashboard.summary.totalTasks || 0;
976
976
  document.getElementById('patternsLearned').textContent = dashboard.summary.patternsLearned || 0;
977
977
 
978
- // Always show onboarding banner (unified UI)
978
+ // Show onboarding banner for new users
979
979
  const onboardingBanner = document.getElementById('onboardingBanner');
980
- onboardingBanner.classList.add('show');
980
+ if (dashboard.isNewUser || dashboard.summary.isNewUser) {
981
+ onboardingBanner.classList.add('show');
982
+ } else {
983
+ onboardingBanner.classList.remove('show');
984
+ }
981
985
  }
982
986
 
983
987
  // Update skills
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pikakit",
3
- "version": "1.0.47",
3
+ "version": "1.0.48",
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>",