@trendai-crem/claude-skills 0.6.0 → 0.6.1
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.
- package/cli.js +1 -1
- package/package.json +1 -1
package/cli.js
CHANGED
|
@@ -200,7 +200,7 @@ LATEST=$(npm view "$PACKAGE" version 2>/dev/null || echo "")
|
|
|
200
200
|
echo "🔄 Updating claude-skills: $CURRENT_VER → $LATEST (background)"
|
|
201
201
|
(
|
|
202
202
|
echo "[$(date -Iseconds)] Updating $CURRENT_VER → $LATEST" >> "$LOG"
|
|
203
|
-
if npx --yes "\${PACKAGE}@\${LATEST}" >> "$LOG" 2>&1; then
|
|
203
|
+
if npx --yes --package "\${PACKAGE}@\${LATEST}" claude-skills >> "$LOG" 2>&1; then
|
|
204
204
|
python3 -c "import json,sys; json.dump({'ts': int(sys.argv[1]), 'version': sys.argv[2]}, open(sys.argv[3],'w'))" "$NOW" "\${LATEST}" "$STAMP"
|
|
205
205
|
echo "[$(date -Iseconds)] Update successful" >> "$LOG"
|
|
206
206
|
# Write pending notification for next session start
|