skild 0.10.5 → 0.10.6

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.
Files changed (2) hide show
  1. package/dist/index.js +2 -2
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -242,8 +242,8 @@ function writeToTerminal(stdout, lines) {
242
242
  }
243
243
  function clearAndRerender(stdout, lineCount, lines) {
244
244
  stdout.write("\x1B[?25l");
245
- stdout.write(`\x1B[${lineCount}A`);
246
- stdout.write("\x1B[0J");
245
+ stdout.write("\x1B[H");
246
+ stdout.write("\x1B[2J");
247
247
  writeToTerminal(stdout, lines);
248
248
  }
249
249
  async function interactiveTreeSelect(items, options) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "skild",
3
- "version": "0.10.5",
3
+ "version": "0.10.6",
4
4
  "description": "The npm for Agent Skills — Discover, install, manage, and publish AI Agent Skills with ease.",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",