pikakit 1.0.28 → 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
|
|
@@ -90,7 +90,7 @@ 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
96
|
useCache = false;
|
|
@@ -100,7 +100,7 @@ export async function run(spec) {
|
|
|
100
100
|
|
|
101
101
|
if (!useCache) {
|
|
102
102
|
// Fresh clone with retry logic
|
|
103
|
-
s.start(FORCE_REFRESH ? "Force refreshing repository..." : "
|
|
103
|
+
s.start(FORCE_REFRESH ? "Force refreshing repository..." : "Deploying next-generation skills...");
|
|
104
104
|
|
|
105
105
|
for (let attempt = 1; attempt <= MAX_RETRIES; attempt++) {
|
|
106
106
|
try {
|
|
@@ -160,7 +160,7 @@ export async function run(spec) {
|
|
|
160
160
|
}
|
|
161
161
|
|
|
162
162
|
if (!cacheHit) {
|
|
163
|
-
s.stop("
|
|
163
|
+
s.stop("Skills deployed successfully");
|
|
164
164
|
}
|
|
165
165
|
|
|
166
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>",
|