insta 0.0.18 → 0.0.19

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.
@@ -47,9 +47,13 @@ export async function installSkills(deps) {
47
47
  const run = deps.run ?? defaultRunner;
48
48
  const print = deps.print ?? ((s) => process.stdout.write(s + '\n'));
49
49
  try {
50
- print(' installing related agent skills (insta, neon-postgres, tigris, better-auth) via `npx skills add` …');
50
+ print(' installing related agent skills (insta, neon-postgres, tigris, better-auth) …');
51
51
  for (const s of SKILLS) {
52
- const r = await run('npx', s.args, true); // streamed so the user sees download progress
52
+ // Don't stream: the `skills` tool's clack UI (clone spinner, banners) is noise. Run it
53
+ // silent (stdio 'ignore') and let the per-skill ✓/failed line below be the clean output —
54
+ // it appears as each skill finishes, so there's still live progress. (Also avoids the
55
+ // child inheriting a piped stdin.)
56
+ const r = await run('npx', s.args);
53
57
  print(r.ok ? ` ${s.label} ✓` : ` ${s.label} failed — add manually: npx ${s.args.join(' ')}`);
54
58
  }
55
59
  const added = ensureGitignore(deps.cwd, SKILL_DIRS);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "insta",
3
- "version": "0.0.18",
3
+ "version": "0.0.19",
4
4
  "type": "module",
5
5
  "description": "InstaCloud CLI — a thin client of the platform control-plane API.",
6
6
  "keywords": [