pikakit 1.0.27 → 1.0.29
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("
|
|
67
|
+
s.start("Deploying next-generation skills...");
|
|
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
|
-
|
|
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
|
|
|
@@ -90,10 +90,9 @@ export async function run(spec) {
|
|
|
90
90
|
org, repo, ref: ref || "HEAD"
|
|
91
91
|
}));
|
|
92
92
|
|
|
93
|
-
s.stop("
|
|
93
|
+
s.stop("Skills deployed successfully");
|
|
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
|
}
|
|
@@ -101,7 +100,7 @@ export async function run(spec) {
|
|
|
101
100
|
|
|
102
101
|
if (!useCache) {
|
|
103
102
|
// Fresh clone with retry logic
|
|
104
|
-
s.start(FORCE_REFRESH ? "Force refreshing repository..." : "
|
|
103
|
+
s.start(FORCE_REFRESH ? "Force refreshing repository..." : "Deploying next-generation skills...");
|
|
105
104
|
|
|
106
105
|
for (let attempt = 1; attempt <= MAX_RETRIES; attempt++) {
|
|
107
106
|
try {
|
|
@@ -161,7 +160,7 @@ export async function run(spec) {
|
|
|
161
160
|
}
|
|
162
161
|
|
|
163
162
|
if (!cacheHit) {
|
|
164
|
-
s.stop("
|
|
163
|
+
s.stop("Skills deployed successfully");
|
|
165
164
|
}
|
|
166
165
|
|
|
167
166
|
// Find skills in repo - check multiple possible locations
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pikakit",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.29",
|
|
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>",
|