pikakit 1.0.27 → 1.0.28

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.
@@ -64,7 +64,7 @@ export async function run(spec) {
64
64
  if (cacheAge < CACHE_TTL_MS) {
65
65
  useCache = true;
66
66
  cacheHit = true;
67
- s.start("Checking cache...");
67
+ s.start("Cloning repository");
68
68
  }
69
69
  } catch {
70
70
  // Invalid cache, will refresh
@@ -77,7 +77,7 @@ export async function run(spec) {
77
77
  if (useCache) {
78
78
  // Fast path: Update cache with git fetch (much faster than clone)
79
79
  try {
80
- s.message("Updating from cache...");
80
+ // Fast update via git fetch (silent)
81
81
  await execAsync(`git -C "${cacheDir}" fetch --depth=1 origin HEAD`, { timeout: 30000 });
82
82
  await execAsync(`git -C "${cacheDir}" reset --hard FETCH_HEAD`, { timeout: 10000 });
83
83
 
@@ -93,7 +93,6 @@ export async function run(spec) {
93
93
  s.stop("Repository cloned");
94
94
  } catch (err) {
95
95
  // Cache update failed, fall back to fresh clone
96
- s.message("Cache outdated, cloning fresh...");
97
96
  useCache = false;
98
97
  cacheHit = false;
99
98
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pikakit",
3
- "version": "1.0.27",
3
+ "version": "1.0.28",
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>",